difftreelog
tests(chore): update dependencies + regenerate types
in: master
12 files changed
tests/package.jsondiffbeforeafterboth5 "main": "",5 "main": "",6 "devDependencies": {6 "devDependencies": {7 "@polkadot/ts": "0.4.22",7 "@polkadot/ts": "0.4.22",8 "@polkadot/typegen": "9.2.2",8 "@polkadot/typegen": "9.5.1",9 "@types/chai": "^4.3.1",9 "@types/chai": "^4.3.1",10 "@types/chai-as-promised": "^7.1.5",10 "@types/chai-as-promised": "^7.1.5",11 "@types/chai-like": "^1.1.1",11 "@types/chai-like": "^1.1.1",12 "@types/mocha": "^9.1.1",12 "@types/mocha": "^10.0.0",13 "@types/node": "^17.0.35",13 "@types/node": "^17.0.35",14 "@typescript-eslint/eslint-plugin": "^5.26.0",14 "@typescript-eslint/eslint-plugin": "^5.26.0",15 "@typescript-eslint/parser": "^5.26.0",15 "@typescript-eslint/parser": "^5.26.0",112 "license": "SEE LICENSE IN ../LICENSE",112 "license": "SEE LICENSE IN ../LICENSE",113 "homepage": "",113 "homepage": "",114 "dependencies": {114 "dependencies": {115 "@polkadot/api": "9.2.2",115 "@polkadot/api": "9.5.1",116 "@polkadot/api-contract": "9.2.2",116 "@polkadot/api-contract": "9.5.1",117 "@polkadot/util-crypto": "10.1.7",117 "@polkadot/util-crypto": "10.1.10",118 "bignumber.js": "^9.0.2",118 "bignumber.js": "^9.1.0",119 "chai-as-promised": "^7.1.1",119 "chai-as-promised": "^7.1.1",120 "chai-like": "^1.1.1",120 "chai-like": "^1.1.1",121 "find-process": "^1.4.7",121 "find-process": "^1.4.7",122 "solc": "0.8.14-fixed",122 "solc": "0.8.17",123 "web3": "^1.7.3"123 "web3": "^1.7.3"124 },124 },125 "standard": {125 "standard": {tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { Codec } from '@polkadot/types-codec/types';10import type { Codec } from '@polkadot/types-codec/types';11import type { Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';12import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';131314export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;97 * The maximum weight that may be scheduled per block for any dispatchables of less97 * The maximum weight that may be scheduled per block for any dispatchables of less98 * priority than `schedule::HARD_DEADLINE`.98 * priority than `schedule::HARD_DEADLINE`.99 **/99 **/100 maximumWeight: u64 & AugmentedConst<ApiType>;100 maximumWeight: Weight & AugmentedConst<ApiType>;101 /**101 /**102 * The maximum number of scheduled calls in the queue for a single block.102 * The maximum number of scheduled calls in the queue for a single block.103 * Not strictly enforced, but used for weight estimation.103 * Not strictly enforced, but used for weight estimation.125 * The weight of runtime database operations the runtime can invoke.125 * The weight of runtime database operations the runtime can invoke.126 **/126 **/127 dbWeight: FrameSupportWeightsRuntimeDbWeight & AugmentedConst<ApiType>;127 dbWeight: FrameSupportWeightsRuntimeDbWeight & AugmentedConst<ApiType>;128 /**128 /**129 * The designated SS85 prefix of this chain.129 * The designated SS58 prefix of this chain.130 * 130 * 131 * This replaces the "ss58Format" property declared in the chain spec. Reason is131 * This replaces the "ss58Format" property declared in the chain spec. Reason is132 * that the runtime should know about the prefix in order to make use of it as132 * that the runtime should know about the prefix in order to make use of it as133 * an identifier of the chain.133 * an identifier of the chain.134 **/134 **/135 ss58Prefix: u16 & AugmentedConst<ApiType>;135 ss58Prefix: u16 & AugmentedConst<ApiType>;136 /**136 /**137 * Get the chain's current version.137 * Get the chain's current version.tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';131314export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;14export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;184 /**184 /**185 * Downward message is overweight and was placed in the overweight queue.185 * Downward message is overweight and was placed in the overweight queue.186 **/186 **/187 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;187 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight }>;188 /**188 /**189 * Downward message from the overweight queue was executed.189 * Downward message from the overweight queue was executed.190 **/190 **/191 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;191 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { overweightIndex: u64, weightUsed: Weight }>;192 /**192 /**193 * Downward message is unsupported version of XCM.193 * Downward message is unsupported version of XCM.194 **/194 **/195 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;195 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;196 /**196 /**197 * The weight limit for handling downward messages was reached.197 * The weight limit for handling downward messages was reached.198 **/198 **/199 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;199 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight }>;200 /**200 /**201 * Generic event201 * Generic event202 **/202 **/290 /**290 /**291 * Downward messages were processed using the given weight.291 * Downward messages were processed using the given weight.292 **/292 **/293 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;293 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { weightUsed: Weight, dmqHead: H256 }>;294 /**294 /**295 * Some downward messages have been received and will be processed.295 * Some downward messages have been received and will be processed.296 **/296 **/378 * 378 * 379 * \[ id, pallet index, call index, actual weight, max budgeted weight \]379 * \[ id, pallet index, call index, actual weight, max budgeted weight \]380 **/380 **/381 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;381 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>;382 /**382 /**383 * A given location which had a version change subscription was dropped owing to an error383 * A given location which had a version change subscription was dropped owing to an error384 * migrating the location to our new XCM format.384 * migrating the location to our new XCM format.769 /**769 /**770 * Some XCM failed.770 * Some XCM failed.771 **/771 **/772 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;772 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight }>;773 /**773 /**774 * An XCM exceeded the individual message weight budget.774 * An XCM exceeded the individual message weight budget.775 **/775 **/776 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;776 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { sender: u32, sentAt: u32, index: u64, required: Weight }>;777 /**777 /**778 * An XCM from the overweight queue was executed with the given actual weight used.778 * An XCM from the overweight queue was executed with the given actual weight used.779 **/779 **/780 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;780 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { index: u64, used: Weight }>;781 /**781 /**782 * Some XCM was executed ok.782 * Some XCM was executed ok.783 **/783 **/784 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;784 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { messageHash: Option<H256>, weight: Weight }>;785 /**785 /**786 * An upward message was sent to the relay chain.786 * An upward message was sent to the relay chain.787 **/787 **/tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';12import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';13import type { Observable } from '@polkadot/types/types';13import type { Observable } from '@polkadot/types/types';141415export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;555 * The weight we reserve at the beginning of the block for processing DMP messages. This555 * The weight we reserve at the beginning of the block for processing DMP messages. This556 * overrides the amount set in the Config trait.556 * overrides the amount set in the Config trait.557 **/557 **/558 reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<u64>>, []> & QueryableStorageEntry<ApiType, []>;558 reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;559 /**559 /**560 * The weight we reserve at the beginning of the block for processing XCMP messages. This560 * The weight we reserve at the beginning of the block for processing XCMP messages. This561 * overrides the amount set in the Config trait.561 * overrides the amount set in the Config trait.562 **/562 **/563 reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<u64>>, []> & QueryableStorageEntry<ApiType, []>;563 reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;564 /**564 /**565 * An option which indicates if the relay-chain restricts signalling a validation code upgrade.565 * An option which indicates if the relay-chain restricts signalling a validation code upgrade.566 * In other words, if this is `Some` and [`NewValidationCode`] is `Some` then the produced566 * In other words, if this is `Some` and [`NewValidationCode`] is `Some` then the produced716 /**716 /**717 * The current weight for the block.717 * The current weight for the block.718 **/718 **/719 blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassU64>, []> & QueryableStorageEntry<ApiType, []>;719 blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;720 /**720 /**721 * Digest of the current block, also part of the block header.721 * Digest of the current block, also part of the block header.722 **/722 **/tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth160 getStorageSize: AugmentedRpc<(childKey: PrefixedStorageKey | string | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: Hash | string | Uint8Array) => Observable<Option<u64>>>;160 getStorageSize: AugmentedRpc<(childKey: PrefixedStorageKey | string | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: Hash | string | Uint8Array) => Observable<Option<u64>>>;161 };161 };162 contracts: {162 contracts: {163 /**163 /**164 * Executes a call to a contract164 * @deprecated Use the runtime interface `api.call.contractsApi.call` instead165 **/165 * Executes a call to a contract166 **/166 call: AugmentedRpc<(callRequest: ContractCallRequest | { origin?: any; dest?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; inputData?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractExecResult>>;167 call: AugmentedRpc<(callRequest: ContractCallRequest | { origin?: any; dest?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; inputData?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractExecResult>>;167 /**168 /**168 * Returns the value under a specified storage key in a contract169 * @deprecated Use the runtime interface `api.call.contractsApi.getStorage` instead170 * Returns the value under a specified storage key in a contract169 **/171 **/170 getStorage: AugmentedRpc<(address: AccountId | string | Uint8Array, key: H256 | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Option<Bytes>>>;172 getStorage: AugmentedRpc<(address: AccountId | string | Uint8Array, key: H256 | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Option<Bytes>>>;171 /**173 /**172 * Instantiate a new contract174 * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead173 **/175 * Instantiate a new contract176 **/174 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: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;175 /**178 /**176 * Returns the projected time a given contract will be able to sustain paying its rent179 * @deprecated Not available in newer versions of the contracts interfaces180 * Returns the projected time a given contract will be able to sustain paying its rent177 **/181 **/178 rentProjection: AugmentedRpc<(address: AccountId | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Option<BlockNumber>>>;182 rentProjection: AugmentedRpc<(address: AccountId | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Option<BlockNumber>>>;179 /**183 /**180 * Upload new code without instantiating a contract from it184 * @deprecated Use the runtime interface `api.call.contractsApi.uploadCode` instead185 * Upload new code without instantiating a contract from it181 **/186 **/182 uploadCode: AugmentedRpc<(uploadRequest: CodeUploadRequest | { origin?: any; code?: any; storageDepositLimit?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<CodeUploadResult>>;187 uploadCode: AugmentedRpc<(uploadRequest: CodeUploadRequest | { origin?: any; code?: any; storageDepositLimit?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<CodeUploadResult>>;183 };188 };184 dev: {189 dev: {514 * Retrieves the child storage size519 * Retrieves the child storage size515 **/520 **/516 getChildStorageSize: AugmentedRpc<(childStorageKey: StorageKey | string | Uint8Array | any, childDefinition: StorageKey | string | Uint8Array | any, childType: u32 | AnyNumber | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<u64>>;521 getChildStorageSize: AugmentedRpc<(childStorageKey: StorageKey | string | Uint8Array | any, childDefinition: StorageKey | string | Uint8Array | any, childType: u32 | AnyNumber | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<u64>>;517 /**522 /**518 * Retrieves the keys with a certain prefix523 * @deprecated Use `api.rpc.state.getKeysPaged` to retrieve keys524 * Retrieves the keys with a certain prefix519 **/525 **/520 getKeys: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;526 getKeys: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;521 /**527 /**522 * Returns the keys with prefix with pagination support.528 * Returns the keys with prefix with pagination support.526 * Returns the runtime metadata532 * Returns the runtime metadata527 **/533 **/528 getMetadata: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<Metadata>>;534 getMetadata: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<Metadata>>;529 /**535 /**530 * Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)536 * @deprecated Use `api.rpc.state.getKeysPaged` to retrieve keys537 * Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)531 **/538 **/532 getPairs: AugmentedRpc<(prefix: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<KeyValue>>>;539 getPairs: AugmentedRpc<(prefix: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<KeyValue>>>;533 /**540 /**534 * Returns proof of storage entries at a specific block state541 * Returns proof of storage entries at a specific block statetests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';12import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';12import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';131314export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;243 * Events:243 * Events:244 * - `OverweightServiced`: On success.244 * - `OverweightServiced`: On success.245 **/245 **/246 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;246 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;247 /**247 /**248 * Generic tx248 * Generic tx249 **/249 **/367 * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully367 * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully368 * to completion; only that *some* of it was executed.368 * to completion; only that *some* of it was executed.369 **/369 **/370 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;370 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, Weight]>;371 /**371 /**372 * Set a safe XCM version (the version that XCM should be encoded with if the most recent372 * Set a safe XCM version (the version that XCM should be encoded with if the most recent373 * version a destination can accept is unknown).373 * version a destination can accept is unknown).902 * - The weight of this call is defined by the caller.902 * - The weight of this call is defined by the caller.903 * # </weight>903 * # </weight>904 **/904 **/905 sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;905 sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, Weight]>;906 /**906 /**907 * Generic tx907 * Generic tx908 **/908 **/1683 * Events:1683 * Events:1684 * - `OverweightServiced`: On success.1684 * - `OverweightServiced`: On success.1685 **/1685 **/1686 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;1686 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;1687 /**1687 /**1688 * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.1688 * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.1689 * 1689 * 1720 * - `origin`: Must pass `Root`.1720 * - `origin`: Must pass `Root`.1721 * - `new`: Desired value for `QueueConfigData.threshold_weight`1721 * - `new`: Desired value for `QueueConfigData.threshold_weight`1722 **/1722 **/1723 updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1723 updateThresholdWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;1724 /**1724 /**1725 * Overwrites the speed to which the available weight approaches the maximum weight.1725 * Overwrites the speed to which the available weight approaches the maximum weight.1726 * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.1726 * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.1727 * 1727 * 1728 * - `origin`: Must pass `Root`.1728 * - `origin`: Must pass `Root`.1729 * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.1729 * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.1730 **/1730 **/1731 updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1731 updateWeightRestrictDecay: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;1732 /**1732 /**1733 * Overwrite the maximum amount of weight any individual message may consume.1733 * Overwrite the maximum amount of weight any individual message may consume.1734 * Messages above this weight go into the overweight queue and may only be serviced explicitly.1734 * Messages above this weight go into the overweight queue and may only be serviced explicitly.1735 * 1735 * 1736 * - `origin`: Must pass `Root`.1736 * - `origin`: Must pass `Root`.1737 * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.1737 * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.1738 **/1738 **/1739 updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1739 updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;1740 /**1740 /**1741 * Generic tx1741 * Generic tx1742 **/1742 **/tests/src/interfaces/augment-types.tsdiffbeforeafterboth5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';778import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, 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';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, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, 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, 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';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';79 AccountId: AccountId;79 AccountId: AccountId;80 AccountId20: AccountId20;80 AccountId20: AccountId20;81 AccountId32: AccountId32;81 AccountId32: AccountId32;82 AccountId33: AccountId33;82 AccountIdOf: AccountIdOf;83 AccountIdOf: AccountIdOf;83 AccountIndex: AccountIndex;84 AccountIndex: AccountIndex;84 AccountInfo: AccountInfo;85 AccountInfo: AccountInfo;253 ContractContractSpecV1: ContractContractSpecV1;254 ContractContractSpecV1: ContractContractSpecV1;254 ContractContractSpecV2: ContractContractSpecV2;255 ContractContractSpecV2: ContractContractSpecV2;255 ContractContractSpecV3: ContractContractSpecV3;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;256 ContractCryptoHasher: ContractCryptoHasher;258 ContractCryptoHasher: ContractCryptoHasher;257 ContractDiscriminant: ContractDiscriminant;259 ContractDiscriminant: ContractDiscriminant;258 ContractDisplayName: ContractDisplayName;260 ContractDisplayName: ContractDisplayName;296 ContractMetadataV1: ContractMetadataV1;298 ContractMetadataV1: ContractMetadataV1;297 ContractMetadataV2: ContractMetadataV2;299 ContractMetadataV2: ContractMetadataV2;298 ContractMetadataV3: ContractMetadataV3;300 ContractMetadataV3: ContractMetadataV3;301 ContractMetadataV4: ContractMetadataV4;299 ContractProject: ContractProject;302 ContractProject: ContractProject;300 ContractProjectContract: ContractProjectContract;303 ContractProjectContract: ContractProjectContract;301 ContractProjectInfo: ContractProjectInfo;304 ContractProjectInfo: ContractProjectInfo;524 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;527 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;525 FrameSupportWeightsPays: FrameSupportWeightsPays;528 FrameSupportWeightsPays: FrameSupportWeightsPays;526 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;529 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;527 FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;530 FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;528 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;531 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;529 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;532 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;530 FrameSystemAccountInfo: FrameSystemAccountInfo;533 FrameSystemAccountInfo: FrameSystemAccountInfo;1375 WeightMultiplier: WeightMultiplier;1378 WeightMultiplier: WeightMultiplier;1376 WeightPerClass: WeightPerClass;1379 WeightPerClass: WeightPerClass;1377 WeightToFeeCoefficient: WeightToFeeCoefficient;1380 WeightToFeeCoefficient: WeightToFeeCoefficient;1381 WeightV1: WeightV1;1382 WeightV2: WeightV2;1378 WildFungibility: WildFungibility;1383 WildFungibility: WildFungibility;1379 WildFungibilityV0: WildFungibilityV0;1384 WildFungibilityV0: WildFungibilityV0;1380 WildFungibilityV1: WildFungibilityV1;1385 WildFungibilityV1: WildFungibilityV1;tests/src/interfaces/default/types.tsdiffbeforeafterboth334import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';4import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';7import type { Event } from '@polkadot/types/interfaces/system';889/** @name CumulusPalletDmpQueueCall */9/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {12 readonly asServiceOverweight: {13 readonly index: u64;13 readonly index: u64;14 readonly weightLimit: u64;14 readonly weightLimit: Weight;15 } & Struct;15 } & Struct;16 readonly type: 'ServiceOverweight';16 readonly type: 'ServiceOverweight';17}17}181819/** @name CumulusPalletDmpQueueConfigData */19/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: u64;21 readonly maxIndividual: Weight;22}22}232324/** @name CumulusPalletDmpQueueError */24/** @name CumulusPalletDmpQueueError */46 readonly isWeightExhausted: boolean;46 readonly isWeightExhausted: boolean;47 readonly asWeightExhausted: {47 readonly asWeightExhausted: {48 readonly messageId: U8aFixed;48 readonly messageId: U8aFixed;49 readonly remainingWeight: u64;49 readonly remainingWeight: Weight;50 readonly requiredWeight: u64;50 readonly requiredWeight: Weight;51 } & Struct;51 } & Struct;52 readonly isOverweightEnqueued: boolean;52 readonly isOverweightEnqueued: boolean;53 readonly asOverweightEnqueued: {53 readonly asOverweightEnqueued: {54 readonly messageId: U8aFixed;54 readonly messageId: U8aFixed;55 readonly overweightIndex: u64;55 readonly overweightIndex: u64;56 readonly requiredWeight: u64;56 readonly requiredWeight: Weight;57 } & Struct;57 } & Struct;58 readonly isOverweightServiced: boolean;58 readonly isOverweightServiced: boolean;59 readonly asOverweightServiced: {59 readonly asOverweightServiced: {60 readonly overweightIndex: u64;60 readonly overweightIndex: u64;61 readonly weightUsed: u64;61 readonly weightUsed: Weight;62 } & Struct;62 } & Struct;63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}64}122 } & Struct;122 } & Struct;123 readonly isDownwardMessagesProcessed: boolean;123 readonly isDownwardMessagesProcessed: boolean;124 readonly asDownwardMessagesProcessed: {124 readonly asDownwardMessagesProcessed: {125 readonly weightUsed: u64;125 readonly weightUsed: Weight;126 readonly dmqHead: H256;126 readonly dmqHead: H256;127 } & Struct;127 } & Struct;128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';166 readonly isServiceOverweight: boolean;166 readonly isServiceOverweight: boolean;167 readonly asServiceOverweight: {167 readonly asServiceOverweight: {168 readonly index: u64;168 readonly index: u64;169 readonly weightLimit: u64;169 readonly weightLimit: Weight;170 } & Struct;170 } & Struct;171 readonly isSuspendXcmExecution: boolean;171 readonly isSuspendXcmExecution: boolean;172 readonly isResumeXcmExecution: boolean;172 readonly isResumeXcmExecution: boolean;184 } & Struct;184 } & Struct;185 readonly isUpdateThresholdWeight: boolean;185 readonly isUpdateThresholdWeight: boolean;186 readonly asUpdateThresholdWeight: {186 readonly asUpdateThresholdWeight: {187 readonly new_: u64;187 readonly new_: Weight;188 } & Struct;188 } & Struct;189 readonly isUpdateWeightRestrictDecay: boolean;189 readonly isUpdateWeightRestrictDecay: boolean;190 readonly asUpdateWeightRestrictDecay: {190 readonly asUpdateWeightRestrictDecay: {191 readonly new_: u64;191 readonly new_: Weight;192 } & Struct;192 } & Struct;193 readonly isUpdateXcmpMaxIndividualWeight: boolean;193 readonly isUpdateXcmpMaxIndividualWeight: boolean;194 readonly asUpdateXcmpMaxIndividualWeight: {194 readonly asUpdateXcmpMaxIndividualWeight: {195 readonly new_: u64;195 readonly new_: Weight;196 } & Struct;196 } & Struct;197 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';197 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198}198}212 readonly isSuccess: boolean;212 readonly isSuccess: boolean;213 readonly asSuccess: {213 readonly asSuccess: {214 readonly messageHash: Option<H256>;214 readonly messageHash: Option<H256>;215 readonly weight: u64;215 readonly weight: Weight;216 } & Struct;216 } & Struct;217 readonly isFail: boolean;217 readonly isFail: boolean;218 readonly asFail: {218 readonly asFail: {219 readonly messageHash: Option<H256>;219 readonly messageHash: Option<H256>;220 readonly error: XcmV2TraitsError;220 readonly error: XcmV2TraitsError;221 readonly weight: u64;221 readonly weight: Weight;222 } & Struct;222 } & Struct;223 readonly isBadVersion: boolean;223 readonly isBadVersion: boolean;224 readonly asBadVersion: {224 readonly asBadVersion: {241 readonly sender: u32;241 readonly sender: u32;242 readonly sentAt: u32;242 readonly sentAt: u32;243 readonly index: u64;243 readonly index: u64;244 readonly required: u64;244 readonly required: Weight;245 } & Struct;245 } & Struct;246 readonly isOverweightServiced: boolean;246 readonly isOverweightServiced: boolean;247 readonly asOverweightServiced: {247 readonly asOverweightServiced: {248 readonly index: u64;248 readonly index: u64;249 readonly used: u64;249 readonly used: Weight;250 } & Struct;250 } & Struct;251 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';251 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';252}252}286 readonly suspendThreshold: u32;286 readonly suspendThreshold: u32;287 readonly dropThreshold: u32;287 readonly dropThreshold: u32;288 readonly resumeThreshold: u32;288 readonly resumeThreshold: u32;289 readonly thresholdWeight: u64;289 readonly thresholdWeight: Weight;290 readonly weightRestrictDecay: u64;290 readonly weightRestrictDecay: Weight;291 readonly xcmpMaxIndividualWeight: u64;291 readonly xcmpMaxIndividualWeight: Weight;292}292}293293294/** @name CumulusPrimitivesParachainInherentParachainInherentData */294/** @name CumulusPrimitivesParachainInherentParachainInherentData */546546547/** @name FrameSupportWeightsDispatchInfo */547/** @name FrameSupportWeightsDispatchInfo */548export interface FrameSupportWeightsDispatchInfo extends Struct {548export interface FrameSupportWeightsDispatchInfo extends Struct {549 readonly weight: u64;549 readonly weight: Weight;550 readonly class: FrameSupportWeightsDispatchClass;550 readonly class: FrameSupportWeightsDispatchClass;551 readonly paysFee: FrameSupportWeightsPays;551 readonly paysFee: FrameSupportWeightsPays;552}552}565 readonly mandatory: u32;565 readonly mandatory: u32;566}566}567567568/** @name FrameSupportWeightsPerDispatchClassU64 */568/** @name FrameSupportWeightsPerDispatchClassWeight */569export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {569export interface FrameSupportWeightsPerDispatchClassWeight extends Struct {570 readonly normal: u64;570 readonly normal: Weight;571 readonly operational: u64;571 readonly operational: Weight;572 readonly mandatory: u64;572 readonly mandatory: Weight;573}573}574574575/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */575/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */710710711/** @name FrameSystemLimitsBlockWeights */711/** @name FrameSystemLimitsBlockWeights */712export interface FrameSystemLimitsBlockWeights extends Struct {712export interface FrameSystemLimitsBlockWeights extends Struct {713 readonly baseBlock: u64;713 readonly baseBlock: Weight;714 readonly maxBlock: u64;714 readonly maxBlock: Weight;715 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;715 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;716}716}717717718/** @name FrameSystemLimitsWeightsPerClass */718/** @name FrameSystemLimitsWeightsPerClass */719export interface FrameSystemLimitsWeightsPerClass extends Struct {719export interface FrameSystemLimitsWeightsPerClass extends Struct {720 readonly baseExtrinsic: u64;720 readonly baseExtrinsic: Weight;721 readonly maxExtrinsic: Option<u64>;721 readonly maxExtrinsic: Option<Weight>;722 readonly maxTotal: Option<u64>;722 readonly maxTotal: Option<Weight>;723 readonly reserved: Option<u64>;723 readonly reserved: Option<Weight>;724}724}725725726/** @name FrameSystemPhase */726/** @name FrameSystemPhase */1929 readonly isSudoUncheckedWeight: boolean;1929 readonly isSudoUncheckedWeight: boolean;1930 readonly asSudoUncheckedWeight: {1930 readonly asSudoUncheckedWeight: {1931 readonly call: Call;1931 readonly call: Call;1932 readonly weight: u64;1932 readonly weight: Weight;1933 } & Struct;1933 } & Struct;1934 readonly isSetKey: boolean;1934 readonly isSetKey: boolean;1935 readonly asSetKey: {1935 readonly asSetKey: {2372 readonly isExecute: boolean;2372 readonly isExecute: boolean;2373 readonly asExecute: {2373 readonly asExecute: {2374 readonly message: XcmVersionedXcm;2374 readonly message: XcmVersionedXcm;2375 readonly maxWeight: u64;2375 readonly maxWeight: Weight;2376 } & Struct;2376 } & Struct;2377 readonly isForceXcmVersion: boolean;2377 readonly isForceXcmVersion: boolean;2378 readonly asForceXcmVersion: {2378 readonly asForceXcmVersion: {2441 readonly isNotified: boolean;2441 readonly isNotified: boolean;2442 readonly asNotified: ITuple<[u64, u8, u8]>;2442 readonly asNotified: ITuple<[u64, u8, u8]>;2443 readonly isNotifyOverweight: boolean;2443 readonly isNotifyOverweight: boolean;2444 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;2444 readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;2445 readonly isNotifyDispatchError: boolean;2445 readonly isNotifyDispatchError: boolean;2446 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2446 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2447 readonly isNotifyDecodeFailed: boolean;2447 readonly isNotifyDecodeFailed: boolean;tests/src/interfaces/lookup.tsdiffbeforeafterboth23 miscFrozen: 'u128',23 miscFrozen: 'u128',24 feeFrozen: 'u128'24 feeFrozen: 'u128'25 },25 },26 /**26 /**27 * Lookup7: frame_support::weights::PerDispatchClass<T>27 * Lookup7: frame_support::weights::PerDispatchClass<frame_support::weights::weight_v2::Weight>28 **/28 **/29 FrameSupportWeightsPerDispatchClassU64: {29 FrameSupportWeightsPerDispatchClassWeight: {30 normal: 'u64',30 normal: 'Weight',31 operational: 'u64',31 operational: 'Weight',32 mandatory: 'u64'32 mandatory: 'Weight'33 },33 },34 /**34 /**35 * Lookup11: sp_runtime::generic::digest::Digest35 * Lookup12: sp_runtime::generic::digest::Digest36 **/36 **/37 SpRuntimeDigest: {37 SpRuntimeDigest: {38 logs: 'Vec<SpRuntimeDigestDigestItem>'38 logs: 'Vec<SpRuntimeDigestDigestItem>'39 },39 },40 /**40 /**41 * Lookup13: sp_runtime::generic::digest::DigestItem41 * Lookup14: sp_runtime::generic::digest::DigestItem42 **/42 **/43 SpRuntimeDigestDigestItem: {43 SpRuntimeDigestDigestItem: {44 _enum: {44 _enum: {45 Other: 'Bytes',45 Other: 'Bytes',53 RuntimeEnvironmentUpdated: 'Null'53 RuntimeEnvironmentUpdated: 'Null'54 }54 }55 },55 },56 /**56 /**57 * Lookup16: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>57 * Lookup17: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>58 **/58 **/59 FrameSystemEventRecord: {59 FrameSystemEventRecord: {60 phase: 'FrameSystemPhase',60 phase: 'FrameSystemPhase',61 event: 'Event',61 event: 'Event',62 topics: 'Vec<H256>'62 topics: 'Vec<H256>'63 },63 },64 /**64 /**65 * Lookup18: frame_system::pallet::Event<T>65 * Lookup19: frame_system::pallet::Event<T>66 **/66 **/67 FrameSystemEvent: {67 FrameSystemEvent: {68 _enum: {68 _enum: {69 ExtrinsicSuccess: {69 ExtrinsicSuccess: {89 }89 }90 }90 }91 },91 },92 /**92 /**93 * Lookup19: frame_support::weights::DispatchInfo93 * Lookup20: frame_support::weights::DispatchInfo94 **/94 **/95 FrameSupportWeightsDispatchInfo: {95 FrameSupportWeightsDispatchInfo: {96 weight: 'u64',96 weight: 'Weight',97 class: 'FrameSupportWeightsDispatchClass',97 class: 'FrameSupportWeightsDispatchClass',98 paysFee: 'FrameSupportWeightsPays'98 paysFee: 'FrameSupportWeightsPays'99 },99 },100 /**100 /**101 * Lookup20: frame_support::weights::DispatchClass101 * Lookup21: frame_support::weights::DispatchClass102 **/102 **/103 FrameSupportWeightsDispatchClass: {103 FrameSupportWeightsDispatchClass: {104 _enum: ['Normal', 'Operational', 'Mandatory']104 _enum: ['Normal', 'Operational', 'Mandatory']105 },105 },106 /**106 /**107 * Lookup21: frame_support::weights::Pays107 * Lookup22: frame_support::weights::Pays108 **/108 **/109 FrameSupportWeightsPays: {109 FrameSupportWeightsPays: {110 _enum: ['Yes', 'No']110 _enum: ['Yes', 'No']111 },111 },112 /**112 /**113 * Lookup22: sp_runtime::DispatchError113 * Lookup23: sp_runtime::DispatchError114 **/114 **/115 SpRuntimeDispatchError: {115 SpRuntimeDispatchError: {116 _enum: {116 _enum: {117 Other: 'Null',117 Other: 'Null',126 Transactional: 'SpRuntimeTransactionalError'126 Transactional: 'SpRuntimeTransactionalError'127 }127 }128 },128 },129 /**129 /**130 * Lookup23: sp_runtime::ModuleError130 * Lookup24: sp_runtime::ModuleError131 **/131 **/132 SpRuntimeModuleError: {132 SpRuntimeModuleError: {133 index: 'u8',133 index: 'u8',134 error: '[u8;4]'134 error: '[u8;4]'135 },135 },136 /**136 /**137 * Lookup24: sp_runtime::TokenError137 * Lookup25: sp_runtime::TokenError138 **/138 **/139 SpRuntimeTokenError: {139 SpRuntimeTokenError: {140 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']140 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']141 },141 },142 /**142 /**143 * Lookup25: sp_runtime::ArithmeticError143 * Lookup26: sp_runtime::ArithmeticError144 **/144 **/145 SpRuntimeArithmeticError: {145 SpRuntimeArithmeticError: {146 _enum: ['Underflow', 'Overflow', 'DivisionByZero']146 _enum: ['Underflow', 'Overflow', 'DivisionByZero']147 },147 },148 /**148 /**149 * Lookup26: sp_runtime::TransactionalError149 * Lookup27: sp_runtime::TransactionalError150 **/150 **/151 SpRuntimeTransactionalError: {151 SpRuntimeTransactionalError: {152 _enum: ['LimitReached', 'NoLayer']152 _enum: ['LimitReached', 'NoLayer']153 },153 },154 /**154 /**155 * Lookup27: cumulus_pallet_parachain_system::pallet::Event<T>155 * Lookup28: cumulus_pallet_parachain_system::pallet::Event<T>156 **/156 **/157 CumulusPalletParachainSystemEvent: {157 CumulusPalletParachainSystemEvent: {158 _enum: {158 _enum: {159 ValidationFunctionStored: 'Null',159 ValidationFunctionStored: 'Null',168 count: 'u32',168 count: 'u32',169 },169 },170 DownwardMessagesProcessed: {170 DownwardMessagesProcessed: {171 weightUsed: 'u64',171 weightUsed: 'Weight',172 dmqHead: 'H256'172 dmqHead: 'H256'173 }173 }174 }174 }175 },175 },176 /**176 /**177 * Lookup28: pallet_balances::pallet::Event<T, I>177 * Lookup29: pallet_balances::pallet::Event<T, I>178 **/178 **/179 PalletBalancesEvent: {179 PalletBalancesEvent: {180 _enum: {180 _enum: {181 Endowed: {181 Endowed: {224 }224 }225 }225 }226 },226 },227 /**227 /**228 * Lookup29: frame_support::traits::tokens::misc::BalanceStatus228 * Lookup30: frame_support::traits::tokens::misc::BalanceStatus229 **/229 **/230 FrameSupportTokensMiscBalanceStatus: {230 FrameSupportTokensMiscBalanceStatus: {231 _enum: ['Free', 'Reserved']231 _enum: ['Free', 'Reserved']232 },232 },233 /**233 /**234 * Lookup30: pallet_transaction_payment::pallet::Event<T>234 * Lookup31: pallet_transaction_payment::pallet::Event<T>235 **/235 **/236 PalletTransactionPaymentEvent: {236 PalletTransactionPaymentEvent: {237 _enum: {237 _enum: {238 TransactionFeePaid: {238 TransactionFeePaid: {242 }242 }243 }243 }244 },244 },245 /**245 /**246 * Lookup31: pallet_treasury::pallet::Event<T, I>246 * Lookup32: pallet_treasury::pallet::Event<T, I>247 **/247 **/248 PalletTreasuryEvent: {248 PalletTreasuryEvent: {249 _enum: {249 _enum: {250 Proposed: {250 Proposed: {278 }278 }279 }279 }280 },280 },281 /**281 /**282 * Lookup32: pallet_sudo::pallet::Event<T>282 * Lookup33: pallet_sudo::pallet::Event<T>283 **/283 **/284 PalletSudoEvent: {284 PalletSudoEvent: {285 _enum: {285 _enum: {286 Sudid: {286 Sudid: {294 }294 }295 }295 }296 },296 },297 /**297 /**298 * Lookup36: orml_vesting::module::Event<T>298 * Lookup37: orml_vesting::module::Event<T>299 **/299 **/300 OrmlVestingModuleEvent: {300 OrmlVestingModuleEvent: {301 _enum: {301 _enum: {302 VestingScheduleAdded: {302 VestingScheduleAdded: {313 }313 }314 }314 }315 },315 },316 /**316 /**317 * Lookup37: orml_vesting::VestingSchedule<BlockNumber, Balance>317 * Lookup38: orml_vesting::VestingSchedule<BlockNumber, Balance>318 **/318 **/319 OrmlVestingVestingSchedule: {319 OrmlVestingVestingSchedule: {320 start: 'u32',320 start: 'u32',321 period: 'u32',321 period: 'u32',322 periodCount: 'u32',322 periodCount: 'u32',323 perPeriod: 'Compact<u128>'323 perPeriod: 'Compact<u128>'324 },324 },325 /**325 /**326 * Lookup39: orml_xtokens::module::Event<T>326 * Lookup40: orml_xtokens::module::Event<T>327 **/327 **/328 OrmlXtokensModuleEvent: {328 OrmlXtokensModuleEvent: {329 _enum: {329 _enum: {330 TransferredMultiAssets: {330 TransferredMultiAssets: {335 }335 }336 }336 }337 },337 },338 /**338 /**339 * Lookup40: xcm::v1::multiasset::MultiAssets339 * Lookup41: xcm::v1::multiasset::MultiAssets340 **/340 **/341 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',341 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',342 /**342 /**343 * Lookup42: xcm::v1::multiasset::MultiAsset343 * Lookup43: xcm::v1::multiasset::MultiAsset344 **/344 **/345 XcmV1MultiAsset: {345 XcmV1MultiAsset: {346 id: 'XcmV1MultiassetAssetId',346 id: 'XcmV1MultiassetAssetId',347 fun: 'XcmV1MultiassetFungibility'347 fun: 'XcmV1MultiassetFungibility'348 },348 },349 /**349 /**350 * Lookup43: xcm::v1::multiasset::AssetId350 * Lookup44: xcm::v1::multiasset::AssetId351 **/351 **/352 XcmV1MultiassetAssetId: {352 XcmV1MultiassetAssetId: {353 _enum: {353 _enum: {354 Concrete: 'XcmV1MultiLocation',354 Concrete: 'XcmV1MultiLocation',355 Abstract: 'Bytes'355 Abstract: 'Bytes'356 }356 }357 },357 },358 /**358 /**359 * Lookup44: xcm::v1::multilocation::MultiLocation359 * Lookup45: xcm::v1::multilocation::MultiLocation360 **/360 **/361 XcmV1MultiLocation: {361 XcmV1MultiLocation: {362 parents: 'u8',362 parents: 'u8',363 interior: 'XcmV1MultilocationJunctions'363 interior: 'XcmV1MultilocationJunctions'364 },364 },365 /**365 /**366 * Lookup45: xcm::v1::multilocation::Junctions366 * Lookup46: xcm::v1::multilocation::Junctions367 **/367 **/368 XcmV1MultilocationJunctions: {368 XcmV1MultilocationJunctions: {369 _enum: {369 _enum: {370 Here: 'Null',370 Here: 'Null',378 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'378 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'379 }379 }380 },380 },381 /**381 /**382 * Lookup46: xcm::v1::junction::Junction382 * Lookup47: xcm::v1::junction::Junction383 **/383 **/384 XcmV1Junction: {384 XcmV1Junction: {385 _enum: {385 _enum: {386 Parachain: 'Compact<u32>',386 Parachain: 'Compact<u32>',406 }406 }407 }407 }408 },408 },409 /**409 /**410 * Lookup48: xcm::v0::junction::NetworkId410 * Lookup49: xcm::v0::junction::NetworkId411 **/411 **/412 XcmV0JunctionNetworkId: {412 XcmV0JunctionNetworkId: {413 _enum: {413 _enum: {414 Any: 'Null',414 Any: 'Null',417 Kusama: 'Null'417 Kusama: 'Null'418 }418 }419 },419 },420 /**420 /**421 * Lookup52: xcm::v0::junction::BodyId421 * Lookup53: xcm::v0::junction::BodyId422 **/422 **/423 XcmV0JunctionBodyId: {423 XcmV0JunctionBodyId: {424 _enum: {424 _enum: {425 Unit: 'Null',425 Unit: 'Null',431 Judicial: 'Null'431 Judicial: 'Null'432 }432 }433 },433 },434 /**434 /**435 * Lookup53: xcm::v0::junction::BodyPart435 * Lookup54: xcm::v0::junction::BodyPart436 **/436 **/437 XcmV0JunctionBodyPart: {437 XcmV0JunctionBodyPart: {438 _enum: {438 _enum: {439 Voice: 'Null',439 Voice: 'Null',454 }454 }455 }455 }456 },456 },457 /**457 /**458 * Lookup54: xcm::v1::multiasset::Fungibility458 * Lookup55: xcm::v1::multiasset::Fungibility459 **/459 **/460 XcmV1MultiassetFungibility: {460 XcmV1MultiassetFungibility: {461 _enum: {461 _enum: {462 Fungible: 'Compact<u128>',462 Fungible: 'Compact<u128>',463 NonFungible: 'XcmV1MultiassetAssetInstance'463 NonFungible: 'XcmV1MultiassetAssetInstance'464 }464 }465 },465 },466 /**466 /**467 * Lookup55: xcm::v1::multiasset::AssetInstance467 * Lookup56: xcm::v1::multiasset::AssetInstance468 **/468 **/469 XcmV1MultiassetAssetInstance: {469 XcmV1MultiassetAssetInstance: {470 _enum: {470 _enum: {471 Undefined: 'Null',471 Undefined: 'Null',477 Blob: 'Bytes'477 Blob: 'Bytes'478 }478 }479 },479 },480 /**480 /**481 * Lookup58: orml_tokens::module::Event<T>481 * Lookup59: orml_tokens::module::Event<T>482 **/482 **/483 OrmlTokensModuleEvent: {483 OrmlTokensModuleEvent: {484 _enum: {484 _enum: {485 Endowed: {485 Endowed: {554 }554 }555 }555 }556 },556 },557 /**557 /**558 * Lookup59: pallet_foreign_assets::AssetIds558 * Lookup60: pallet_foreign_assets::AssetIds559 **/559 **/560 PalletForeignAssetsAssetIds: {560 PalletForeignAssetsAssetIds: {561 _enum: {561 _enum: {562 ForeignAssetId: 'u32',562 ForeignAssetId: 'u32',563 NativeAssetId: 'PalletForeignAssetsNativeCurrency'563 NativeAssetId: 'PalletForeignAssetsNativeCurrency'564 }564 }565 },565 },566 /**566 /**567 * Lookup60: pallet_foreign_assets::NativeCurrency567 * Lookup61: pallet_foreign_assets::NativeCurrency568 **/568 **/569 PalletForeignAssetsNativeCurrency: {569 PalletForeignAssetsNativeCurrency: {570 _enum: ['Here', 'Parent']570 _enum: ['Here', 'Parent']571 },571 },572 /**572 /**573 * Lookup61: cumulus_pallet_xcmp_queue::pallet::Event<T>573 * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>574 **/574 **/575 CumulusPalletXcmpQueueEvent: {575 CumulusPalletXcmpQueueEvent: {576 _enum: {576 _enum: {577 Success: {577 Success: {578 messageHash: 'Option<H256>',578 messageHash: 'Option<H256>',579 weight: 'u64',579 weight: 'Weight',580 },580 },581 Fail: {581 Fail: {582 messageHash: 'Option<H256>',582 messageHash: 'Option<H256>',583 error: 'XcmV2TraitsError',583 error: 'XcmV2TraitsError',584 weight: 'u64',584 weight: 'Weight',585 },585 },586 BadVersion: {586 BadVersion: {587 messageHash: 'Option<H256>',587 messageHash: 'Option<H256>',599 sender: 'u32',599 sender: 'u32',600 sentAt: 'u32',600 sentAt: 'u32',601 index: 'u64',601 index: 'u64',602 required: 'u64',602 required: 'Weight',603 },603 },604 OverweightServiced: {604 OverweightServiced: {605 index: 'u64',605 index: 'u64',606 used: 'u64'606 used: 'Weight'607 }607 }608 }608 }609 },609 },610 /**610 /**611 * Lookup63: xcm::v2::traits::Error611 * Lookup64: xcm::v2::traits::Error612 **/612 **/613 XcmV2TraitsError: {613 XcmV2TraitsError: {614 _enum: {614 _enum: {615 Overflow: 'Null',615 Overflow: 'Null',640 WeightNotComputable: 'Null'640 WeightNotComputable: 'Null'641 }641 }642 },642 },643 /**643 /**644 * Lookup65: pallet_xcm::pallet::Event<T>644 * Lookup66: pallet_xcm::pallet::Event<T>645 **/645 **/646 PalletXcmEvent: {646 PalletXcmEvent: {647 _enum: {647 _enum: {648 Attempted: 'XcmV2TraitsOutcome',648 Attempted: 'XcmV2TraitsOutcome',649 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',649 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',650 UnexpectedResponse: '(XcmV1MultiLocation,u64)',650 UnexpectedResponse: '(XcmV1MultiLocation,u64)',651 ResponseReady: '(u64,XcmV2Response)',651 ResponseReady: '(u64,XcmV2Response)',652 Notified: '(u64,u8,u8)',652 Notified: '(u64,u8,u8)',653 NotifyOverweight: '(u64,u8,u8,u64,u64)',653 NotifyOverweight: '(u64,u8,u8,Weight,Weight)',654 NotifyDispatchError: '(u64,u8,u8)',654 NotifyDispatchError: '(u64,u8,u8)',655 NotifyDecodeFailed: '(u64,u8,u8)',655 NotifyDecodeFailed: '(u64,u8,u8)',656 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',656 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',663 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'663 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'664 }664 }665 },665 },666 /**666 /**667 * Lookup66: xcm::v2::traits::Outcome667 * Lookup67: xcm::v2::traits::Outcome668 **/668 **/669 XcmV2TraitsOutcome: {669 XcmV2TraitsOutcome: {670 _enum: {670 _enum: {671 Complete: 'u64',671 Complete: 'u64',672 Incomplete: '(u64,XcmV2TraitsError)',672 Incomplete: '(u64,XcmV2TraitsError)',673 Error: 'XcmV2TraitsError'673 Error: 'XcmV2TraitsError'674 }674 }675 },675 },676 /**676 /**677 * Lookup67: xcm::v2::Xcm<Call>677 * Lookup68: xcm::v2::Xcm<Call>678 **/678 **/679 XcmV2Xcm: 'Vec<XcmV2Instruction>',679 XcmV2Xcm: 'Vec<XcmV2Instruction>',680 /**680 /**681 * Lookup69: xcm::v2::Instruction<Call>681 * Lookup70: xcm::v2::Instruction<Call>682 **/682 **/683 XcmV2Instruction: {683 XcmV2Instruction: {684 _enum: {684 _enum: {685 WithdrawAsset: 'XcmV1MultiassetMultiAssets',685 WithdrawAsset: 'XcmV1MultiassetMultiAssets',775 UnsubscribeVersion: 'Null'775 UnsubscribeVersion: 'Null'776 }776 }777 },777 },778 /**778 /**779 * Lookup70: xcm::v2::Response779 * Lookup71: xcm::v2::Response780 **/780 **/781 XcmV2Response: {781 XcmV2Response: {782 _enum: {782 _enum: {783 Null: 'Null',783 Null: 'Null',786 Version: 'u32'786 Version: 'u32'787 }787 }788 },788 },789 /**789 /**790 * Lookup73: xcm::v0::OriginKind790 * Lookup74: xcm::v0::OriginKind791 **/791 **/792 XcmV0OriginKind: {792 XcmV0OriginKind: {793 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']793 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']794 },794 },795 /**795 /**796 * Lookup74: xcm::double_encoded::DoubleEncoded<T>796 * Lookup75: xcm::double_encoded::DoubleEncoded<T>797 **/797 **/798 XcmDoubleEncoded: {798 XcmDoubleEncoded: {799 encoded: 'Bytes'799 encoded: 'Bytes'800 },800 },801 /**801 /**802 * Lookup75: xcm::v1::multiasset::MultiAssetFilter802 * Lookup76: xcm::v1::multiasset::MultiAssetFilter803 **/803 **/804 XcmV1MultiassetMultiAssetFilter: {804 XcmV1MultiassetMultiAssetFilter: {805 _enum: {805 _enum: {806 Definite: 'XcmV1MultiassetMultiAssets',806 Definite: 'XcmV1MultiassetMultiAssets',807 Wild: 'XcmV1MultiassetWildMultiAsset'807 Wild: 'XcmV1MultiassetWildMultiAsset'808 }808 }809 },809 },810 /**810 /**811 * Lookup76: xcm::v1::multiasset::WildMultiAsset811 * Lookup77: xcm::v1::multiasset::WildMultiAsset812 **/812 **/813 XcmV1MultiassetWildMultiAsset: {813 XcmV1MultiassetWildMultiAsset: {814 _enum: {814 _enum: {815 All: 'Null',815 All: 'Null',819 }819 }820 }820 }821 },821 },822 /**822 /**823 * Lookup77: xcm::v1::multiasset::WildFungibility823 * Lookup78: xcm::v1::multiasset::WildFungibility824 **/824 **/825 XcmV1MultiassetWildFungibility: {825 XcmV1MultiassetWildFungibility: {826 _enum: ['Fungible', 'NonFungible']826 _enum: ['Fungible', 'NonFungible']827 },827 },828 /**828 /**829 * Lookup78: xcm::v2::WeightLimit829 * Lookup79: xcm::v2::WeightLimit830 **/830 **/831 XcmV2WeightLimit: {831 XcmV2WeightLimit: {832 _enum: {832 _enum: {833 Unlimited: 'Null',833 Unlimited: 'Null',834 Limited: 'Compact<u64>'834 Limited: 'Compact<u64>'835 }835 }836 },836 },837 /**837 /**838 * Lookup80: xcm::VersionedMultiAssets838 * Lookup81: xcm::VersionedMultiAssets839 **/839 **/840 XcmVersionedMultiAssets: {840 XcmVersionedMultiAssets: {841 _enum: {841 _enum: {842 V0: 'Vec<XcmV0MultiAsset>',842 V0: 'Vec<XcmV0MultiAsset>',843 V1: 'XcmV1MultiassetMultiAssets'843 V1: 'XcmV1MultiassetMultiAssets'844 }844 }845 },845 },846 /**846 /**847 * Lookup82: xcm::v0::multi_asset::MultiAsset847 * Lookup83: xcm::v0::multi_asset::MultiAsset848 **/848 **/849 XcmV0MultiAsset: {849 XcmV0MultiAsset: {850 _enum: {850 _enum: {851 None: 'Null',851 None: 'Null',882 }882 }883 }883 }884 },884 },885 /**885 /**886 * Lookup83: xcm::v0::multi_location::MultiLocation886 * Lookup84: xcm::v0::multi_location::MultiLocation887 **/887 **/888 XcmV0MultiLocation: {888 XcmV0MultiLocation: {889 _enum: {889 _enum: {890 Null: 'Null',890 Null: 'Null',898 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'898 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'899 }899 }900 },900 },901 /**901 /**902 * Lookup84: xcm::v0::junction::Junction902 * Lookup85: xcm::v0::junction::Junction903 **/903 **/904 XcmV0Junction: {904 XcmV0Junction: {905 _enum: {905 _enum: {906 Parent: 'Null',906 Parent: 'Null',927 }927 }928 }928 }929 },929 },930 /**930 /**931 * Lookup85: xcm::VersionedMultiLocation931 * Lookup86: xcm::VersionedMultiLocation932 **/932 **/933 XcmVersionedMultiLocation: {933 XcmVersionedMultiLocation: {934 _enum: {934 _enum: {935 V0: 'XcmV0MultiLocation',935 V0: 'XcmV0MultiLocation',936 V1: 'XcmV1MultiLocation'936 V1: 'XcmV1MultiLocation'937 }937 }938 },938 },939 /**939 /**940 * Lookup86: cumulus_pallet_xcm::pallet::Event<T>940 * Lookup87: cumulus_pallet_xcm::pallet::Event<T>941 **/941 **/942 CumulusPalletXcmEvent: {942 CumulusPalletXcmEvent: {943 _enum: {943 _enum: {944 InvalidFormat: '[u8;8]',944 InvalidFormat: '[u8;8]',945 UnsupportedVersion: '[u8;8]',945 UnsupportedVersion: '[u8;8]',946 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'946 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'947 }947 }948 },948 },949 /**949 /**950 * Lookup87: cumulus_pallet_dmp_queue::pallet::Event<T>950 * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>951 **/951 **/952 CumulusPalletDmpQueueEvent: {952 CumulusPalletDmpQueueEvent: {953 _enum: {953 _enum: {954 InvalidFormat: {954 InvalidFormat: {963 },963 },964 WeightExhausted: {964 WeightExhausted: {965 messageId: '[u8;32]',965 messageId: '[u8;32]',966 remainingWeight: 'u64',966 remainingWeight: 'Weight',967 requiredWeight: 'u64',967 requiredWeight: 'Weight',968 },968 },969 OverweightEnqueued: {969 OverweightEnqueued: {970 messageId: '[u8;32]',970 messageId: '[u8;32]',971 overweightIndex: 'u64',971 overweightIndex: 'u64',972 requiredWeight: 'u64',972 requiredWeight: 'Weight',973 },973 },974 OverweightServiced: {974 OverweightServiced: {975 overweightIndex: 'u64',975 overweightIndex: 'u64',976 weightUsed: 'u64'976 weightUsed: 'Weight'977 }977 }978 }978 }979 },979 },980 /**980 /**981 * Lookup88: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>981 * Lookup89: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>982 **/982 **/983 PalletUniqueRawEvent: {983 PalletUniqueRawEvent: {984 _enum: {984 _enum: {985 CollectionSponsorRemoved: 'u32',985 CollectionSponsorRemoved: 'u32',994 CollectionPermissionSet: 'u32'994 CollectionPermissionSet: 'u32'995 }995 }996 },996 },997 /**997 /**998 * Lookup89: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>998 * Lookup90: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>999 **/999 **/1000 PalletEvmAccountBasicCrossAccountIdRepr: {1000 PalletEvmAccountBasicCrossAccountIdRepr: {1001 _enum: {1001 _enum: {1002 Substrate: 'AccountId32',1002 Substrate: 'AccountId32',1003 Ethereum: 'H160'1003 Ethereum: 'H160'1004 }1004 }1005 },1005 },1006 /**1006 /**1007 * Lookup92: pallet_unique_scheduler::pallet::Event<T>1007 * Lookup93: pallet_unique_scheduler::pallet::Event<T>1008 **/1008 **/1009 PalletUniqueSchedulerEvent: {1009 PalletUniqueSchedulerEvent: {1010 _enum: {1010 _enum: {1011 Scheduled: {1011 Scheduled: {1028 }1028 }1029 }1029 }1030 },1030 },1031 /**1031 /**1032 * Lookup95: frame_support::traits::schedule::LookupError1032 * Lookup96: frame_support::traits::schedule::LookupError1033 **/1033 **/1034 FrameSupportScheduleLookupError: {1034 FrameSupportScheduleLookupError: {1035 _enum: ['Unknown', 'BadFormat']1035 _enum: ['Unknown', 'BadFormat']1036 },1036 },1037 /**1037 /**1038 * Lookup96: pallet_common::pallet::Event<T>1038 * Lookup97: pallet_common::pallet::Event<T>1039 **/1039 **/1040 PalletCommonEvent: {1040 PalletCommonEvent: {1041 _enum: {1041 _enum: {1042 CollectionCreated: '(u32,u8,AccountId32)',1042 CollectionCreated: '(u32,u8,AccountId32)',1052 PropertyPermissionSet: '(u32,Bytes)'1052 PropertyPermissionSet: '(u32,Bytes)'1053 }1053 }1054 },1054 },1055 /**1055 /**1056 * Lookup99: pallet_structure::pallet::Event<T>1056 * Lookup100: pallet_structure::pallet::Event<T>1057 **/1057 **/1058 PalletStructureEvent: {1058 PalletStructureEvent: {1059 _enum: {1059 _enum: {1060 Executed: 'Result<Null, SpRuntimeDispatchError>'1060 Executed: 'Result<Null, SpRuntimeDispatchError>'1061 }1061 }1062 },1062 },1063 /**1063 /**1064 * Lookup100: pallet_rmrk_core::pallet::Event<T>1064 * Lookup101: pallet_rmrk_core::pallet::Event<T>1065 **/1065 **/1066 PalletRmrkCoreEvent: {1066 PalletRmrkCoreEvent: {1067 _enum: {1067 _enum: {1068 CollectionCreated: {1068 CollectionCreated: {1137 }1137 }1138 }1138 }1139 },1139 },1140 /**1140 /**1141 * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1141 * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1142 **/1142 **/1143 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1143 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1144 _enum: {1144 _enum: {1145 AccountId: 'AccountId32',1145 AccountId: 'AccountId32',1146 CollectionAndNftTuple: '(u32,u32)'1146 CollectionAndNftTuple: '(u32,u32)'1147 }1147 }1148 },1148 },1149 /**1149 /**1150 * Lookup106: pallet_rmrk_equip::pallet::Event<T>1150 * Lookup107: pallet_rmrk_equip::pallet::Event<T>1151 **/1151 **/1152 PalletRmrkEquipEvent: {1152 PalletRmrkEquipEvent: {1153 _enum: {1153 _enum: {1154 BaseCreated: {1154 BaseCreated: {1161 }1161 }1162 }1162 }1163 },1163 },1164 /**1164 /**1165 * Lookup107: pallet_app_promotion::pallet::Event<T>1165 * Lookup108: pallet_app_promotion::pallet::Event<T>1166 **/1166 **/1167 PalletAppPromotionEvent: {1167 PalletAppPromotionEvent: {1168 _enum: {1168 _enum: {1169 StakingRecalculation: '(AccountId32,u128,u128)',1169 StakingRecalculation: '(AccountId32,u128,u128)',1172 SetAdmin: 'AccountId32'1172 SetAdmin: 'AccountId32'1173 }1173 }1174 },1174 },1175 /**1175 /**1176 * Lookup108: pallet_foreign_assets::module::Event<T>1176 * Lookup109: pallet_foreign_assets::module::Event<T>1177 **/1177 **/1178 PalletForeignAssetsModuleEvent: {1178 PalletForeignAssetsModuleEvent: {1179 _enum: {1179 _enum: {1180 ForeignAssetRegistered: {1180 ForeignAssetRegistered: {1197 }1197 }1198 }1198 }1199 },1199 },1200 /**1200 /**1201 * Lookup109: pallet_foreign_assets::module::AssetMetadata<Balance>1201 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1202 **/1202 **/1203 PalletForeignAssetsModuleAssetMetadata: {1203 PalletForeignAssetsModuleAssetMetadata: {1204 name: 'Bytes',1204 name: 'Bytes',1205 symbol: 'Bytes',1205 symbol: 'Bytes',1206 decimals: 'u8',1206 decimals: 'u8',1207 minimalBalance: 'u128'1207 minimalBalance: 'u128'1208 },1208 },1209 /**1209 /**1210 * Lookup110: pallet_evm::pallet::Event<T>1210 * Lookup111: pallet_evm::pallet::Event<T>1211 **/1211 **/1212 PalletEvmEvent: {1212 PalletEvmEvent: {1213 _enum: {1213 _enum: {1214 Log: 'EthereumLog',1214 Log: 'EthereumLog',1220 BalanceWithdraw: '(AccountId32,H160,U256)'1220 BalanceWithdraw: '(AccountId32,H160,U256)'1221 }1221 }1222 },1222 },1223 /**1223 /**1224 * Lookup111: ethereum::log::Log1224 * Lookup112: ethereum::log::Log1225 **/1225 **/1226 EthereumLog: {1226 EthereumLog: {1227 address: 'H160',1227 address: 'H160',1228 topics: 'Vec<H256>',1228 topics: 'Vec<H256>',1229 data: 'Bytes'1229 data: 'Bytes'1230 },1230 },1231 /**1231 /**1232 * Lookup115: pallet_ethereum::pallet::Event1232 * Lookup116: pallet_ethereum::pallet::Event1233 **/1233 **/1234 PalletEthereumEvent: {1234 PalletEthereumEvent: {1235 _enum: {1235 _enum: {1236 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1236 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1237 }1237 }1238 },1238 },1239 /**1239 /**1240 * Lookup116: evm_core::error::ExitReason1240 * Lookup117: evm_core::error::ExitReason1241 **/1241 **/1242 EvmCoreErrorExitReason: {1242 EvmCoreErrorExitReason: {1243 _enum: {1243 _enum: {1244 Succeed: 'EvmCoreErrorExitSucceed',1244 Succeed: 'EvmCoreErrorExitSucceed',1247 Fatal: 'EvmCoreErrorExitFatal'1247 Fatal: 'EvmCoreErrorExitFatal'1248 }1248 }1249 },1249 },1250 /**1250 /**1251 * Lookup117: evm_core::error::ExitSucceed1251 * Lookup118: evm_core::error::ExitSucceed1252 **/1252 **/1253 EvmCoreErrorExitSucceed: {1253 EvmCoreErrorExitSucceed: {1254 _enum: ['Stopped', 'Returned', 'Suicided']1254 _enum: ['Stopped', 'Returned', 'Suicided']1255 },1255 },1256 /**1256 /**1257 * Lookup118: evm_core::error::ExitError1257 * Lookup119: evm_core::error::ExitError1258 **/1258 **/1259 EvmCoreErrorExitError: {1259 EvmCoreErrorExitError: {1260 _enum: {1260 _enum: {1261 StackUnderflow: 'Null',1261 StackUnderflow: 'Null',1275 InvalidCode: 'Null'1275 InvalidCode: 'Null'1276 }1276 }1277 },1277 },1278 /**1278 /**1279 * Lookup121: evm_core::error::ExitRevert1279 * Lookup122: evm_core::error::ExitRevert1280 **/1280 **/1281 EvmCoreErrorExitRevert: {1281 EvmCoreErrorExitRevert: {1282 _enum: ['Reverted']1282 _enum: ['Reverted']1283 },1283 },1284 /**1284 /**1285 * Lookup122: evm_core::error::ExitFatal1285 * Lookup123: evm_core::error::ExitFatal1286 **/1286 **/1287 EvmCoreErrorExitFatal: {1287 EvmCoreErrorExitFatal: {1288 _enum: {1288 _enum: {1289 NotSupported: 'Null',1289 NotSupported: 'Null',1292 Other: 'Text'1292 Other: 'Text'1293 }1293 }1294 },1294 },1295 /**1295 /**1296 * Lookup123: pallet_evm_contract_helpers::pallet::Event<T>1296 * Lookup124: pallet_evm_contract_helpers::pallet::Event<T>1297 **/1297 **/1298 PalletEvmContractHelpersEvent: {1298 PalletEvmContractHelpersEvent: {1299 _enum: {1299 _enum: {1300 ContractSponsorSet: '(H160,AccountId32)',1300 ContractSponsorSet: '(H160,AccountId32)',1301 ContractSponsorshipConfirmed: '(H160,AccountId32)',1301 ContractSponsorshipConfirmed: '(H160,AccountId32)',1302 ContractSponsorRemoved: 'H160'1302 ContractSponsorRemoved: 'H160'1303 }1303 }1304 },1304 },1305 /**1305 /**1306 * Lookup124: frame_system::Phase1306 * Lookup125: frame_system::Phase1307 **/1307 **/1308 FrameSystemPhase: {1308 FrameSystemPhase: {1309 _enum: {1309 _enum: {1310 ApplyExtrinsic: 'u32',1310 ApplyExtrinsic: 'u32',1311 Finalization: 'Null',1311 Finalization: 'Null',1312 Initialization: 'Null'1312 Initialization: 'Null'1313 }1313 }1314 },1314 },1315 /**1315 /**1316 * Lookup126: frame_system::LastRuntimeUpgradeInfo1316 * Lookup127: frame_system::LastRuntimeUpgradeInfo1317 **/1317 **/1318 FrameSystemLastRuntimeUpgradeInfo: {1318 FrameSystemLastRuntimeUpgradeInfo: {1319 specVersion: 'Compact<u32>',1319 specVersion: 'Compact<u32>',1320 specName: 'Text'1320 specName: 'Text'1321 },1321 },1322 /**1322 /**1323 * Lookup127: frame_system::pallet::Call<T>1323 * Lookup128: frame_system::pallet::Call<T>1324 **/1324 **/1325 FrameSystemCall: {1325 FrameSystemCall: {1326 _enum: {1326 _enum: {1327 fill_block: {1327 fill_block: {1357 }1357 }1358 }1358 }1359 },1359 },1360 /**1360 /**1361 * Lookup132: frame_system::limits::BlockWeights1361 * Lookup133: frame_system::limits::BlockWeights1362 **/1362 **/1363 FrameSystemLimitsBlockWeights: {1363 FrameSystemLimitsBlockWeights: {1364 baseBlock: 'u64',1364 baseBlock: 'Weight',1365 maxBlock: 'u64',1365 maxBlock: 'Weight',1366 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'1366 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'1367 },1367 },1368 /**1368 /**1369 * Lookup133: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>1369 * Lookup134: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>1370 **/1370 **/1371 FrameSupportWeightsPerDispatchClassWeightsPerClass: {1371 FrameSupportWeightsPerDispatchClassWeightsPerClass: {1372 normal: 'FrameSystemLimitsWeightsPerClass',1372 normal: 'FrameSystemLimitsWeightsPerClass',1373 operational: 'FrameSystemLimitsWeightsPerClass',1373 operational: 'FrameSystemLimitsWeightsPerClass',1374 mandatory: 'FrameSystemLimitsWeightsPerClass'1374 mandatory: 'FrameSystemLimitsWeightsPerClass'1375 },1375 },1376 /**1376 /**1377 * Lookup134: frame_system::limits::WeightsPerClass1377 * Lookup135: frame_system::limits::WeightsPerClass1378 **/1378 **/1379 FrameSystemLimitsWeightsPerClass: {1379 FrameSystemLimitsWeightsPerClass: {1380 baseExtrinsic: 'u64',1380 baseExtrinsic: 'Weight',1381 maxExtrinsic: 'Option<u64>',1381 maxExtrinsic: 'Option<Weight>',1382 maxTotal: 'Option<u64>',1382 maxTotal: 'Option<Weight>',1383 reserved: 'Option<u64>'1383 reserved: 'Option<Weight>'1384 },1384 },1385 /**1385 /**1386 * Lookup136: frame_system::limits::BlockLength1386 * Lookup137: frame_system::limits::BlockLength1387 **/1387 **/1388 FrameSystemLimitsBlockLength: {1388 FrameSystemLimitsBlockLength: {1389 max: 'FrameSupportWeightsPerDispatchClassU32'1389 max: 'FrameSupportWeightsPerDispatchClassU32'1390 },1390 },1391 /**1391 /**1392 * Lookup137: frame_support::weights::PerDispatchClass<T>1392 * Lookup138: frame_support::weights::PerDispatchClass<T>1393 **/1393 **/1394 FrameSupportWeightsPerDispatchClassU32: {1394 FrameSupportWeightsPerDispatchClassU32: {1395 normal: 'u32',1395 normal: 'u32',1396 operational: 'u32',1396 operational: 'u32',1397 mandatory: 'u32'1397 mandatory: 'u32'1398 },1398 },1399 /**1399 /**1400 * Lookup138: frame_support::weights::RuntimeDbWeight1400 * Lookup139: frame_support::weights::RuntimeDbWeight1401 **/1401 **/1402 FrameSupportWeightsRuntimeDbWeight: {1402 FrameSupportWeightsRuntimeDbWeight: {1403 read: 'u64',1403 read: 'u64',1404 write: 'u64'1404 write: 'u64'1405 },1405 },1406 /**1406 /**1407 * Lookup139: sp_version::RuntimeVersion1407 * Lookup140: sp_version::RuntimeVersion1408 **/1408 **/1409 SpVersionRuntimeVersion: {1409 SpVersionRuntimeVersion: {1410 specName: 'Text',1410 specName: 'Text',1411 implName: 'Text',1411 implName: 'Text',1416 transactionVersion: 'u32',1416 transactionVersion: 'u32',1417 stateVersion: 'u8'1417 stateVersion: 'u8'1418 },1418 },1419 /**1419 /**1420 * Lookup144: frame_system::pallet::Error<T>1420 * Lookup145: frame_system::pallet::Error<T>1421 **/1421 **/1422 FrameSystemError: {1422 FrameSystemError: {1423 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1423 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1424 },1424 },1425 /**1425 /**1426 * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1426 * Lookup146: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1427 **/1427 **/1428 PolkadotPrimitivesV2PersistedValidationData: {1428 PolkadotPrimitivesV2PersistedValidationData: {1429 parentHead: 'Bytes',1429 parentHead: 'Bytes',1430 relayParentNumber: 'u32',1430 relayParentNumber: 'u32',1431 relayParentStorageRoot: 'H256',1431 relayParentStorageRoot: 'H256',1432 maxPovSize: 'u32'1432 maxPovSize: 'u32'1433 },1433 },1434 /**1434 /**1435 * Lookup148: polkadot_primitives::v2::UpgradeRestriction1435 * Lookup149: polkadot_primitives::v2::UpgradeRestriction1436 **/1436 **/1437 PolkadotPrimitivesV2UpgradeRestriction: {1437 PolkadotPrimitivesV2UpgradeRestriction: {1438 _enum: ['Present']1438 _enum: ['Present']1439 },1439 },1440 /**1440 /**1441 * Lookup149: sp_trie::storage_proof::StorageProof1441 * Lookup150: sp_trie::storage_proof::StorageProof1442 **/1442 **/1443 SpTrieStorageProof: {1443 SpTrieStorageProof: {1444 trieNodes: 'BTreeSet<Bytes>'1444 trieNodes: 'BTreeSet<Bytes>'1445 },1445 },1446 /**1446 /**1447 * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1447 * Lookup152: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1448 **/1448 **/1449 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1449 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1450 dmqMqcHead: 'H256',1450 dmqMqcHead: 'H256',1451 relayDispatchQueueSize: '(u32,u32)',1451 relayDispatchQueueSize: '(u32,u32)',1452 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1452 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1453 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1453 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1454 },1454 },1455 /**1455 /**1456 * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel1456 * Lookup155: polkadot_primitives::v2::AbridgedHrmpChannel1457 **/1457 **/1458 PolkadotPrimitivesV2AbridgedHrmpChannel: {1458 PolkadotPrimitivesV2AbridgedHrmpChannel: {1459 maxCapacity: 'u32',1459 maxCapacity: 'u32',1460 maxTotalSize: 'u32',1460 maxTotalSize: 'u32',1463 totalSize: 'u32',1463 totalSize: 'u32',1464 mqcHead: 'Option<H256>'1464 mqcHead: 'Option<H256>'1465 },1465 },1466 /**1466 /**1467 * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration1467 * Lookup156: polkadot_primitives::v2::AbridgedHostConfiguration1468 **/1468 **/1469 PolkadotPrimitivesV2AbridgedHostConfiguration: {1469 PolkadotPrimitivesV2AbridgedHostConfiguration: {1470 maxCodeSize: 'u32',1470 maxCodeSize: 'u32',1471 maxHeadDataSize: 'u32',1471 maxHeadDataSize: 'u32',1477 validationUpgradeCooldown: 'u32',1477 validationUpgradeCooldown: 'u32',1478 validationUpgradeDelay: 'u32'1478 validationUpgradeDelay: 'u32'1479 },1479 },1480 /**1480 /**1481 * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1481 * Lookup162: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1482 **/1482 **/1483 PolkadotCorePrimitivesOutboundHrmpMessage: {1483 PolkadotCorePrimitivesOutboundHrmpMessage: {1484 recipient: 'u32',1484 recipient: 'u32',1485 data: 'Bytes'1485 data: 'Bytes'1486 },1486 },1487 /**1487 /**1488 * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>1488 * Lookup163: cumulus_pallet_parachain_system::pallet::Call<T>1489 **/1489 **/1490 CumulusPalletParachainSystemCall: {1490 CumulusPalletParachainSystemCall: {1491 _enum: {1491 _enum: {1492 set_validation_data: {1492 set_validation_data: {1503 }1503 }1504 }1504 }1505 },1505 },1506 /**1506 /**1507 * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData1507 * Lookup164: cumulus_primitives_parachain_inherent::ParachainInherentData1508 **/1508 **/1509 CumulusPrimitivesParachainInherentParachainInherentData: {1509 CumulusPrimitivesParachainInherentParachainInherentData: {1510 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1510 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1511 relayChainState: 'SpTrieStorageProof',1511 relayChainState: 'SpTrieStorageProof',1512 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1512 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1513 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1513 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1514 },1514 },1515 /**1515 /**1516 * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1516 * Lookup166: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1517 **/1517 **/1518 PolkadotCorePrimitivesInboundDownwardMessage: {1518 PolkadotCorePrimitivesInboundDownwardMessage: {1519 sentAt: 'u32',1519 sentAt: 'u32',1520 msg: 'Bytes'1520 msg: 'Bytes'1521 },1521 },1522 /**1522 /**1523 * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1523 * Lookup169: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1524 **/1524 **/1525 PolkadotCorePrimitivesInboundHrmpMessage: {1525 PolkadotCorePrimitivesInboundHrmpMessage: {1526 sentAt: 'u32',1526 sentAt: 'u32',1527 data: 'Bytes'1527 data: 'Bytes'1528 },1528 },1529 /**1529 /**1530 * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>1530 * Lookup172: cumulus_pallet_parachain_system::pallet::Error<T>1531 **/1531 **/1532 CumulusPalletParachainSystemError: {1532 CumulusPalletParachainSystemError: {1533 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1533 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1534 },1534 },1535 /**1535 /**1536 * Lookup173: pallet_balances::BalanceLock<Balance>1536 * Lookup174: pallet_balances::BalanceLock<Balance>1537 **/1537 **/1538 PalletBalancesBalanceLock: {1538 PalletBalancesBalanceLock: {1539 id: '[u8;8]',1539 id: '[u8;8]',1540 amount: 'u128',1540 amount: 'u128',1541 reasons: 'PalletBalancesReasons'1541 reasons: 'PalletBalancesReasons'1542 },1542 },1543 /**1543 /**1544 * Lookup174: pallet_balances::Reasons1544 * Lookup175: pallet_balances::Reasons1545 **/1545 **/1546 PalletBalancesReasons: {1546 PalletBalancesReasons: {1547 _enum: ['Fee', 'Misc', 'All']1547 _enum: ['Fee', 'Misc', 'All']1548 },1548 },1549 /**1549 /**1550 * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>1550 * Lookup178: pallet_balances::ReserveData<ReserveIdentifier, Balance>1551 **/1551 **/1552 PalletBalancesReserveData: {1552 PalletBalancesReserveData: {1553 id: '[u8;16]',1553 id: '[u8;16]',1554 amount: 'u128'1554 amount: 'u128'1555 },1555 },1556 /**1556 /**1557 * Lookup179: pallet_balances::Releases1557 * Lookup180: pallet_balances::Releases1558 **/1558 **/1559 PalletBalancesReleases: {1559 PalletBalancesReleases: {1560 _enum: ['V1_0_0', 'V2_0_0']1560 _enum: ['V1_0_0', 'V2_0_0']1561 },1561 },1562 /**1562 /**1563 * Lookup180: pallet_balances::pallet::Call<T, I>1563 * Lookup181: pallet_balances::pallet::Call<T, I>1564 **/1564 **/1565 PalletBalancesCall: {1565 PalletBalancesCall: {1566 _enum: {1566 _enum: {1567 transfer: {1567 transfer: {1592 }1592 }1593 }1593 }1594 },1594 },1595 /**1595 /**1596 * Lookup183: pallet_balances::pallet::Error<T, I>1596 * Lookup184: pallet_balances::pallet::Error<T, I>1597 **/1597 **/1598 PalletBalancesError: {1598 PalletBalancesError: {1599 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1599 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1600 },1600 },1601 /**1601 /**1602 * Lookup185: pallet_timestamp::pallet::Call<T>1602 * Lookup186: pallet_timestamp::pallet::Call<T>1603 **/1603 **/1604 PalletTimestampCall: {1604 PalletTimestampCall: {1605 _enum: {1605 _enum: {1606 set: {1606 set: {1607 now: 'Compact<u64>'1607 now: 'Compact<u64>'1608 }1608 }1609 }1609 }1610 },1610 },1611 /**1611 /**1612 * Lookup187: pallet_transaction_payment::Releases1612 * Lookup188: pallet_transaction_payment::Releases1613 **/1613 **/1614 PalletTransactionPaymentReleases: {1614 PalletTransactionPaymentReleases: {1615 _enum: ['V1Ancient', 'V2']1615 _enum: ['V1Ancient', 'V2']1616 },1616 },1617 /**1617 /**1618 * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1618 * Lookup189: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1619 **/1619 **/1620 PalletTreasuryProposal: {1620 PalletTreasuryProposal: {1621 proposer: 'AccountId32',1621 proposer: 'AccountId32',1622 value: 'u128',1622 value: 'u128',1623 beneficiary: 'AccountId32',1623 beneficiary: 'AccountId32',1624 bond: 'u128'1624 bond: 'u128'1625 },1625 },1626 /**1626 /**1627 * Lookup191: pallet_treasury::pallet::Call<T, I>1627 * Lookup192: pallet_treasury::pallet::Call<T, I>1628 **/1628 **/1629 PalletTreasuryCall: {1629 PalletTreasuryCall: {1630 _enum: {1630 _enum: {1631 propose_spend: {1631 propose_spend: {1647 }1647 }1648 }1648 }1649 },1649 },1650 /**1650 /**1651 * Lookup194: frame_support::PalletId1651 * Lookup195: frame_support::PalletId1652 **/1652 **/1653 FrameSupportPalletId: '[u8;8]',1653 FrameSupportPalletId: '[u8;8]',1654 /**1654 /**1655 * Lookup195: pallet_treasury::pallet::Error<T, I>1655 * Lookup196: pallet_treasury::pallet::Error<T, I>1656 **/1656 **/1657 PalletTreasuryError: {1657 PalletTreasuryError: {1658 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1658 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1659 },1659 },1660 /**1660 /**1661 * Lookup196: pallet_sudo::pallet::Call<T>1661 * Lookup197: pallet_sudo::pallet::Call<T>1662 **/1662 **/1663 PalletSudoCall: {1663 PalletSudoCall: {1664 _enum: {1664 _enum: {1665 sudo: {1665 sudo: {1666 call: 'Call',1666 call: 'Call',1667 },1667 },1668 sudo_unchecked_weight: {1668 sudo_unchecked_weight: {1669 call: 'Call',1669 call: 'Call',1670 weight: 'u64',1670 weight: 'Weight',1671 },1671 },1672 set_key: {1672 set_key: {1673 _alias: {1673 _alias: {1681 }1681 }1682 }1682 }1683 },1683 },1684 /**1684 /**1685 * Lookup198: orml_vesting::module::Call<T>1685 * Lookup199: orml_vesting::module::Call<T>1686 **/1686 **/1687 OrmlVestingModuleCall: {1687 OrmlVestingModuleCall: {1688 _enum: {1688 _enum: {1689 claim: 'Null',1689 claim: 'Null',1700 }1700 }1701 }1701 }1702 },1702 },1703 /**1703 /**1704 * Lookup200: orml_xtokens::module::Call<T>1704 * Lookup201: orml_xtokens::module::Call<T>1705 **/1705 **/1706 OrmlXtokensModuleCall: {1706 OrmlXtokensModuleCall: {1707 _enum: {1707 _enum: {1708 transfer: {1708 transfer: {1743 }1743 }1744 }1744 }1745 },1745 },1746 /**1746 /**1747 * Lookup201: xcm::VersionedMultiAsset1747 * Lookup202: xcm::VersionedMultiAsset1748 **/1748 **/1749 XcmVersionedMultiAsset: {1749 XcmVersionedMultiAsset: {1750 _enum: {1750 _enum: {1751 V0: 'XcmV0MultiAsset',1751 V0: 'XcmV0MultiAsset',1752 V1: 'XcmV1MultiAsset'1752 V1: 'XcmV1MultiAsset'1753 }1753 }1754 },1754 },1755 /**1755 /**1756 * Lookup204: orml_tokens::module::Call<T>1756 * Lookup205: orml_tokens::module::Call<T>1757 **/1757 **/1758 OrmlTokensModuleCall: {1758 OrmlTokensModuleCall: {1759 _enum: {1759 _enum: {1760 transfer: {1760 transfer: {1786 }1786 }1787 }1787 }1788 },1788 },1789 /**1789 /**1790 * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>1790 * Lookup206: cumulus_pallet_xcmp_queue::pallet::Call<T>1791 **/1791 **/1792 CumulusPalletXcmpQueueCall: {1792 CumulusPalletXcmpQueueCall: {1793 _enum: {1793 _enum: {1794 service_overweight: {1794 service_overweight: {1795 index: 'u64',1795 index: 'u64',1796 weightLimit: 'u64',1796 weightLimit: 'Weight',1797 },1797 },1798 suspend_xcm_execution: 'Null',1798 suspend_xcm_execution: 'Null',1799 resume_xcm_execution: 'Null',1799 resume_xcm_execution: 'Null',1819 _alias: {1819 _alias: {1820 new_: 'new',1820 new_: 'new',1821 },1821 },1822 new_: 'u64',1822 new_: 'Weight',1823 },1823 },1824 update_weight_restrict_decay: {1824 update_weight_restrict_decay: {1825 _alias: {1825 _alias: {1826 new_: 'new',1826 new_: 'new',1827 },1827 },1828 new_: 'u64',1828 new_: 'Weight',1829 },1829 },1830 update_xcmp_max_individual_weight: {1830 update_xcmp_max_individual_weight: {1831 _alias: {1831 _alias: {1832 new_: 'new',1832 new_: 'new',1833 },1833 },1834 new_: 'u64'1834 new_: 'Weight'1835 }1835 }1836 }1836 }1837 },1837 },1838 /**1838 /**1839 * Lookup206: pallet_xcm::pallet::Call<T>1839 * Lookup207: pallet_xcm::pallet::Call<T>1840 **/1840 **/1841 PalletXcmCall: {1841 PalletXcmCall: {1842 _enum: {1842 _enum: {1843 send: {1843 send: {1858 },1858 },1859 execute: {1859 execute: {1860 message: 'XcmVersionedXcm',1860 message: 'XcmVersionedXcm',1861 maxWeight: 'u64',1861 maxWeight: 'Weight',1862 },1862 },1863 force_xcm_version: {1863 force_xcm_version: {1864 location: 'XcmV1MultiLocation',1864 location: 'XcmV1MultiLocation',1889 }1889 }1890 }1890 }1891 },1891 },1892 /**1892 /**1893 * Lookup207: xcm::VersionedXcm<Call>1893 * Lookup208: xcm::VersionedXcm<Call>1894 **/1894 **/1895 XcmVersionedXcm: {1895 XcmVersionedXcm: {1896 _enum: {1896 _enum: {1897 V0: 'XcmV0Xcm',1897 V0: 'XcmV0Xcm',1898 V1: 'XcmV1Xcm',1898 V1: 'XcmV1Xcm',1899 V2: 'XcmV2Xcm'1899 V2: 'XcmV2Xcm'1900 }1900 }1901 },1901 },1902 /**1902 /**1903 * Lookup208: xcm::v0::Xcm<Call>1903 * Lookup209: xcm::v0::Xcm<Call>1904 **/1904 **/1905 XcmV0Xcm: {1905 XcmV0Xcm: {1906 _enum: {1906 _enum: {1907 WithdrawAsset: {1907 WithdrawAsset: {1953 }1953 }1954 }1954 }1955 },1955 },1956 /**1956 /**1957 * Lookup210: xcm::v0::order::Order<Call>1957 * Lookup211: xcm::v0::order::Order<Call>1958 **/1958 **/1959 XcmV0Order: {1959 XcmV0Order: {1960 _enum: {1960 _enum: {1961 Null: 'Null',1961 Null: 'Null',1996 }1996 }1997 }1997 }1998 },1998 },1999 /**1999 /**2000 * Lookup212: xcm::v0::Response2000 * Lookup213: xcm::v0::Response2001 **/2001 **/2002 XcmV0Response: {2002 XcmV0Response: {2003 _enum: {2003 _enum: {2004 Assets: 'Vec<XcmV0MultiAsset>'2004 Assets: 'Vec<XcmV0MultiAsset>'2005 }2005 }2006 },2006 },2007 /**2007 /**2008 * Lookup213: xcm::v1::Xcm<Call>2008 * Lookup214: xcm::v1::Xcm<Call>2009 **/2009 **/2010 XcmV1Xcm: {2010 XcmV1Xcm: {2011 _enum: {2011 _enum: {2012 WithdrawAsset: {2012 WithdrawAsset: {2063 UnsubscribeVersion: 'Null'2063 UnsubscribeVersion: 'Null'2064 }2064 }2065 },2065 },2066 /**2066 /**2067 * Lookup215: xcm::v1::order::Order<Call>2067 * Lookup216: xcm::v1::order::Order<Call>2068 **/2068 **/2069 XcmV1Order: {2069 XcmV1Order: {2070 _enum: {2070 _enum: {2071 Noop: 'Null',2071 Noop: 'Null',2108 }2108 }2109 }2109 }2110 },2110 },2111 /**2111 /**2112 * Lookup217: xcm::v1::Response2112 * Lookup218: xcm::v1::Response2113 **/2113 **/2114 XcmV1Response: {2114 XcmV1Response: {2115 _enum: {2115 _enum: {2116 Assets: 'XcmV1MultiassetMultiAssets',2116 Assets: 'XcmV1MultiassetMultiAssets',2117 Version: 'u32'2117 Version: 'u32'2118 }2118 }2119 },2119 },2120 /**2120 /**2121 * Lookup231: cumulus_pallet_xcm::pallet::Call<T>2121 * Lookup232: cumulus_pallet_xcm::pallet::Call<T>2122 **/2122 **/2123 CumulusPalletXcmCall: 'Null',2123 CumulusPalletXcmCall: 'Null',2124 /**2124 /**2125 * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>2125 * Lookup233: cumulus_pallet_dmp_queue::pallet::Call<T>2126 **/2126 **/2127 CumulusPalletDmpQueueCall: {2127 CumulusPalletDmpQueueCall: {2128 _enum: {2128 _enum: {2129 service_overweight: {2129 service_overweight: {2130 index: 'u64',2130 index: 'u64',2131 weightLimit: 'u64'2131 weightLimit: 'Weight'2132 }2132 }2133 }2133 }2134 },2134 },2135 /**2135 /**2136 * Lookup233: pallet_inflation::pallet::Call<T>2136 * Lookup234: pallet_inflation::pallet::Call<T>2137 **/2137 **/2138 PalletInflationCall: {2138 PalletInflationCall: {2139 _enum: {2139 _enum: {2140 start_inflation: {2140 start_inflation: {2141 inflationStartRelayBlock: 'u32'2141 inflationStartRelayBlock: 'u32'2142 }2142 }2143 }2143 }2144 },2144 },2145 /**2145 /**2146 * Lookup234: pallet_unique::Call<T>2146 * Lookup235: pallet_unique::Call<T>2147 **/2147 **/2148 PalletUniqueCall: {2148 PalletUniqueCall: {2149 _enum: {2149 _enum: {2150 create_collection: {2150 create_collection: {2274 }2274 }2275 }2275 }2276 },2276 },2277 /**2277 /**2278 * Lookup239: up_data_structs::CollectionMode2278 * Lookup240: up_data_structs::CollectionMode2279 **/2279 **/2280 UpDataStructsCollectionMode: {2280 UpDataStructsCollectionMode: {2281 _enum: {2281 _enum: {2282 NFT: 'Null',2282 NFT: 'Null',2283 Fungible: 'u8',2283 Fungible: 'u8',2284 ReFungible: 'Null'2284 ReFungible: 'Null'2285 }2285 }2286 },2286 },2287 /**2287 /**2288 * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2288 * Lookup241: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2289 **/2289 **/2290 UpDataStructsCreateCollectionData: {2290 UpDataStructsCreateCollectionData: {2291 mode: 'UpDataStructsCollectionMode',2291 mode: 'UpDataStructsCollectionMode',2292 access: 'Option<UpDataStructsAccessMode>',2292 access: 'Option<UpDataStructsAccessMode>',2299 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2299 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2300 properties: 'Vec<UpDataStructsProperty>'2300 properties: 'Vec<UpDataStructsProperty>'2301 },2301 },2302 /**2302 /**2303 * Lookup242: up_data_structs::AccessMode2303 * Lookup243: up_data_structs::AccessMode2304 **/2304 **/2305 UpDataStructsAccessMode: {2305 UpDataStructsAccessMode: {2306 _enum: ['Normal', 'AllowList']2306 _enum: ['Normal', 'AllowList']2307 },2307 },2308 /**2308 /**2309 * Lookup244: up_data_structs::CollectionLimits2309 * Lookup245: up_data_structs::CollectionLimits2310 **/2310 **/2311 UpDataStructsCollectionLimits: {2311 UpDataStructsCollectionLimits: {2312 accountTokenOwnershipLimit: 'Option<u32>',2312 accountTokenOwnershipLimit: 'Option<u32>',2313 sponsoredDataSize: 'Option<u32>',2313 sponsoredDataSize: 'Option<u32>',2319 ownerCanDestroy: 'Option<bool>',2319 ownerCanDestroy: 'Option<bool>',2320 transfersEnabled: 'Option<bool>'2320 transfersEnabled: 'Option<bool>'2321 },2321 },2322 /**2322 /**2323 * Lookup246: up_data_structs::SponsoringRateLimit2323 * Lookup247: up_data_structs::SponsoringRateLimit2324 **/2324 **/2325 UpDataStructsSponsoringRateLimit: {2325 UpDataStructsSponsoringRateLimit: {2326 _enum: {2326 _enum: {2327 SponsoringDisabled: 'Null',2327 SponsoringDisabled: 'Null',2328 Blocks: 'u32'2328 Blocks: 'u32'2329 }2329 }2330 },2330 },2331 /**2331 /**2332 * Lookup249: up_data_structs::CollectionPermissions2332 * Lookup250: up_data_structs::CollectionPermissions2333 **/2333 **/2334 UpDataStructsCollectionPermissions: {2334 UpDataStructsCollectionPermissions: {2335 access: 'Option<UpDataStructsAccessMode>',2335 access: 'Option<UpDataStructsAccessMode>',2336 mintMode: 'Option<bool>',2336 mintMode: 'Option<bool>',2337 nesting: 'Option<UpDataStructsNestingPermissions>'2337 nesting: 'Option<UpDataStructsNestingPermissions>'2338 },2338 },2339 /**2339 /**2340 * Lookup251: up_data_structs::NestingPermissions2340 * Lookup252: up_data_structs::NestingPermissions2341 **/2341 **/2342 UpDataStructsNestingPermissions: {2342 UpDataStructsNestingPermissions: {2343 tokenOwner: 'bool',2343 tokenOwner: 'bool',2344 collectionAdmin: 'bool',2344 collectionAdmin: 'bool',2345 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2345 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2346 },2346 },2347 /**2347 /**2348 * Lookup253: up_data_structs::OwnerRestrictedSet2348 * Lookup254: up_data_structs::OwnerRestrictedSet2349 **/2349 **/2350 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2350 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2351 /**2351 /**2352 * Lookup258: up_data_structs::PropertyKeyPermission2352 * Lookup259: up_data_structs::PropertyKeyPermission2353 **/2353 **/2354 UpDataStructsPropertyKeyPermission: {2354 UpDataStructsPropertyKeyPermission: {2355 key: 'Bytes',2355 key: 'Bytes',2356 permission: 'UpDataStructsPropertyPermission'2356 permission: 'UpDataStructsPropertyPermission'2357 },2357 },2358 /**2358 /**2359 * Lookup259: up_data_structs::PropertyPermission2359 * Lookup260: up_data_structs::PropertyPermission2360 **/2360 **/2361 UpDataStructsPropertyPermission: {2361 UpDataStructsPropertyPermission: {2362 mutable: 'bool',2362 mutable: 'bool',2363 collectionAdmin: 'bool',2363 collectionAdmin: 'bool',2364 tokenOwner: 'bool'2364 tokenOwner: 'bool'2365 },2365 },2366 /**2366 /**2367 * Lookup262: up_data_structs::Property2367 * Lookup263: up_data_structs::Property2368 **/2368 **/2369 UpDataStructsProperty: {2369 UpDataStructsProperty: {2370 key: 'Bytes',2370 key: 'Bytes',2371 value: 'Bytes'2371 value: 'Bytes'2372 },2372 },2373 /**2373 /**2374 * Lookup265: up_data_structs::CreateItemData2374 * Lookup266: up_data_structs::CreateItemData2375 **/2375 **/2376 UpDataStructsCreateItemData: {2376 UpDataStructsCreateItemData: {2377 _enum: {2377 _enum: {2378 NFT: 'UpDataStructsCreateNftData',2378 NFT: 'UpDataStructsCreateNftData',2379 Fungible: 'UpDataStructsCreateFungibleData',2379 Fungible: 'UpDataStructsCreateFungibleData',2380 ReFungible: 'UpDataStructsCreateReFungibleData'2380 ReFungible: 'UpDataStructsCreateReFungibleData'2381 }2381 }2382 },2382 },2383 /**2383 /**2384 * Lookup266: up_data_structs::CreateNftData2384 * Lookup267: up_data_structs::CreateNftData2385 **/2385 **/2386 UpDataStructsCreateNftData: {2386 UpDataStructsCreateNftData: {2387 properties: 'Vec<UpDataStructsProperty>'2387 properties: 'Vec<UpDataStructsProperty>'2388 },2388 },2389 /**2389 /**2390 * Lookup267: up_data_structs::CreateFungibleData2390 * Lookup268: up_data_structs::CreateFungibleData2391 **/2391 **/2392 UpDataStructsCreateFungibleData: {2392 UpDataStructsCreateFungibleData: {2393 value: 'u128'2393 value: 'u128'2394 },2394 },2395 /**2395 /**2396 * Lookup268: up_data_structs::CreateReFungibleData2396 * Lookup269: up_data_structs::CreateReFungibleData2397 **/2397 **/2398 UpDataStructsCreateReFungibleData: {2398 UpDataStructsCreateReFungibleData: {2399 pieces: 'u128',2399 pieces: 'u128',2400 properties: 'Vec<UpDataStructsProperty>'2400 properties: 'Vec<UpDataStructsProperty>'2401 },2401 },2402 /**2402 /**2403 * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2403 * Lookup272: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2404 **/2404 **/2405 UpDataStructsCreateItemExData: {2405 UpDataStructsCreateItemExData: {2406 _enum: {2406 _enum: {2407 NFT: 'Vec<UpDataStructsCreateNftExData>',2407 NFT: 'Vec<UpDataStructsCreateNftExData>',2410 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2410 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2411 }2411 }2412 },2412 },2413 /**2413 /**2414 * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2414 * Lookup274: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2415 **/2415 **/2416 UpDataStructsCreateNftExData: {2416 UpDataStructsCreateNftExData: {2417 properties: 'Vec<UpDataStructsProperty>',2417 properties: 'Vec<UpDataStructsProperty>',2418 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2418 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2419 },2419 },2420 /**2420 /**2421 * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2421 * Lookup281: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2422 **/2422 **/2423 UpDataStructsCreateRefungibleExSingleOwner: {2423 UpDataStructsCreateRefungibleExSingleOwner: {2424 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2424 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2425 pieces: 'u128',2425 pieces: 'u128',2426 properties: 'Vec<UpDataStructsProperty>'2426 properties: 'Vec<UpDataStructsProperty>'2427 },2427 },2428 /**2428 /**2429 * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2429 * Lookup283: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2430 **/2430 **/2431 UpDataStructsCreateRefungibleExMultipleOwners: {2431 UpDataStructsCreateRefungibleExMultipleOwners: {2432 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2432 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2433 properties: 'Vec<UpDataStructsProperty>'2433 properties: 'Vec<UpDataStructsProperty>'2434 },2434 },2435 /**2435 /**2436 * Lookup283: pallet_unique_scheduler::pallet::Call<T>2436 * Lookup284: pallet_unique_scheduler::pallet::Call<T>2437 **/2437 **/2438 PalletUniqueSchedulerCall: {2438 PalletUniqueSchedulerCall: {2439 _enum: {2439 _enum: {2440 schedule_named: {2440 schedule_named: {2456 }2456 }2457 }2457 }2458 },2458 },2459 /**2459 /**2460 * Lookup285: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>2460 * Lookup286: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>2461 **/2461 **/2462 FrameSupportScheduleMaybeHashed: {2462 FrameSupportScheduleMaybeHashed: {2463 _enum: {2463 _enum: {2464 Value: 'Call',2464 Value: 'Call',2465 Hash: 'H256'2465 Hash: 'H256'2466 }2466 }2467 },2467 },2468 /**2468 /**2469 * Lookup286: pallet_configuration::pallet::Call<T>2469 * Lookup287: pallet_configuration::pallet::Call<T>2470 **/2470 **/2471 PalletConfigurationCall: {2471 PalletConfigurationCall: {2472 _enum: {2472 _enum: {2473 set_weight_to_fee_coefficient_override: {2473 set_weight_to_fee_coefficient_override: {2478 }2478 }2479 }2479 }2480 },2480 },2481 /**2481 /**2482 * Lookup287: pallet_template_transaction_payment::Call<T>2482 * Lookup289: pallet_template_transaction_payment::Call<T>2483 **/2483 **/2484 PalletTemplateTransactionPaymentCall: 'Null',2484 PalletTemplateTransactionPaymentCall: 'Null',2485 /**2485 /**2486 * Lookup288: pallet_structure::pallet::Call<T>2486 * Lookup290: pallet_structure::pallet::Call<T>2487 **/2487 **/2488 PalletStructureCall: 'Null',2488 PalletStructureCall: 'Null',2489 /**2489 /**2490 * Lookup289: pallet_rmrk_core::pallet::Call<T>2490 * Lookup291: pallet_rmrk_core::pallet::Call<T>2491 **/2491 **/2492 PalletRmrkCoreCall: {2492 PalletRmrkCoreCall: {2493 _enum: {2493 _enum: {2494 create_collection: {2494 create_collection: {2577 }2577 }2578 }2578 }2579 },2579 },2580 /**2580 /**2581 * Lookup295: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2581 * Lookup297: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2582 **/2582 **/2583 RmrkTraitsResourceResourceTypes: {2583 RmrkTraitsResourceResourceTypes: {2584 _enum: {2584 _enum: {2585 Basic: 'RmrkTraitsResourceBasicResource',2585 Basic: 'RmrkTraitsResourceBasicResource',2586 Composable: 'RmrkTraitsResourceComposableResource',2586 Composable: 'RmrkTraitsResourceComposableResource',2587 Slot: 'RmrkTraitsResourceSlotResource'2587 Slot: 'RmrkTraitsResourceSlotResource'2588 }2588 }2589 },2589 },2590 /**2590 /**2591 * Lookup297: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2591 * Lookup299: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2592 **/2592 **/2593 RmrkTraitsResourceBasicResource: {2593 RmrkTraitsResourceBasicResource: {2594 src: 'Option<Bytes>',2594 src: 'Option<Bytes>',2595 metadata: 'Option<Bytes>',2595 metadata: 'Option<Bytes>',2596 license: 'Option<Bytes>',2596 license: 'Option<Bytes>',2597 thumb: 'Option<Bytes>'2597 thumb: 'Option<Bytes>'2598 },2598 },2599 /**2599 /**2600 * Lookup299: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2600 * Lookup301: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2601 **/2601 **/2602 RmrkTraitsResourceComposableResource: {2602 RmrkTraitsResourceComposableResource: {2603 parts: 'Vec<u32>',2603 parts: 'Vec<u32>',2604 base: 'u32',2604 base: 'u32',2607 license: 'Option<Bytes>',2607 license: 'Option<Bytes>',2608 thumb: 'Option<Bytes>'2608 thumb: 'Option<Bytes>'2609 },2609 },2610 /**2610 /**2611 * Lookup300: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2611 * Lookup302: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2612 **/2612 **/2613 RmrkTraitsResourceSlotResource: {2613 RmrkTraitsResourceSlotResource: {2614 base: 'u32',2614 base: 'u32',2615 src: 'Option<Bytes>',2615 src: 'Option<Bytes>',2618 license: 'Option<Bytes>',2618 license: 'Option<Bytes>',2619 thumb: 'Option<Bytes>'2619 thumb: 'Option<Bytes>'2620 },2620 },2621 /**2621 /**2622 * Lookup303: pallet_rmrk_equip::pallet::Call<T>2622 * Lookup305: pallet_rmrk_equip::pallet::Call<T>2623 **/2623 **/2624 PalletRmrkEquipCall: {2624 PalletRmrkEquipCall: {2625 _enum: {2625 _enum: {2626 create_base: {2626 create_base: {2639 }2639 }2640 }2640 }2641 },2641 },2642 /**2642 /**2643 * Lookup306: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2643 * Lookup308: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2644 **/2644 **/2645 RmrkTraitsPartPartType: {2645 RmrkTraitsPartPartType: {2646 _enum: {2646 _enum: {2647 FixedPart: 'RmrkTraitsPartFixedPart',2647 FixedPart: 'RmrkTraitsPartFixedPart',2648 SlotPart: 'RmrkTraitsPartSlotPart'2648 SlotPart: 'RmrkTraitsPartSlotPart'2649 }2649 }2650 },2650 },2651 /**2651 /**2652 * Lookup308: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2652 * Lookup310: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2653 **/2653 **/2654 RmrkTraitsPartFixedPart: {2654 RmrkTraitsPartFixedPart: {2655 id: 'u32',2655 id: 'u32',2656 z: 'u32',2656 z: 'u32',2657 src: 'Bytes'2657 src: 'Bytes'2658 },2658 },2659 /**2659 /**2660 * Lookup309: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2660 * Lookup311: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2661 **/2661 **/2662 RmrkTraitsPartSlotPart: {2662 RmrkTraitsPartSlotPart: {2663 id: 'u32',2663 id: 'u32',2664 equippable: 'RmrkTraitsPartEquippableList',2664 equippable: 'RmrkTraitsPartEquippableList',2665 src: 'Bytes',2665 src: 'Bytes',2666 z: 'u32'2666 z: 'u32'2667 },2667 },2668 /**2668 /**2669 * Lookup310: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2669 * Lookup312: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2670 **/2670 **/2671 RmrkTraitsPartEquippableList: {2671 RmrkTraitsPartEquippableList: {2672 _enum: {2672 _enum: {2673 All: 'Null',2673 All: 'Null',2674 Empty: 'Null',2674 Empty: 'Null',2675 Custom: 'Vec<u32>'2675 Custom: 'Vec<u32>'2676 }2676 }2677 },2677 },2678 /**2678 /**2679 * Lookup312: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>2679 * Lookup314: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>2680 **/2680 **/2681 RmrkTraitsTheme: {2681 RmrkTraitsTheme: {2682 name: 'Bytes',2682 name: 'Bytes',2683 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2683 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2684 inherit: 'bool'2684 inherit: 'bool'2685 },2685 },2686 /**2686 /**2687 * Lookup314: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2687 * Lookup316: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2688 **/2688 **/2689 RmrkTraitsThemeThemeProperty: {2689 RmrkTraitsThemeThemeProperty: {2690 key: 'Bytes',2690 key: 'Bytes',2691 value: 'Bytes'2691 value: 'Bytes'2692 },2692 },2693 /**2693 /**2694 * Lookup316: pallet_app_promotion::pallet::Call<T>2694 * Lookup318: pallet_app_promotion::pallet::Call<T>2695 **/2695 **/2696 PalletAppPromotionCall: {2696 PalletAppPromotionCall: {2697 _enum: {2697 _enum: {2698 set_admin_address: {2698 set_admin_address: {2719 }2719 }2720 }2720 }2721 },2721 },2722 /**2722 /**2723 * Lookup318: pallet_foreign_assets::module::Call<T>2723 * Lookup320: pallet_foreign_assets::module::Call<T>2724 **/2724 **/2725 PalletForeignAssetsModuleCall: {2725 PalletForeignAssetsModuleCall: {2726 _enum: {2726 _enum: {2727 register_foreign_asset: {2727 register_foreign_asset: {2736 }2736 }2737 }2737 }2738 },2738 },2739 /**2739 /**2740 * Lookup319: pallet_evm::pallet::Call<T>2740 * Lookup321: pallet_evm::pallet::Call<T>2741 **/2741 **/2742 PalletEvmCall: {2742 PalletEvmCall: {2743 _enum: {2743 _enum: {2744 withdraw: {2744 withdraw: {2779 }2779 }2780 }2780 }2781 },2781 },2782 /**2782 /**2783 * Lookup323: pallet_ethereum::pallet::Call<T>2783 * Lookup325: pallet_ethereum::pallet::Call<T>2784 **/2784 **/2785 PalletEthereumCall: {2785 PalletEthereumCall: {2786 _enum: {2786 _enum: {2787 transact: {2787 transact: {2788 transaction: 'EthereumTransactionTransactionV2'2788 transaction: 'EthereumTransactionTransactionV2'2789 }2789 }2790 }2790 }2791 },2791 },2792 /**2792 /**2793 * Lookup324: ethereum::transaction::TransactionV22793 * Lookup326: ethereum::transaction::TransactionV22794 **/2794 **/2795 EthereumTransactionTransactionV2: {2795 EthereumTransactionTransactionV2: {2796 _enum: {2796 _enum: {2797 Legacy: 'EthereumTransactionLegacyTransaction',2797 Legacy: 'EthereumTransactionLegacyTransaction',2798 EIP2930: 'EthereumTransactionEip2930Transaction',2798 EIP2930: 'EthereumTransactionEip2930Transaction',2799 EIP1559: 'EthereumTransactionEip1559Transaction'2799 EIP1559: 'EthereumTransactionEip1559Transaction'2800 }2800 }2801 },2801 },2802 /**2802 /**2803 * Lookup325: ethereum::transaction::LegacyTransaction2803 * Lookup327: ethereum::transaction::LegacyTransaction2804 **/2804 **/2805 EthereumTransactionLegacyTransaction: {2805 EthereumTransactionLegacyTransaction: {2806 nonce: 'U256',2806 nonce: 'U256',2807 gasPrice: 'U256',2807 gasPrice: 'U256',2811 input: 'Bytes',2811 input: 'Bytes',2812 signature: 'EthereumTransactionTransactionSignature'2812 signature: 'EthereumTransactionTransactionSignature'2813 },2813 },2814 /**2814 /**2815 * Lookup326: ethereum::transaction::TransactionAction2815 * Lookup328: ethereum::transaction::TransactionAction2816 **/2816 **/2817 EthereumTransactionTransactionAction: {2817 EthereumTransactionTransactionAction: {2818 _enum: {2818 _enum: {2819 Call: 'H160',2819 Call: 'H160',2820 Create: 'Null'2820 Create: 'Null'2821 }2821 }2822 },2822 },2823 /**2823 /**2824 * Lookup327: ethereum::transaction::TransactionSignature2824 * Lookup329: ethereum::transaction::TransactionSignature2825 **/2825 **/2826 EthereumTransactionTransactionSignature: {2826 EthereumTransactionTransactionSignature: {2827 v: 'u64',2827 v: 'u64',2828 r: 'H256',2828 r: 'H256',2829 s: 'H256'2829 s: 'H256'2830 },2830 },2831 /**2831 /**2832 * Lookup329: ethereum::transaction::EIP2930Transaction2832 * Lookup331: ethereum::transaction::EIP2930Transaction2833 **/2833 **/2834 EthereumTransactionEip2930Transaction: {2834 EthereumTransactionEip2930Transaction: {2835 chainId: 'u64',2835 chainId: 'u64',2836 nonce: 'U256',2836 nonce: 'U256',2844 r: 'H256',2844 r: 'H256',2845 s: 'H256'2845 s: 'H256'2846 },2846 },2847 /**2847 /**2848 * Lookup331: ethereum::transaction::AccessListItem2848 * Lookup333: ethereum::transaction::AccessListItem2849 **/2849 **/2850 EthereumTransactionAccessListItem: {2850 EthereumTransactionAccessListItem: {2851 address: 'H160',2851 address: 'H160',2852 storageKeys: 'Vec<H256>'2852 storageKeys: 'Vec<H256>'2853 },2853 },2854 /**2854 /**2855 * Lookup332: ethereum::transaction::EIP1559Transaction2855 * Lookup334: ethereum::transaction::EIP1559Transaction2856 **/2856 **/2857 EthereumTransactionEip1559Transaction: {2857 EthereumTransactionEip1559Transaction: {2858 chainId: 'u64',2858 chainId: 'u64',2859 nonce: 'U256',2859 nonce: 'U256',2868 r: 'H256',2868 r: 'H256',2869 s: 'H256'2869 s: 'H256'2870 },2870 },2871 /**2871 /**2872 * Lookup333: pallet_evm_migration::pallet::Call<T>2872 * Lookup335: pallet_evm_migration::pallet::Call<T>2873 **/2873 **/2874 PalletEvmMigrationCall: {2874 PalletEvmMigrationCall: {2875 _enum: {2875 _enum: {2876 begin: {2876 begin: {2886 }2886 }2887 }2887 }2888 },2888 },2889 /**2889 /**2890 * Lookup336: pallet_sudo::pallet::Error<T>2890 * Lookup338: pallet_sudo::pallet::Error<T>2891 **/2891 **/2892 PalletSudoError: {2892 PalletSudoError: {2893 _enum: ['RequireSudo']2893 _enum: ['RequireSudo']2894 },2894 },2895 /**2895 /**2896 * Lookup338: orml_vesting::module::Error<T>2896 * Lookup340: orml_vesting::module::Error<T>2897 **/2897 **/2898 OrmlVestingModuleError: {2898 OrmlVestingModuleError: {2899 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2899 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2900 },2900 },2901 /**2901 /**2902 * Lookup339: orml_xtokens::module::Error<T>2902 * Lookup341: orml_xtokens::module::Error<T>2903 **/2903 **/2904 OrmlXtokensModuleError: {2904 OrmlXtokensModuleError: {2905 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2905 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2906 },2906 },2907 /**2907 /**2908 * Lookup342: orml_tokens::BalanceLock<Balance>2908 * Lookup344: orml_tokens::BalanceLock<Balance>2909 **/2909 **/2910 OrmlTokensBalanceLock: {2910 OrmlTokensBalanceLock: {2911 id: '[u8;8]',2911 id: '[u8;8]',2912 amount: 'u128'2912 amount: 'u128'2913 },2913 },2914 /**2914 /**2915 * Lookup344: orml_tokens::AccountData<Balance>2915 * Lookup346: orml_tokens::AccountData<Balance>2916 **/2916 **/2917 OrmlTokensAccountData: {2917 OrmlTokensAccountData: {2918 free: 'u128',2918 free: 'u128',2919 reserved: 'u128',2919 reserved: 'u128',2920 frozen: 'u128'2920 frozen: 'u128'2921 },2921 },2922 /**2922 /**2923 * Lookup346: orml_tokens::ReserveData<ReserveIdentifier, Balance>2923 * Lookup348: orml_tokens::ReserveData<ReserveIdentifier, Balance>2924 **/2924 **/2925 OrmlTokensReserveData: {2925 OrmlTokensReserveData: {2926 id: 'Null',2926 id: 'Null',2927 amount: 'u128'2927 amount: 'u128'2928 },2928 },2929 /**2929 /**2930 * Lookup348: orml_tokens::module::Error<T>2930 * Lookup350: orml_tokens::module::Error<T>2931 **/2931 **/2932 OrmlTokensModuleError: {2932 OrmlTokensModuleError: {2933 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2933 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2934 },2934 },2935 /**2935 /**2936 * Lookup350: cumulus_pallet_xcmp_queue::InboundChannelDetails2936 * Lookup352: cumulus_pallet_xcmp_queue::InboundChannelDetails2937 **/2937 **/2938 CumulusPalletXcmpQueueInboundChannelDetails: {2938 CumulusPalletXcmpQueueInboundChannelDetails: {2939 sender: 'u32',2939 sender: 'u32',2940 state: 'CumulusPalletXcmpQueueInboundState',2940 state: 'CumulusPalletXcmpQueueInboundState',2941 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2941 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2942 },2942 },2943 /**2943 /**2944 * Lookup351: cumulus_pallet_xcmp_queue::InboundState2944 * Lookup353: cumulus_pallet_xcmp_queue::InboundState2945 **/2945 **/2946 CumulusPalletXcmpQueueInboundState: {2946 CumulusPalletXcmpQueueInboundState: {2947 _enum: ['Ok', 'Suspended']2947 _enum: ['Ok', 'Suspended']2948 },2948 },2949 /**2949 /**2950 * Lookup354: polkadot_parachain::primitives::XcmpMessageFormat2950 * Lookup356: polkadot_parachain::primitives::XcmpMessageFormat2951 **/2951 **/2952 PolkadotParachainPrimitivesXcmpMessageFormat: {2952 PolkadotParachainPrimitivesXcmpMessageFormat: {2953 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2953 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2954 },2954 },2955 /**2955 /**2956 * Lookup357: cumulus_pallet_xcmp_queue::OutboundChannelDetails2956 * Lookup359: cumulus_pallet_xcmp_queue::OutboundChannelDetails2957 **/2957 **/2958 CumulusPalletXcmpQueueOutboundChannelDetails: {2958 CumulusPalletXcmpQueueOutboundChannelDetails: {2959 recipient: 'u32',2959 recipient: 'u32',2960 state: 'CumulusPalletXcmpQueueOutboundState',2960 state: 'CumulusPalletXcmpQueueOutboundState',2961 signalsExist: 'bool',2961 signalsExist: 'bool',2962 firstIndex: 'u16',2962 firstIndex: 'u16',2963 lastIndex: 'u16'2963 lastIndex: 'u16'2964 },2964 },2965 /**2965 /**2966 * Lookup358: cumulus_pallet_xcmp_queue::OutboundState2966 * Lookup360: cumulus_pallet_xcmp_queue::OutboundState2967 **/2967 **/2968 CumulusPalletXcmpQueueOutboundState: {2968 CumulusPalletXcmpQueueOutboundState: {2969 _enum: ['Ok', 'Suspended']2969 _enum: ['Ok', 'Suspended']2970 },2970 },2971 /**2971 /**2972 * Lookup360: cumulus_pallet_xcmp_queue::QueueConfigData2972 * Lookup362: cumulus_pallet_xcmp_queue::QueueConfigData2973 **/2973 **/2974 CumulusPalletXcmpQueueQueueConfigData: {2974 CumulusPalletXcmpQueueQueueConfigData: {2975 suspendThreshold: 'u32',2975 suspendThreshold: 'u32',2976 dropThreshold: 'u32',2976 dropThreshold: 'u32',2977 resumeThreshold: 'u32',2977 resumeThreshold: 'u32',2978 thresholdWeight: 'u64',2978 thresholdWeight: 'Weight',2979 weightRestrictDecay: 'u64',2979 weightRestrictDecay: 'Weight',2980 xcmpMaxIndividualWeight: 'u64'2980 xcmpMaxIndividualWeight: 'Weight'2981 },2981 },2982 /**2982 /**2983 * Lookup362: cumulus_pallet_xcmp_queue::pallet::Error<T>2983 * Lookup364: cumulus_pallet_xcmp_queue::pallet::Error<T>2984 **/2984 **/2985 CumulusPalletXcmpQueueError: {2985 CumulusPalletXcmpQueueError: {2986 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2986 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2987 },2987 },2988 /**2988 /**2989 * Lookup363: pallet_xcm::pallet::Error<T>2989 * Lookup365: pallet_xcm::pallet::Error<T>2990 **/2990 **/2991 PalletXcmError: {2991 PalletXcmError: {2992 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2992 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2993 },2993 },2994 /**2994 /**2995 * Lookup364: cumulus_pallet_xcm::pallet::Error<T>2995 * Lookup366: cumulus_pallet_xcm::pallet::Error<T>2996 **/2996 **/2997 CumulusPalletXcmError: 'Null',2997 CumulusPalletXcmError: 'Null',2998 /**2998 /**2999 * Lookup365: cumulus_pallet_dmp_queue::ConfigData2999 * Lookup367: cumulus_pallet_dmp_queue::ConfigData3000 **/3000 **/3001 CumulusPalletDmpQueueConfigData: {3001 CumulusPalletDmpQueueConfigData: {3002 maxIndividual: 'u64'3002 maxIndividual: 'Weight'3003 },3003 },3004 /**3004 /**3005 * Lookup366: cumulus_pallet_dmp_queue::PageIndexData3005 * Lookup368: cumulus_pallet_dmp_queue::PageIndexData3006 **/3006 **/3007 CumulusPalletDmpQueuePageIndexData: {3007 CumulusPalletDmpQueuePageIndexData: {3008 beginUsed: 'u32',3008 beginUsed: 'u32',3009 endUsed: 'u32',3009 endUsed: 'u32',3010 overweightCount: 'u64'3010 overweightCount: 'u64'3011 },3011 },3012 /**3012 /**3013 * Lookup369: cumulus_pallet_dmp_queue::pallet::Error<T>3013 * Lookup371: cumulus_pallet_dmp_queue::pallet::Error<T>3014 **/3014 **/3015 CumulusPalletDmpQueueError: {3015 CumulusPalletDmpQueueError: {3016 _enum: ['Unknown', 'OverLimit']3016 _enum: ['Unknown', 'OverLimit']3017 },3017 },3018 /**3018 /**3019 * Lookup373: pallet_unique::Error<T>3019 * Lookup375: pallet_unique::Error<T>3020 **/3020 **/3021 PalletUniqueError: {3021 PalletUniqueError: {3022 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3022 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3023 },3023 },3024 /**3024 /**3025 * Lookup376: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3025 * Lookup378: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3026 **/3026 **/3027 PalletUniqueSchedulerScheduledV3: {3027 PalletUniqueSchedulerScheduledV3: {3028 maybeId: 'Option<[u8;16]>',3028 maybeId: 'Option<[u8;16]>',3029 priority: 'u8',3029 priority: 'u8',3030 call: 'FrameSupportScheduleMaybeHashed',3030 call: 'FrameSupportScheduleMaybeHashed',3031 maybePeriodic: 'Option<(u32,u32)>',3031 maybePeriodic: 'Option<(u32,u32)>',3032 origin: 'OpalRuntimeOriginCaller'3032 origin: 'OpalRuntimeOriginCaller'3033 },3033 },3034 /**3034 /**3035 * Lookup377: opal_runtime::OriginCaller3035 * Lookup379: opal_runtime::OriginCaller3036 **/3036 **/3037 OpalRuntimeOriginCaller: {3037 OpalRuntimeOriginCaller: {3038 _enum: {3038 _enum: {3039 system: 'FrameSupportDispatchRawOrigin',3039 system: 'FrameSupportDispatchRawOrigin',3140 Ethereum: 'PalletEthereumRawOrigin'3140 Ethereum: 'PalletEthereumRawOrigin'3141 }3141 }3142 },3142 },3143 /**3143 /**3144 * Lookup378: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3144 * Lookup380: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3145 **/3145 **/3146 FrameSupportDispatchRawOrigin: {3146 FrameSupportDispatchRawOrigin: {3147 _enum: {3147 _enum: {3148 Root: 'Null',3148 Root: 'Null',3149 Signed: 'AccountId32',3149 Signed: 'AccountId32',3150 None: 'Null'3150 None: 'Null'3151 }3151 }3152 },3152 },3153 /**3153 /**3154 * Lookup379: pallet_xcm::pallet::Origin3154 * Lookup381: pallet_xcm::pallet::Origin3155 **/3155 **/3156 PalletXcmOrigin: {3156 PalletXcmOrigin: {3157 _enum: {3157 _enum: {3158 Xcm: 'XcmV1MultiLocation',3158 Xcm: 'XcmV1MultiLocation',3159 Response: 'XcmV1MultiLocation'3159 Response: 'XcmV1MultiLocation'3160 }3160 }3161 },3161 },3162 /**3162 /**3163 * Lookup380: cumulus_pallet_xcm::pallet::Origin3163 * Lookup382: cumulus_pallet_xcm::pallet::Origin3164 **/3164 **/3165 CumulusPalletXcmOrigin: {3165 CumulusPalletXcmOrigin: {3166 _enum: {3166 _enum: {3167 Relay: 'Null',3167 Relay: 'Null',3168 SiblingParachain: 'u32'3168 SiblingParachain: 'u32'3169 }3169 }3170 },3170 },3171 /**3171 /**3172 * Lookup381: pallet_ethereum::RawOrigin3172 * Lookup383: pallet_ethereum::RawOrigin3173 **/3173 **/3174 PalletEthereumRawOrigin: {3174 PalletEthereumRawOrigin: {3175 _enum: {3175 _enum: {3176 EthereumTransaction: 'H160'3176 EthereumTransaction: 'H160'3177 }3177 }3178 },3178 },3179 /**3179 /**3180 * Lookup382: sp_core::Void3180 * Lookup384: sp_core::Void3181 **/3181 **/3182 SpCoreVoid: 'Null',3182 SpCoreVoid: 'Null',3183 /**3183 /**3184 * Lookup383: pallet_unique_scheduler::pallet::Error<T>3184 * Lookup385: pallet_unique_scheduler::pallet::Error<T>3185 **/3185 **/3186 PalletUniqueSchedulerError: {3186 PalletUniqueSchedulerError: {3187 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']3187 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']3188 },3188 },3189 /**3189 /**3190 * Lookup384: up_data_structs::Collection<sp_core::crypto::AccountId32>3190 * Lookup386: up_data_structs::Collection<sp_core::crypto::AccountId32>3191 **/3191 **/3192 UpDataStructsCollection: {3192 UpDataStructsCollection: {3193 owner: 'AccountId32',3193 owner: 'AccountId32',3194 mode: 'UpDataStructsCollectionMode',3194 mode: 'UpDataStructsCollectionMode',3200 permissions: 'UpDataStructsCollectionPermissions',3200 permissions: 'UpDataStructsCollectionPermissions',3201 flags: '[u8;1]'3201 flags: '[u8;1]'3202 },3202 },3203 /**3203 /**3204 * Lookup385: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3204 * Lookup387: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3205 **/3205 **/3206 UpDataStructsSponsorshipStateAccountId32: {3206 UpDataStructsSponsorshipStateAccountId32: {3207 _enum: {3207 _enum: {3208 Disabled: 'Null',3208 Disabled: 'Null',3209 Unconfirmed: 'AccountId32',3209 Unconfirmed: 'AccountId32',3210 Confirmed: 'AccountId32'3210 Confirmed: 'AccountId32'3211 }3211 }3212 },3212 },3213 /**3213 /**3214 * Lookup387: up_data_structs::Properties3214 * Lookup389: up_data_structs::Properties3215 **/3215 **/3216 UpDataStructsProperties: {3216 UpDataStructsProperties: {3217 map: 'UpDataStructsPropertiesMapBoundedVec',3217 map: 'UpDataStructsPropertiesMapBoundedVec',3218 consumedSpace: 'u32',3218 consumedSpace: 'u32',3219 spaceLimit: 'u32'3219 spaceLimit: 'u32'3220 },3220 },3221 /**3221 /**3222 * Lookup388: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3222 * Lookup390: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3223 **/3223 **/3224 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3224 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3225 /**3225 /**3226 * Lookup393: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3226 * Lookup395: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3227 **/3227 **/3228 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3228 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3229 /**3229 /**3230 * Lookup400: up_data_structs::CollectionStats3230 * Lookup402: up_data_structs::CollectionStats3231 **/3231 **/3232 UpDataStructsCollectionStats: {3232 UpDataStructsCollectionStats: {3233 created: 'u32',3233 created: 'u32',3234 destroyed: 'u32',3234 destroyed: 'u32',3235 alive: 'u32'3235 alive: 'u32'3236 },3236 },3237 /**3237 /**3238 * Lookup401: up_data_structs::TokenChild3238 * Lookup403: up_data_structs::TokenChild3239 **/3239 **/3240 UpDataStructsTokenChild: {3240 UpDataStructsTokenChild: {3241 token: 'u32',3241 token: 'u32',3242 collection: 'u32'3242 collection: 'u32'3243 },3243 },3244 /**3244 /**3245 * Lookup402: PhantomType::up_data_structs<T>3245 * Lookup404: PhantomType::up_data_structs<T>3246 **/3246 **/3247 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3247 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3248 /**3248 /**3249 * Lookup404: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3249 * Lookup406: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3250 **/3250 **/3251 UpDataStructsTokenData: {3251 UpDataStructsTokenData: {3252 properties: 'Vec<UpDataStructsProperty>',3252 properties: 'Vec<UpDataStructsProperty>',3253 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3253 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3254 pieces: 'u128'3254 pieces: 'u128'3255 },3255 },3256 /**3256 /**3257 * Lookup406: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3257 * Lookup408: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3258 **/3258 **/3259 UpDataStructsRpcCollection: {3259 UpDataStructsRpcCollection: {3260 owner: 'AccountId32',3260 owner: 'AccountId32',3261 mode: 'UpDataStructsCollectionMode',3261 mode: 'UpDataStructsCollectionMode',3270 readOnly: 'bool',3270 readOnly: 'bool',3271 foreign: 'bool'3271 foreign: 'bool'3272 },3272 },3273 /**3273 /**3274 * Lookup407: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3274 * Lookup409: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3275 **/3275 **/3276 RmrkTraitsCollectionCollectionInfo: {3276 RmrkTraitsCollectionCollectionInfo: {3277 issuer: 'AccountId32',3277 issuer: 'AccountId32',3278 metadata: 'Bytes',3278 metadata: 'Bytes',3279 max: 'Option<u32>',3279 max: 'Option<u32>',3280 symbol: 'Bytes',3280 symbol: 'Bytes',3281 nftsCount: 'u32'3281 nftsCount: 'u32'3282 },3282 },3283 /**3283 /**3284 * Lookup408: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3284 * Lookup410: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3285 **/3285 **/3286 RmrkTraitsNftNftInfo: {3286 RmrkTraitsNftNftInfo: {3287 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3287 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3288 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3288 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3289 metadata: 'Bytes',3289 metadata: 'Bytes',3290 equipped: 'bool',3290 equipped: 'bool',3291 pending: 'bool'3291 pending: 'bool'3292 },3292 },3293 /**3293 /**3294 * Lookup410: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3294 * Lookup412: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3295 **/3295 **/3296 RmrkTraitsNftRoyaltyInfo: {3296 RmrkTraitsNftRoyaltyInfo: {3297 recipient: 'AccountId32',3297 recipient: 'AccountId32',3298 amount: 'Permill'3298 amount: 'Permill'3299 },3299 },3300 /**3300 /**3301 * Lookup411: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3301 * Lookup413: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3302 **/3302 **/3303 RmrkTraitsResourceResourceInfo: {3303 RmrkTraitsResourceResourceInfo: {3304 id: 'u32',3304 id: 'u32',3305 resource: 'RmrkTraitsResourceResourceTypes',3305 resource: 'RmrkTraitsResourceResourceTypes',3306 pending: 'bool',3306 pending: 'bool',3307 pendingRemoval: 'bool'3307 pendingRemoval: 'bool'3308 },3308 },3309 /**3309 /**3310 * Lookup412: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3310 * Lookup414: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3311 **/3311 **/3312 RmrkTraitsPropertyPropertyInfo: {3312 RmrkTraitsPropertyPropertyInfo: {3313 key: 'Bytes',3313 key: 'Bytes',3314 value: 'Bytes'3314 value: 'Bytes'3315 },3315 },3316 /**3316 /**3317 * Lookup413: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3317 * Lookup415: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3318 **/3318 **/3319 RmrkTraitsBaseBaseInfo: {3319 RmrkTraitsBaseBaseInfo: {3320 issuer: 'AccountId32',3320 issuer: 'AccountId32',3321 baseType: 'Bytes',3321 baseType: 'Bytes',3322 symbol: 'Bytes'3322 symbol: 'Bytes'3323 },3323 },3324 /**3324 /**3325 * Lookup414: rmrk_traits::nft::NftChild3325 * Lookup416: rmrk_traits::nft::NftChild3326 **/3326 **/3327 RmrkTraitsNftNftChild: {3327 RmrkTraitsNftNftChild: {3328 collectionId: 'u32',3328 collectionId: 'u32',3329 nftId: 'u32'3329 nftId: 'u32'3330 },3330 },3331 /**3331 /**3332 * Lookup416: pallet_common::pallet::Error<T>3332 * Lookup418: pallet_common::pallet::Error<T>3333 **/3333 **/3334 PalletCommonError: {3334 PalletCommonError: {3335 _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']3335 _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']3336 },3336 },3337 /**3337 /**3338 * Lookup418: pallet_fungible::pallet::Error<T>3338 * Lookup420: pallet_fungible::pallet::Error<T>3339 **/3339 **/3340 PalletFungibleError: {3340 PalletFungibleError: {3341 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3341 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3342 },3342 },3343 /**3343 /**3344 * Lookup419: pallet_refungible::ItemData3344 * Lookup421: pallet_refungible::ItemData3345 **/3345 **/3346 PalletRefungibleItemData: {3346 PalletRefungibleItemData: {3347 constData: 'Bytes'3347 constData: 'Bytes'3348 },3348 },3349 /**3349 /**3350 * Lookup424: pallet_refungible::pallet::Error<T>3350 * Lookup426: pallet_refungible::pallet::Error<T>3351 **/3351 **/3352 PalletRefungibleError: {3352 PalletRefungibleError: {3353 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3353 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3354 },3354 },3355 /**3355 /**3356 * Lookup425: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3356 * Lookup427: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3357 **/3357 **/3358 PalletNonfungibleItemData: {3358 PalletNonfungibleItemData: {3359 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3359 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3360 },3360 },3361 /**3361 /**3362 * Lookup427: up_data_structs::PropertyScope3362 * Lookup429: up_data_structs::PropertyScope3363 **/3363 **/3364 UpDataStructsPropertyScope: {3364 UpDataStructsPropertyScope: {3365 _enum: ['None', 'Rmrk']3365 _enum: ['None', 'Rmrk']3366 },3366 },3367 /**3367 /**3368 * Lookup429: pallet_nonfungible::pallet::Error<T>3368 * Lookup431: pallet_nonfungible::pallet::Error<T>3369 **/3369 **/3370 PalletNonfungibleError: {3370 PalletNonfungibleError: {3371 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3371 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3372 },3372 },3373 /**3373 /**3374 * Lookup430: pallet_structure::pallet::Error<T>3374 * Lookup432: pallet_structure::pallet::Error<T>3375 **/3375 **/3376 PalletStructureError: {3376 PalletStructureError: {3377 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3377 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3378 },3378 },3379 /**3379 /**3380 * Lookup431: pallet_rmrk_core::pallet::Error<T>3380 * Lookup433: pallet_rmrk_core::pallet::Error<T>3381 **/3381 **/3382 PalletRmrkCoreError: {3382 PalletRmrkCoreError: {3383 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3383 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3384 },3384 },3385 /**3385 /**3386 * Lookup433: pallet_rmrk_equip::pallet::Error<T>3386 * Lookup435: pallet_rmrk_equip::pallet::Error<T>3387 **/3387 **/3388 PalletRmrkEquipError: {3388 PalletRmrkEquipError: {3389 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3389 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3390 },3390 },3391 /**3391 /**3392 * Lookup439: pallet_app_promotion::pallet::Error<T>3392 * Lookup441: pallet_app_promotion::pallet::Error<T>3393 **/3393 **/3394 PalletAppPromotionError: {3394 PalletAppPromotionError: {3395 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3395 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3396 },3396 },3397 /**3397 /**3398 * Lookup440: pallet_foreign_assets::module::Error<T>3398 * Lookup442: pallet_foreign_assets::module::Error<T>3399 **/3399 **/3400 PalletForeignAssetsModuleError: {3400 PalletForeignAssetsModuleError: {3401 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3401 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3402 },3402 },3403 /**3403 /**3404 * Lookup443: pallet_evm::pallet::Error<T>3404 * Lookup445: pallet_evm::pallet::Error<T>3405 **/3405 **/3406 PalletEvmError: {3406 PalletEvmError: {3407 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']3407 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']3408 },3408 },3409 /**3409 /**3410 * Lookup446: fp_rpc::TransactionStatus3410 * Lookup448: fp_rpc::TransactionStatus3411 **/3411 **/3412 FpRpcTransactionStatus: {3412 FpRpcTransactionStatus: {3413 transactionHash: 'H256',3413 transactionHash: 'H256',3414 transactionIndex: 'u32',3414 transactionIndex: 'u32',3418 logs: 'Vec<EthereumLog>',3418 logs: 'Vec<EthereumLog>',3419 logsBloom: 'EthbloomBloom'3419 logsBloom: 'EthbloomBloom'3420 },3420 },3421 /**3421 /**3422 * Lookup448: ethbloom::Bloom3422 * Lookup450: ethbloom::Bloom3423 **/3423 **/3424 EthbloomBloom: '[u8;256]',3424 EthbloomBloom: '[u8;256]',3425 /**3425 /**3426 * Lookup450: ethereum::receipt::ReceiptV33426 * Lookup452: ethereum::receipt::ReceiptV33427 **/3427 **/3428 EthereumReceiptReceiptV3: {3428 EthereumReceiptReceiptV3: {3429 _enum: {3429 _enum: {3430 Legacy: 'EthereumReceiptEip658ReceiptData',3430 Legacy: 'EthereumReceiptEip658ReceiptData',3431 EIP2930: 'EthereumReceiptEip658ReceiptData',3431 EIP2930: 'EthereumReceiptEip658ReceiptData',3432 EIP1559: 'EthereumReceiptEip658ReceiptData'3432 EIP1559: 'EthereumReceiptEip658ReceiptData'3433 }3433 }3434 },3434 },3435 /**3435 /**3436 * Lookup451: ethereum::receipt::EIP658ReceiptData3436 * Lookup453: ethereum::receipt::EIP658ReceiptData3437 **/3437 **/3438 EthereumReceiptEip658ReceiptData: {3438 EthereumReceiptEip658ReceiptData: {3439 statusCode: 'u8',3439 statusCode: 'u8',3440 usedGas: 'U256',3440 usedGas: 'U256',3441 logsBloom: 'EthbloomBloom',3441 logsBloom: 'EthbloomBloom',3442 logs: 'Vec<EthereumLog>'3442 logs: 'Vec<EthereumLog>'3443 },3443 },3444 /**3444 /**3445 * Lookup452: ethereum::block::Block<ethereum::transaction::TransactionV2>3445 * Lookup454: ethereum::block::Block<ethereum::transaction::TransactionV2>3446 **/3446 **/3447 EthereumBlock: {3447 EthereumBlock: {3448 header: 'EthereumHeader',3448 header: 'EthereumHeader',3449 transactions: 'Vec<EthereumTransactionTransactionV2>',3449 transactions: 'Vec<EthereumTransactionTransactionV2>',3450 ommers: 'Vec<EthereumHeader>'3450 ommers: 'Vec<EthereumHeader>'3451 },3451 },3452 /**3452 /**3453 * Lookup453: ethereum::header::Header3453 * Lookup455: ethereum::header::Header3454 **/3454 **/3455 EthereumHeader: {3455 EthereumHeader: {3456 parentHash: 'H256',3456 parentHash: 'H256',3457 ommersHash: 'H256',3457 ommersHash: 'H256',3469 mixHash: 'H256',3469 mixHash: 'H256',3470 nonce: 'EthereumTypesHashH64'3470 nonce: 'EthereumTypesHashH64'3471 },3471 },3472 /**3472 /**3473 * Lookup454: ethereum_types::hash::H643473 * Lookup456: ethereum_types::hash::H643474 **/3474 **/3475 EthereumTypesHashH64: '[u8;8]',3475 EthereumTypesHashH64: '[u8;8]',3476 /**3476 /**3477 * Lookup459: pallet_ethereum::pallet::Error<T>3477 * Lookup461: pallet_ethereum::pallet::Error<T>3478 **/3478 **/3479 PalletEthereumError: {3479 PalletEthereumError: {3480 _enum: ['InvalidSignature', 'PreLogExists']3480 _enum: ['InvalidSignature', 'PreLogExists']3481 },3481 },3482 /**3482 /**3483 * Lookup460: pallet_evm_coder_substrate::pallet::Error<T>3483 * Lookup462: pallet_evm_coder_substrate::pallet::Error<T>3484 **/3484 **/3485 PalletEvmCoderSubstrateError: {3485 PalletEvmCoderSubstrateError: {3486 _enum: ['OutOfGas', 'OutOfFund']3486 _enum: ['OutOfGas', 'OutOfFund']3487 },3487 },3488 /**3488 /**3489 * Lookup461: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3489 * Lookup463: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3490 **/3490 **/3491 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3491 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3492 _enum: {3492 _enum: {3493 Disabled: 'Null',3493 Disabled: 'Null',3494 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3494 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3495 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3495 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3496 }3496 }3497 },3497 },3498 /**3498 /**3499 * Lookup462: pallet_evm_contract_helpers::SponsoringModeT3499 * Lookup464: pallet_evm_contract_helpers::SponsoringModeT3500 **/3500 **/3501 PalletEvmContractHelpersSponsoringModeT: {3501 PalletEvmContractHelpersSponsoringModeT: {3502 _enum: ['Disabled', 'Allowlisted', 'Generous']3502 _enum: ['Disabled', 'Allowlisted', 'Generous']3503 },3503 },3504 /**3504 /**3505 * Lookup468: pallet_evm_contract_helpers::pallet::Error<T>3505 * Lookup470: pallet_evm_contract_helpers::pallet::Error<T>3506 **/3506 **/3507 PalletEvmContractHelpersError: {3507 PalletEvmContractHelpersError: {3508 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3508 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3509 },3509 },3510 /**3510 /**3511 * Lookup469: pallet_evm_migration::pallet::Error<T>3511 * Lookup471: pallet_evm_migration::pallet::Error<T>3512 **/3512 **/3513 PalletEvmMigrationError: {3513 PalletEvmMigrationError: {3514 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3514 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3515 },3515 },3516 /**3516 /**3517 * Lookup471: sp_runtime::MultiSignature3517 * Lookup473: sp_runtime::MultiSignature3518 **/3518 **/3519 SpRuntimeMultiSignature: {3519 SpRuntimeMultiSignature: {3520 _enum: {3520 _enum: {3521 Ed25519: 'SpCoreEd25519Signature',3521 Ed25519: 'SpCoreEd25519Signature',3522 Sr25519: 'SpCoreSr25519Signature',3522 Sr25519: 'SpCoreSr25519Signature',3523 Ecdsa: 'SpCoreEcdsaSignature'3523 Ecdsa: 'SpCoreEcdsaSignature'3524 }3524 }3525 },3525 },3526 /**3526 /**3527 * Lookup472: sp_core::ed25519::Signature3527 * Lookup474: sp_core::ed25519::Signature3528 **/3528 **/3529 SpCoreEd25519Signature: '[u8;64]',3529 SpCoreEd25519Signature: '[u8;64]',3530 /**3530 /**3531 * Lookup474: sp_core::sr25519::Signature3531 * Lookup476: sp_core::sr25519::Signature3532 **/3532 **/3533 SpCoreSr25519Signature: '[u8;64]',3533 SpCoreSr25519Signature: '[u8;64]',3534 /**3534 /**3535 * Lookup475: sp_core::ecdsa::Signature3535 * Lookup477: sp_core::ecdsa::Signature3536 **/3536 **/3537 SpCoreEcdsaSignature: '[u8;65]',3537 SpCoreEcdsaSignature: '[u8;65]',3538 /**3538 /**3539 * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3539 * Lookup480: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3540 **/3540 **/3541 FrameSystemExtensionsCheckSpecVersion: 'Null',3541 FrameSystemExtensionsCheckSpecVersion: 'Null',3542 /**3542 /**3543 * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>3543 * Lookup481: frame_system::extensions::check_tx_version::CheckTxVersion<T>3544 **/3544 **/3545 FrameSystemExtensionsCheckTxVersion: 'Null',3545 FrameSystemExtensionsCheckTxVersion: 'Null',3546 /**3546 /**3547 * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>3547 * Lookup482: frame_system::extensions::check_genesis::CheckGenesis<T>3548 **/3548 **/3549 FrameSystemExtensionsCheckGenesis: 'Null',3549 FrameSystemExtensionsCheckGenesis: 'Null',3550 /**3550 /**3551 * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>3551 * Lookup485: frame_system::extensions::check_nonce::CheckNonce<T>3552 **/3552 **/3553 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3553 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3554 /**3554 /**3555 * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>3555 * Lookup486: frame_system::extensions::check_weight::CheckWeight<T>3556 **/3556 **/3557 FrameSystemExtensionsCheckWeight: 'Null',3557 FrameSystemExtensionsCheckWeight: 'Null',3558 /**3558 /**3559 * Lookup485: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3559 * Lookup487: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3560 **/3560 **/3561 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3561 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3562 /**3562 /**3563 * Lookup486: opal_runtime::Runtime3563 * Lookup488: opal_runtime::Runtime3564 **/3564 **/3565 OpalRuntimeRuntime: 'Null',3565 OpalRuntimeRuntime: 'Null',3566 /**3566 /**3567 * Lookup487: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3567 * Lookup489: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3568 **/3568 **/3569 PalletEthereumFakeTransactionFinalizer: 'Null'3569 PalletEthereumFakeTransactionFinalizer: 'Null'3570};3570};35713571tests/src/interfaces/registry.tsdiffbeforeafterboth5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';778import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';9910declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {11 interface InterfaceTypes {11 interface InterfaceTypes {60 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;60 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;61 FrameSupportWeightsPays: FrameSupportWeightsPays;61 FrameSupportWeightsPays: FrameSupportWeightsPays;62 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;62 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;63 FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;63 FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;64 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;64 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;65 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;65 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;66 FrameSystemAccountInfo: FrameSystemAccountInfo;66 FrameSystemAccountInfo: FrameSystemAccountInfo;tests/src/interfaces/types-lookup.tsdiffbeforeafterboth778import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';8import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';11import type { Event } from '@polkadot/types/interfaces/system';121213declare module '@polkadot/types/lookup' {13declare module '@polkadot/types/lookup' {28 readonly feeFrozen: u128;28 readonly feeFrozen: u128;29 }29 }303031 /** @name FrameSupportWeightsPerDispatchClassU64 (7) */31 /** @name FrameSupportWeightsPerDispatchClassWeight (7) */32 interface FrameSupportWeightsPerDispatchClassU64 extends Struct {32 interface FrameSupportWeightsPerDispatchClassWeight extends Struct {33 readonly normal: u64;33 readonly normal: Weight;34 readonly operational: u64;34 readonly operational: Weight;35 readonly mandatory: u64;35 readonly mandatory: Weight;36 }36 }373738 /** @name SpRuntimeDigest (11) */38 /** @name SpRuntimeDigest (12) */39 interface SpRuntimeDigest extends Struct {39 interface SpRuntimeDigest extends Struct {40 readonly logs: Vec<SpRuntimeDigestDigestItem>;40 readonly logs: Vec<SpRuntimeDigestDigestItem>;41 }41 }424243 /** @name SpRuntimeDigestDigestItem (13) */43 /** @name SpRuntimeDigestDigestItem (14) */44 interface SpRuntimeDigestDigestItem extends Enum {44 interface SpRuntimeDigestDigestItem extends Enum {45 readonly isOther: boolean;45 readonly isOther: boolean;46 readonly asOther: Bytes;46 readonly asOther: Bytes;54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';55 }55 }565657 /** @name FrameSystemEventRecord (16) */57 /** @name FrameSystemEventRecord (17) */58 interface FrameSystemEventRecord extends Struct {58 interface FrameSystemEventRecord extends Struct {59 readonly phase: FrameSystemPhase;59 readonly phase: FrameSystemPhase;60 readonly event: Event;60 readonly event: Event;61 readonly topics: Vec<H256>;61 readonly topics: Vec<H256>;62 }62 }636364 /** @name FrameSystemEvent (18) */64 /** @name FrameSystemEvent (19) */65 interface FrameSystemEvent extends Enum {65 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;66 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {67 readonly asExtrinsicSuccess: {89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }90 }919192 /** @name FrameSupportWeightsDispatchInfo (19) */92 /** @name FrameSupportWeightsDispatchInfo (20) */93 interface FrameSupportWeightsDispatchInfo extends Struct {93 interface FrameSupportWeightsDispatchInfo extends Struct {94 readonly weight: u64;94 readonly weight: Weight;95 readonly class: FrameSupportWeightsDispatchClass;95 readonly class: FrameSupportWeightsDispatchClass;96 readonly paysFee: FrameSupportWeightsPays;96 readonly paysFee: FrameSupportWeightsPays;97 }97 }989899 /** @name FrameSupportWeightsDispatchClass (20) */99 /** @name FrameSupportWeightsDispatchClass (21) */100 interface FrameSupportWeightsDispatchClass extends Enum {100 interface FrameSupportWeightsDispatchClass extends Enum {101 readonly isNormal: boolean;101 readonly isNormal: boolean;102 readonly isOperational: boolean;102 readonly isOperational: boolean;103 readonly isMandatory: boolean;103 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';104 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }105 }106106107 /** @name FrameSupportWeightsPays (21) */107 /** @name FrameSupportWeightsPays (22) */108 interface FrameSupportWeightsPays extends Enum {108 interface FrameSupportWeightsPays extends Enum {109 readonly isYes: boolean;109 readonly isYes: boolean;110 readonly isNo: boolean;110 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';111 readonly type: 'Yes' | 'No';112 }112 }113113114 /** @name SpRuntimeDispatchError (22) */114 /** @name SpRuntimeDispatchError (23) */115 interface SpRuntimeDispatchError extends Enum {115 interface SpRuntimeDispatchError extends Enum {116 readonly isOther: boolean;116 readonly isOther: boolean;117 readonly isCannotLookup: boolean;117 readonly isCannotLookup: boolean;130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';131 }131 }132132133 /** @name SpRuntimeModuleError (23) */133 /** @name SpRuntimeModuleError (24) */134 interface SpRuntimeModuleError extends Struct {134 interface SpRuntimeModuleError extends Struct {135 readonly index: u8;135 readonly index: u8;136 readonly error: U8aFixed;136 readonly error: U8aFixed;137 }137 }138138139 /** @name SpRuntimeTokenError (24) */139 /** @name SpRuntimeTokenError (25) */140 interface SpRuntimeTokenError extends Enum {140 interface SpRuntimeTokenError extends Enum {141 readonly isNoFunds: boolean;141 readonly isNoFunds: boolean;142 readonly isWouldDie: boolean;142 readonly isWouldDie: boolean;148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';149 }149 }150150151 /** @name SpRuntimeArithmeticError (25) */151 /** @name SpRuntimeArithmeticError (26) */152 interface SpRuntimeArithmeticError extends Enum {152 interface SpRuntimeArithmeticError extends Enum {153 readonly isUnderflow: boolean;153 readonly isUnderflow: boolean;154 readonly isOverflow: boolean;154 readonly isOverflow: boolean;155 readonly isDivisionByZero: boolean;155 readonly isDivisionByZero: boolean;156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';157 }157 }158158159 /** @name SpRuntimeTransactionalError (26) */159 /** @name SpRuntimeTransactionalError (27) */160 interface SpRuntimeTransactionalError extends Enum {160 interface SpRuntimeTransactionalError extends Enum {161 readonly isLimitReached: boolean;161 readonly isLimitReached: boolean;162 readonly isNoLayer: boolean;162 readonly isNoLayer: boolean;163 readonly type: 'LimitReached' | 'NoLayer';163 readonly type: 'LimitReached' | 'NoLayer';164 }164 }165165166 /** @name CumulusPalletParachainSystemEvent (27) */166 /** @name CumulusPalletParachainSystemEvent (28) */167 interface CumulusPalletParachainSystemEvent extends Enum {167 interface CumulusPalletParachainSystemEvent extends Enum {168 readonly isValidationFunctionStored: boolean;168 readonly isValidationFunctionStored: boolean;169 readonly isValidationFunctionApplied: boolean;169 readonly isValidationFunctionApplied: boolean;181 } & Struct;181 } & Struct;182 readonly isDownwardMessagesProcessed: boolean;182 readonly isDownwardMessagesProcessed: boolean;183 readonly asDownwardMessagesProcessed: {183 readonly asDownwardMessagesProcessed: {184 readonly weightUsed: u64;184 readonly weightUsed: Weight;185 readonly dmqHead: H256;185 readonly dmqHead: H256;186 } & Struct;186 } & Struct;187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';188 }188 }189189190 /** @name PalletBalancesEvent (28) */190 /** @name PalletBalancesEvent (29) */191 interface PalletBalancesEvent extends Enum {191 interface PalletBalancesEvent extends Enum {192 readonly isEndowed: boolean;192 readonly isEndowed: boolean;193 readonly asEndowed: {193 readonly asEndowed: {246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';247 }247 }248248249 /** @name FrameSupportTokensMiscBalanceStatus (29) */249 /** @name FrameSupportTokensMiscBalanceStatus (30) */250 interface FrameSupportTokensMiscBalanceStatus extends Enum {250 interface FrameSupportTokensMiscBalanceStatus extends Enum {251 readonly isFree: boolean;251 readonly isFree: boolean;252 readonly isReserved: boolean;252 readonly isReserved: boolean;253 readonly type: 'Free' | 'Reserved';253 readonly type: 'Free' | 'Reserved';254 }254 }255255256 /** @name PalletTransactionPaymentEvent (30) */256 /** @name PalletTransactionPaymentEvent (31) */257 interface PalletTransactionPaymentEvent extends Enum {257 interface PalletTransactionPaymentEvent extends Enum {258 readonly isTransactionFeePaid: boolean;258 readonly isTransactionFeePaid: boolean;259 readonly asTransactionFeePaid: {259 readonly asTransactionFeePaid: {264 readonly type: 'TransactionFeePaid';264 readonly type: 'TransactionFeePaid';265 }265 }266266267 /** @name PalletTreasuryEvent (31) */267 /** @name PalletTreasuryEvent (32) */268 interface PalletTreasuryEvent extends Enum {268 interface PalletTreasuryEvent extends Enum {269 readonly isProposed: boolean;269 readonly isProposed: boolean;270 readonly asProposed: {270 readonly asProposed: {306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';307 }307 }308308309 /** @name PalletSudoEvent (32) */309 /** @name PalletSudoEvent (33) */310 interface PalletSudoEvent extends Enum {310 interface PalletSudoEvent extends Enum {311 readonly isSudid: boolean;311 readonly isSudid: boolean;312 readonly asSudid: {312 readonly asSudid: {323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';324 }324 }325325326 /** @name OrmlVestingModuleEvent (36) */326 /** @name OrmlVestingModuleEvent (37) */327 interface OrmlVestingModuleEvent extends Enum {327 interface OrmlVestingModuleEvent extends Enum {328 readonly isVestingScheduleAdded: boolean;328 readonly isVestingScheduleAdded: boolean;329 readonly asVestingScheduleAdded: {329 readonly asVestingScheduleAdded: {343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';344 }344 }345345346 /** @name OrmlVestingVestingSchedule (37) */346 /** @name OrmlVestingVestingSchedule (38) */347 interface OrmlVestingVestingSchedule extends Struct {347 interface OrmlVestingVestingSchedule extends Struct {348 readonly start: u32;348 readonly start: u32;349 readonly period: u32;349 readonly period: u32;350 readonly periodCount: u32;350 readonly periodCount: u32;351 readonly perPeriod: Compact<u128>;351 readonly perPeriod: Compact<u128>;352 }352 }353353354 /** @name OrmlXtokensModuleEvent (39) */354 /** @name OrmlXtokensModuleEvent (40) */355 interface OrmlXtokensModuleEvent extends Enum {355 interface OrmlXtokensModuleEvent extends Enum {356 readonly isTransferredMultiAssets: boolean;356 readonly isTransferredMultiAssets: boolean;357 readonly asTransferredMultiAssets: {357 readonly asTransferredMultiAssets: {363 readonly type: 'TransferredMultiAssets';363 readonly type: 'TransferredMultiAssets';364 }364 }365365366 /** @name XcmV1MultiassetMultiAssets (40) */366 /** @name XcmV1MultiassetMultiAssets (41) */367 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}367 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}368368369 /** @name XcmV1MultiAsset (42) */369 /** @name XcmV1MultiAsset (43) */370 interface XcmV1MultiAsset extends Struct {370 interface XcmV1MultiAsset extends Struct {371 readonly id: XcmV1MultiassetAssetId;371 readonly id: XcmV1MultiassetAssetId;372 readonly fun: XcmV1MultiassetFungibility;372 readonly fun: XcmV1MultiassetFungibility;373 }373 }374374375 /** @name XcmV1MultiassetAssetId (43) */375 /** @name XcmV1MultiassetAssetId (44) */376 interface XcmV1MultiassetAssetId extends Enum {376 interface XcmV1MultiassetAssetId extends Enum {377 readonly isConcrete: boolean;377 readonly isConcrete: boolean;378 readonly asConcrete: XcmV1MultiLocation;378 readonly asConcrete: XcmV1MultiLocation;381 readonly type: 'Concrete' | 'Abstract';381 readonly type: 'Concrete' | 'Abstract';382 }382 }383383384 /** @name XcmV1MultiLocation (44) */384 /** @name XcmV1MultiLocation (45) */385 interface XcmV1MultiLocation extends Struct {385 interface XcmV1MultiLocation extends Struct {386 readonly parents: u8;386 readonly parents: u8;387 readonly interior: XcmV1MultilocationJunctions;387 readonly interior: XcmV1MultilocationJunctions;388 }388 }389389390 /** @name XcmV1MultilocationJunctions (45) */390 /** @name XcmV1MultilocationJunctions (46) */391 interface XcmV1MultilocationJunctions extends Enum {391 interface XcmV1MultilocationJunctions extends Enum {392 readonly isHere: boolean;392 readonly isHere: boolean;393 readonly isX1: boolean;393 readonly isX1: boolean;409 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';409 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';410 }410 }411411412 /** @name XcmV1Junction (46) */412 /** @name XcmV1Junction (47) */413 interface XcmV1Junction extends Enum {413 interface XcmV1Junction extends Enum {414 readonly isParachain: boolean;414 readonly isParachain: boolean;415 readonly asParachain: Compact<u32>;415 readonly asParachain: Compact<u32>;443 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';443 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';444 }444 }445445446 /** @name XcmV0JunctionNetworkId (48) */446 /** @name XcmV0JunctionNetworkId (49) */447 interface XcmV0JunctionNetworkId extends Enum {447 interface XcmV0JunctionNetworkId extends Enum {448 readonly isAny: boolean;448 readonly isAny: boolean;449 readonly isNamed: boolean;449 readonly isNamed: boolean;453 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';453 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';454 }454 }455455456 /** @name XcmV0JunctionBodyId (52) */456 /** @name XcmV0JunctionBodyId (53) */457 interface XcmV0JunctionBodyId extends Enum {457 interface XcmV0JunctionBodyId extends Enum {458 readonly isUnit: boolean;458 readonly isUnit: boolean;459 readonly isNamed: boolean;459 readonly isNamed: boolean;467 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';467 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';468 }468 }469469470 /** @name XcmV0JunctionBodyPart (53) */470 /** @name XcmV0JunctionBodyPart (54) */471 interface XcmV0JunctionBodyPart extends Enum {471 interface XcmV0JunctionBodyPart extends Enum {472 readonly isVoice: boolean;472 readonly isVoice: boolean;473 readonly isMembers: boolean;473 readonly isMembers: boolean;492 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';492 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';493 }493 }494494495 /** @name XcmV1MultiassetFungibility (54) */495 /** @name XcmV1MultiassetFungibility (55) */496 interface XcmV1MultiassetFungibility extends Enum {496 interface XcmV1MultiassetFungibility extends Enum {497 readonly isFungible: boolean;497 readonly isFungible: boolean;498 readonly asFungible: Compact<u128>;498 readonly asFungible: Compact<u128>;501 readonly type: 'Fungible' | 'NonFungible';501 readonly type: 'Fungible' | 'NonFungible';502 }502 }503503504 /** @name XcmV1MultiassetAssetInstance (55) */504 /** @name XcmV1MultiassetAssetInstance (56) */505 interface XcmV1MultiassetAssetInstance extends Enum {505 interface XcmV1MultiassetAssetInstance extends Enum {506 readonly isUndefined: boolean;506 readonly isUndefined: boolean;507 readonly isIndex: boolean;507 readonly isIndex: boolean;519 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';519 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';520 }520 }521521522 /** @name OrmlTokensModuleEvent (58) */522 /** @name OrmlTokensModuleEvent (59) */523 interface OrmlTokensModuleEvent extends Enum {523 interface OrmlTokensModuleEvent extends Enum {524 readonly isEndowed: boolean;524 readonly isEndowed: boolean;525 readonly asEndowed: {525 readonly asEndowed: {607 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';607 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';608 }608 }609609610 /** @name PalletForeignAssetsAssetIds (59) */610 /** @name PalletForeignAssetsAssetIds (60) */611 interface PalletForeignAssetsAssetIds extends Enum {611 interface PalletForeignAssetsAssetIds extends Enum {612 readonly isForeignAssetId: boolean;612 readonly isForeignAssetId: boolean;613 readonly asForeignAssetId: u32;613 readonly asForeignAssetId: u32;616 readonly type: 'ForeignAssetId' | 'NativeAssetId';616 readonly type: 'ForeignAssetId' | 'NativeAssetId';617 }617 }618618619 /** @name PalletForeignAssetsNativeCurrency (60) */619 /** @name PalletForeignAssetsNativeCurrency (61) */620 interface PalletForeignAssetsNativeCurrency extends Enum {620 interface PalletForeignAssetsNativeCurrency extends Enum {621 readonly isHere: boolean;621 readonly isHere: boolean;622 readonly isParent: boolean;622 readonly isParent: boolean;623 readonly type: 'Here' | 'Parent';623 readonly type: 'Here' | 'Parent';624 }624 }625625626 /** @name CumulusPalletXcmpQueueEvent (61) */626 /** @name CumulusPalletXcmpQueueEvent (62) */627 interface CumulusPalletXcmpQueueEvent extends Enum {627 interface CumulusPalletXcmpQueueEvent extends Enum {628 readonly isSuccess: boolean;628 readonly isSuccess: boolean;629 readonly asSuccess: {629 readonly asSuccess: {630 readonly messageHash: Option<H256>;630 readonly messageHash: Option<H256>;631 readonly weight: u64;631 readonly weight: Weight;632 } & Struct;632 } & Struct;633 readonly isFail: boolean;633 readonly isFail: boolean;634 readonly asFail: {634 readonly asFail: {635 readonly messageHash: Option<H256>;635 readonly messageHash: Option<H256>;636 readonly error: XcmV2TraitsError;636 readonly error: XcmV2TraitsError;637 readonly weight: u64;637 readonly weight: Weight;638 } & Struct;638 } & Struct;639 readonly isBadVersion: boolean;639 readonly isBadVersion: boolean;640 readonly asBadVersion: {640 readonly asBadVersion: {657 readonly sender: u32;657 readonly sender: u32;658 readonly sentAt: u32;658 readonly sentAt: u32;659 readonly index: u64;659 readonly index: u64;660 readonly required: u64;660 readonly required: Weight;661 } & Struct;661 } & Struct;662 readonly isOverweightServiced: boolean;662 readonly isOverweightServiced: boolean;663 readonly asOverweightServiced: {663 readonly asOverweightServiced: {664 readonly index: u64;664 readonly index: u64;665 readonly used: u64;665 readonly used: Weight;666 } & Struct;666 } & Struct;667 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';667 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';668 }668 }669669670 /** @name XcmV2TraitsError (63) */670 /** @name XcmV2TraitsError (64) */671 interface XcmV2TraitsError extends Enum {671 interface XcmV2TraitsError extends Enum {672 readonly isOverflow: boolean;672 readonly isOverflow: boolean;673 readonly isUnimplemented: boolean;673 readonly isUnimplemented: boolean;700 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';700 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';701 }701 }702702703 /** @name PalletXcmEvent (65) */703 /** @name PalletXcmEvent (66) */704 interface PalletXcmEvent extends Enum {704 interface PalletXcmEvent extends Enum {705 readonly isAttempted: boolean;705 readonly isAttempted: boolean;706 readonly asAttempted: XcmV2TraitsOutcome;706 readonly asAttempted: XcmV2TraitsOutcome;713 readonly isNotified: boolean;713 readonly isNotified: boolean;714 readonly asNotified: ITuple<[u64, u8, u8]>;714 readonly asNotified: ITuple<[u64, u8, u8]>;715 readonly isNotifyOverweight: boolean;715 readonly isNotifyOverweight: boolean;716 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;716 readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;717 readonly isNotifyDispatchError: boolean;717 readonly isNotifyDispatchError: boolean;718 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;718 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;719 readonly isNotifyDecodeFailed: boolean;719 readonly isNotifyDecodeFailed: boolean;737 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';737 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';738 }738 }739739740 /** @name XcmV2TraitsOutcome (66) */740 /** @name XcmV2TraitsOutcome (67) */741 interface XcmV2TraitsOutcome extends Enum {741 interface XcmV2TraitsOutcome extends Enum {742 readonly isComplete: boolean;742 readonly isComplete: boolean;743 readonly asComplete: u64;743 readonly asComplete: u64;748 readonly type: 'Complete' | 'Incomplete' | 'Error';748 readonly type: 'Complete' | 'Incomplete' | 'Error';749 }749 }750750751 /** @name XcmV2Xcm (67) */751 /** @name XcmV2Xcm (68) */752 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}752 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}753753754 /** @name XcmV2Instruction (69) */754 /** @name XcmV2Instruction (70) */755 interface XcmV2Instruction extends Enum {755 interface XcmV2Instruction extends Enum {756 readonly isWithdrawAsset: boolean;756 readonly isWithdrawAsset: boolean;757 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;757 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;871 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';871 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';872 }872 }873873874 /** @name XcmV2Response (70) */874 /** @name XcmV2Response (71) */875 interface XcmV2Response extends Enum {875 interface XcmV2Response extends Enum {876 readonly isNull: boolean;876 readonly isNull: boolean;877 readonly isAssets: boolean;877 readonly isAssets: boolean;883 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';883 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';884 }884 }885885886 /** @name XcmV0OriginKind (73) */886 /** @name XcmV0OriginKind (74) */887 interface XcmV0OriginKind extends Enum {887 interface XcmV0OriginKind extends Enum {888 readonly isNative: boolean;888 readonly isNative: boolean;889 readonly isSovereignAccount: boolean;889 readonly isSovereignAccount: boolean;892 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';892 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';893 }893 }894894895 /** @name XcmDoubleEncoded (74) */895 /** @name XcmDoubleEncoded (75) */896 interface XcmDoubleEncoded extends Struct {896 interface XcmDoubleEncoded extends Struct {897 readonly encoded: Bytes;897 readonly encoded: Bytes;898 }898 }899899900 /** @name XcmV1MultiassetMultiAssetFilter (75) */900 /** @name XcmV1MultiassetMultiAssetFilter (76) */901 interface XcmV1MultiassetMultiAssetFilter extends Enum {901 interface XcmV1MultiassetMultiAssetFilter extends Enum {902 readonly isDefinite: boolean;902 readonly isDefinite: boolean;903 readonly asDefinite: XcmV1MultiassetMultiAssets;903 readonly asDefinite: XcmV1MultiassetMultiAssets;906 readonly type: 'Definite' | 'Wild';906 readonly type: 'Definite' | 'Wild';907 }907 }908908909 /** @name XcmV1MultiassetWildMultiAsset (76) */909 /** @name XcmV1MultiassetWildMultiAsset (77) */910 interface XcmV1MultiassetWildMultiAsset extends Enum {910 interface XcmV1MultiassetWildMultiAsset extends Enum {911 readonly isAll: boolean;911 readonly isAll: boolean;912 readonly isAllOf: boolean;912 readonly isAllOf: boolean;917 readonly type: 'All' | 'AllOf';917 readonly type: 'All' | 'AllOf';918 }918 }919919920 /** @name XcmV1MultiassetWildFungibility (77) */920 /** @name XcmV1MultiassetWildFungibility (78) */921 interface XcmV1MultiassetWildFungibility extends Enum {921 interface XcmV1MultiassetWildFungibility extends Enum {922 readonly isFungible: boolean;922 readonly isFungible: boolean;923 readonly isNonFungible: boolean;923 readonly isNonFungible: boolean;924 readonly type: 'Fungible' | 'NonFungible';924 readonly type: 'Fungible' | 'NonFungible';925 }925 }926926927 /** @name XcmV2WeightLimit (78) */927 /** @name XcmV2WeightLimit (79) */928 interface XcmV2WeightLimit extends Enum {928 interface XcmV2WeightLimit extends Enum {929 readonly isUnlimited: boolean;929 readonly isUnlimited: boolean;930 readonly isLimited: boolean;930 readonly isLimited: boolean;931 readonly asLimited: Compact<u64>;931 readonly asLimited: Compact<u64>;932 readonly type: 'Unlimited' | 'Limited';932 readonly type: 'Unlimited' | 'Limited';933 }933 }934934935 /** @name XcmVersionedMultiAssets (80) */935 /** @name XcmVersionedMultiAssets (81) */936 interface XcmVersionedMultiAssets extends Enum {936 interface XcmVersionedMultiAssets extends Enum {937 readonly isV0: boolean;937 readonly isV0: boolean;938 readonly asV0: Vec<XcmV0MultiAsset>;938 readonly asV0: Vec<XcmV0MultiAsset>;941 readonly type: 'V0' | 'V1';941 readonly type: 'V0' | 'V1';942 }942 }943943944 /** @name XcmV0MultiAsset (82) */944 /** @name XcmV0MultiAsset (83) */945 interface XcmV0MultiAsset extends Enum {945 interface XcmV0MultiAsset extends Enum {946 readonly isNone: boolean;946 readonly isNone: boolean;947 readonly isAll: boolean;947 readonly isAll: boolean;986 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';986 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';987 }987 }988988989 /** @name XcmV0MultiLocation (83) */989 /** @name XcmV0MultiLocation (84) */990 interface XcmV0MultiLocation extends Enum {990 interface XcmV0MultiLocation extends Enum {991 readonly isNull: boolean;991 readonly isNull: boolean;992 readonly isX1: boolean;992 readonly isX1: boolean;1008 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1008 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1009 }1009 }101010101011 /** @name XcmV0Junction (84) */1011 /** @name XcmV0Junction (85) */1012 interface XcmV0Junction extends Enum {1012 interface XcmV0Junction extends Enum {1013 readonly isParent: boolean;1013 readonly isParent: boolean;1014 readonly isParachain: boolean;1014 readonly isParachain: boolean;1043 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1043 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1044 }1044 }104510451046 /** @name XcmVersionedMultiLocation (85) */1046 /** @name XcmVersionedMultiLocation (86) */1047 interface XcmVersionedMultiLocation extends Enum {1047 interface XcmVersionedMultiLocation extends Enum {1048 readonly isV0: boolean;1048 readonly isV0: boolean;1049 readonly asV0: XcmV0MultiLocation;1049 readonly asV0: XcmV0MultiLocation;1052 readonly type: 'V0' | 'V1';1052 readonly type: 'V0' | 'V1';1053 }1053 }105410541055 /** @name CumulusPalletXcmEvent (86) */1055 /** @name CumulusPalletXcmEvent (87) */1056 interface CumulusPalletXcmEvent extends Enum {1056 interface CumulusPalletXcmEvent extends Enum {1057 readonly isInvalidFormat: boolean;1057 readonly isInvalidFormat: boolean;1058 readonly asInvalidFormat: U8aFixed;1058 readonly asInvalidFormat: U8aFixed;1063 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1063 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1064 }1064 }106510651066 /** @name CumulusPalletDmpQueueEvent (87) */1066 /** @name CumulusPalletDmpQueueEvent (88) */1067 interface CumulusPalletDmpQueueEvent extends Enum {1067 interface CumulusPalletDmpQueueEvent extends Enum {1068 readonly isInvalidFormat: boolean;1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: {1069 readonly asInvalidFormat: {1081 readonly isWeightExhausted: boolean;1081 readonly isWeightExhausted: boolean;1082 readonly asWeightExhausted: {1082 readonly asWeightExhausted: {1083 readonly messageId: U8aFixed;1083 readonly messageId: U8aFixed;1084 readonly remainingWeight: u64;1084 readonly remainingWeight: Weight;1085 readonly requiredWeight: u64;1085 readonly requiredWeight: Weight;1086 } & Struct;1086 } & Struct;1087 readonly isOverweightEnqueued: boolean;1087 readonly isOverweightEnqueued: boolean;1088 readonly asOverweightEnqueued: {1088 readonly asOverweightEnqueued: {1089 readonly messageId: U8aFixed;1089 readonly messageId: U8aFixed;1090 readonly overweightIndex: u64;1090 readonly overweightIndex: u64;1091 readonly requiredWeight: u64;1091 readonly requiredWeight: Weight;1092 } & Struct;1092 } & Struct;1093 readonly isOverweightServiced: boolean;1093 readonly isOverweightServiced: boolean;1094 readonly asOverweightServiced: {1094 readonly asOverweightServiced: {1095 readonly overweightIndex: u64;1095 readonly overweightIndex: u64;1096 readonly weightUsed: u64;1096 readonly weightUsed: Weight;1097 } & Struct;1097 } & Struct;1098 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1098 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1099 }1099 }110011001101 /** @name PalletUniqueRawEvent (88) */1101 /** @name PalletUniqueRawEvent (89) */1102 interface PalletUniqueRawEvent extends Enum {1102 interface PalletUniqueRawEvent extends Enum {1103 readonly isCollectionSponsorRemoved: boolean;1103 readonly isCollectionSponsorRemoved: boolean;1104 readonly asCollectionSponsorRemoved: u32;1104 readonly asCollectionSponsorRemoved: u32;1123 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1123 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1124 }1124 }112511251126 /** @name PalletEvmAccountBasicCrossAccountIdRepr (89) */1126 /** @name PalletEvmAccountBasicCrossAccountIdRepr (90) */1127 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1127 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1128 readonly isSubstrate: boolean;1128 readonly isSubstrate: boolean;1129 readonly asSubstrate: AccountId32;1129 readonly asSubstrate: AccountId32;1132 readonly type: 'Substrate' | 'Ethereum';1132 readonly type: 'Substrate' | 'Ethereum';1133 }1133 }113411341135 /** @name PalletUniqueSchedulerEvent (92) */1135 /** @name PalletUniqueSchedulerEvent (93) */1136 interface PalletUniqueSchedulerEvent extends Enum {1136 interface PalletUniqueSchedulerEvent extends Enum {1137 readonly isScheduled: boolean;1137 readonly isScheduled: boolean;1138 readonly asScheduled: {1138 readonly asScheduled: {1159 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1159 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1160 }1160 }116111611162 /** @name FrameSupportScheduleLookupError (95) */1162 /** @name FrameSupportScheduleLookupError (96) */1163 interface FrameSupportScheduleLookupError extends Enum {1163 interface FrameSupportScheduleLookupError extends Enum {1164 readonly isUnknown: boolean;1164 readonly isUnknown: boolean;1165 readonly isBadFormat: boolean;1165 readonly isBadFormat: boolean;1166 readonly type: 'Unknown' | 'BadFormat';1166 readonly type: 'Unknown' | 'BadFormat';1167 }1167 }116811681169 /** @name PalletCommonEvent (96) */1169 /** @name PalletCommonEvent (97) */1170 interface PalletCommonEvent extends Enum {1170 interface PalletCommonEvent extends Enum {1171 readonly isCollectionCreated: boolean;1171 readonly isCollectionCreated: boolean;1172 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1172 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1193 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1193 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1194 }1194 }119511951196 /** @name PalletStructureEvent (99) */1196 /** @name PalletStructureEvent (100) */1197 interface PalletStructureEvent extends Enum {1197 interface PalletStructureEvent extends Enum {1198 readonly isExecuted: boolean;1198 readonly isExecuted: boolean;1199 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1199 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1200 readonly type: 'Executed';1200 readonly type: 'Executed';1201 }1201 }120212021203 /** @name PalletRmrkCoreEvent (100) */1203 /** @name PalletRmrkCoreEvent (101) */1204 interface PalletRmrkCoreEvent extends Enum {1204 interface PalletRmrkCoreEvent extends Enum {1205 readonly isCollectionCreated: boolean;1205 readonly isCollectionCreated: boolean;1206 readonly asCollectionCreated: {1206 readonly asCollectionCreated: {1290 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1290 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1291 }1291 }129212921293 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1293 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1294 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1294 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1295 readonly isAccountId: boolean;1295 readonly isAccountId: boolean;1296 readonly asAccountId: AccountId32;1296 readonly asAccountId: AccountId32;1299 readonly type: 'AccountId' | 'CollectionAndNftTuple';1299 readonly type: 'AccountId' | 'CollectionAndNftTuple';1300 }1300 }130113011302 /** @name PalletRmrkEquipEvent (106) */1302 /** @name PalletRmrkEquipEvent (107) */1303 interface PalletRmrkEquipEvent extends Enum {1303 interface PalletRmrkEquipEvent extends Enum {1304 readonly isBaseCreated: boolean;1304 readonly isBaseCreated: boolean;1305 readonly asBaseCreated: {1305 readonly asBaseCreated: {1314 readonly type: 'BaseCreated' | 'EquippablesUpdated';1314 readonly type: 'BaseCreated' | 'EquippablesUpdated';1315 }1315 }131613161317 /** @name PalletAppPromotionEvent (107) */1317 /** @name PalletAppPromotionEvent (108) */1318 interface PalletAppPromotionEvent extends Enum {1318 interface PalletAppPromotionEvent extends Enum {1319 readonly isStakingRecalculation: boolean;1319 readonly isStakingRecalculation: boolean;1320 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1320 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1327 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1327 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1328 }1328 }132913291330 /** @name PalletForeignAssetsModuleEvent (108) */1330 /** @name PalletForeignAssetsModuleEvent (109) */1331 interface PalletForeignAssetsModuleEvent extends Enum {1331 interface PalletForeignAssetsModuleEvent extends Enum {1332 readonly isForeignAssetRegistered: boolean;1332 readonly isForeignAssetRegistered: boolean;1333 readonly asForeignAssetRegistered: {1333 readonly asForeignAssetRegistered: {1354 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1354 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1355 }1355 }135613561357 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1357 /** @name PalletForeignAssetsModuleAssetMetadata (110) */1358 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1358 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1359 readonly name: Bytes;1359 readonly name: Bytes;1360 readonly symbol: Bytes;1360 readonly symbol: Bytes;1361 readonly decimals: u8;1361 readonly decimals: u8;1362 readonly minimalBalance: u128;1362 readonly minimalBalance: u128;1363 }1363 }136413641365 /** @name PalletEvmEvent (110) */1365 /** @name PalletEvmEvent (111) */1366 interface PalletEvmEvent extends Enum {1366 interface PalletEvmEvent extends Enum {1367 readonly isLog: boolean;1367 readonly isLog: boolean;1368 readonly asLog: EthereumLog;1368 readonly asLog: EthereumLog;1381 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1381 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1382 }1382 }138313831384 /** @name EthereumLog (111) */1384 /** @name EthereumLog (112) */1385 interface EthereumLog extends Struct {1385 interface EthereumLog extends Struct {1386 readonly address: H160;1386 readonly address: H160;1387 readonly topics: Vec<H256>;1387 readonly topics: Vec<H256>;1388 readonly data: Bytes;1388 readonly data: Bytes;1389 }1389 }139013901391 /** @name PalletEthereumEvent (115) */1391 /** @name PalletEthereumEvent (116) */1392 interface PalletEthereumEvent extends Enum {1392 interface PalletEthereumEvent extends Enum {1393 readonly isExecuted: boolean;1393 readonly isExecuted: boolean;1394 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1394 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1395 readonly type: 'Executed';1395 readonly type: 'Executed';1396 }1396 }139713971398 /** @name EvmCoreErrorExitReason (116) */1398 /** @name EvmCoreErrorExitReason (117) */1399 interface EvmCoreErrorExitReason extends Enum {1399 interface EvmCoreErrorExitReason extends Enum {1400 readonly isSucceed: boolean;1400 readonly isSucceed: boolean;1401 readonly asSucceed: EvmCoreErrorExitSucceed;1401 readonly asSucceed: EvmCoreErrorExitSucceed;1408 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1408 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1409 }1409 }141014101411 /** @name EvmCoreErrorExitSucceed (117) */1411 /** @name EvmCoreErrorExitSucceed (118) */1412 interface EvmCoreErrorExitSucceed extends Enum {1412 interface EvmCoreErrorExitSucceed extends Enum {1413 readonly isStopped: boolean;1413 readonly isStopped: boolean;1414 readonly isReturned: boolean;1414 readonly isReturned: boolean;1415 readonly isSuicided: boolean;1415 readonly isSuicided: boolean;1416 readonly type: 'Stopped' | 'Returned' | 'Suicided';1416 readonly type: 'Stopped' | 'Returned' | 'Suicided';1417 }1417 }141814181419 /** @name EvmCoreErrorExitError (118) */1419 /** @name EvmCoreErrorExitError (119) */1420 interface EvmCoreErrorExitError extends Enum {1420 interface EvmCoreErrorExitError extends Enum {1421 readonly isStackUnderflow: boolean;1421 readonly isStackUnderflow: boolean;1422 readonly isStackOverflow: boolean;1422 readonly isStackOverflow: boolean;1437 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1437 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1438 }1438 }143914391440 /** @name EvmCoreErrorExitRevert (121) */1440 /** @name EvmCoreErrorExitRevert (122) */1441 interface EvmCoreErrorExitRevert extends Enum {1441 interface EvmCoreErrorExitRevert extends Enum {1442 readonly isReverted: boolean;1442 readonly isReverted: boolean;1443 readonly type: 'Reverted';1443 readonly type: 'Reverted';1444 }1444 }144514451446 /** @name EvmCoreErrorExitFatal (122) */1446 /** @name EvmCoreErrorExitFatal (123) */1447 interface EvmCoreErrorExitFatal extends Enum {1447 interface EvmCoreErrorExitFatal extends Enum {1448 readonly isNotSupported: boolean;1448 readonly isNotSupported: boolean;1449 readonly isUnhandledInterrupt: boolean;1449 readonly isUnhandledInterrupt: boolean;1454 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1454 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1455 }1455 }145614561457 /** @name PalletEvmContractHelpersEvent (123) */1457 /** @name PalletEvmContractHelpersEvent (124) */1458 interface PalletEvmContractHelpersEvent extends Enum {1458 interface PalletEvmContractHelpersEvent extends Enum {1459 readonly isContractSponsorSet: boolean;1459 readonly isContractSponsorSet: boolean;1460 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1460 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1465 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1465 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1466 }1466 }146714671468 /** @name FrameSystemPhase (124) */1468 /** @name FrameSystemPhase (125) */1469 interface FrameSystemPhase extends Enum {1469 interface FrameSystemPhase extends Enum {1470 readonly isApplyExtrinsic: boolean;1470 readonly isApplyExtrinsic: boolean;1471 readonly asApplyExtrinsic: u32;1471 readonly asApplyExtrinsic: u32;1474 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1474 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1475 }1475 }147614761477 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1477 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1478 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1478 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1479 readonly specVersion: Compact<u32>;1479 readonly specVersion: Compact<u32>;1480 readonly specName: Text;1480 readonly specName: Text;1481 }1481 }148214821483 /** @name FrameSystemCall (127) */1483 /** @name FrameSystemCall (128) */1484 interface FrameSystemCall extends Enum {1484 interface FrameSystemCall extends Enum {1485 readonly isFillBlock: boolean;1485 readonly isFillBlock: boolean;1486 readonly asFillBlock: {1486 readonly asFillBlock: {1522 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1522 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1523 }1523 }152415241525 /** @name FrameSystemLimitsBlockWeights (132) */1525 /** @name FrameSystemLimitsBlockWeights (133) */1526 interface FrameSystemLimitsBlockWeights extends Struct {1526 interface FrameSystemLimitsBlockWeights extends Struct {1527 readonly baseBlock: u64;1527 readonly baseBlock: Weight;1528 readonly maxBlock: u64;1528 readonly maxBlock: Weight;1529 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1529 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1530 }1530 }153115311532 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (133) */1532 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (134) */1533 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1533 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1534 readonly normal: FrameSystemLimitsWeightsPerClass;1534 readonly normal: FrameSystemLimitsWeightsPerClass;1535 readonly operational: FrameSystemLimitsWeightsPerClass;1535 readonly operational: FrameSystemLimitsWeightsPerClass;1536 readonly mandatory: FrameSystemLimitsWeightsPerClass;1536 readonly mandatory: FrameSystemLimitsWeightsPerClass;1537 }1537 }153815381539 /** @name FrameSystemLimitsWeightsPerClass (134) */1539 /** @name FrameSystemLimitsWeightsPerClass (135) */1540 interface FrameSystemLimitsWeightsPerClass extends Struct {1540 interface FrameSystemLimitsWeightsPerClass extends Struct {1541 readonly baseExtrinsic: u64;1541 readonly baseExtrinsic: Weight;1542 readonly maxExtrinsic: Option<u64>;1542 readonly maxExtrinsic: Option<Weight>;1543 readonly maxTotal: Option<u64>;1543 readonly maxTotal: Option<Weight>;1544 readonly reserved: Option<u64>;1544 readonly reserved: Option<Weight>;1545 }1545 }154615461547 /** @name FrameSystemLimitsBlockLength (136) */1547 /** @name FrameSystemLimitsBlockLength (137) */1548 interface FrameSystemLimitsBlockLength extends Struct {1548 interface FrameSystemLimitsBlockLength extends Struct {1549 readonly max: FrameSupportWeightsPerDispatchClassU32;1549 readonly max: FrameSupportWeightsPerDispatchClassU32;1550 }1550 }155115511552 /** @name FrameSupportWeightsPerDispatchClassU32 (137) */1552 /** @name FrameSupportWeightsPerDispatchClassU32 (138) */1553 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1553 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1554 readonly normal: u32;1554 readonly normal: u32;1555 readonly operational: u32;1555 readonly operational: u32;1556 readonly mandatory: u32;1556 readonly mandatory: u32;1557 }1557 }155815581559 /** @name FrameSupportWeightsRuntimeDbWeight (138) */1559 /** @name FrameSupportWeightsRuntimeDbWeight (139) */1560 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1560 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1561 readonly read: u64;1561 readonly read: u64;1562 readonly write: u64;1562 readonly write: u64;1563 }1563 }156415641565 /** @name SpVersionRuntimeVersion (139) */1565 /** @name SpVersionRuntimeVersion (140) */1566 interface SpVersionRuntimeVersion extends Struct {1566 interface SpVersionRuntimeVersion extends Struct {1567 readonly specName: Text;1567 readonly specName: Text;1568 readonly implName: Text;1568 readonly implName: Text;1574 readonly stateVersion: u8;1574 readonly stateVersion: u8;1575 }1575 }157615761577 /** @name FrameSystemError (144) */1577 /** @name FrameSystemError (145) */1578 interface FrameSystemError extends Enum {1578 interface FrameSystemError extends Enum {1579 readonly isInvalidSpecName: boolean;1579 readonly isInvalidSpecName: boolean;1580 readonly isSpecVersionNeedsToIncrease: boolean;1580 readonly isSpecVersionNeedsToIncrease: boolean;1585 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1585 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1586 }1586 }158715871588 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1588 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1589 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1589 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1590 readonly parentHead: Bytes;1590 readonly parentHead: Bytes;1591 readonly relayParentNumber: u32;1591 readonly relayParentNumber: u32;1592 readonly relayParentStorageRoot: H256;1592 readonly relayParentStorageRoot: H256;1593 readonly maxPovSize: u32;1593 readonly maxPovSize: u32;1594 }1594 }159515951596 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1596 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1597 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1597 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1598 readonly isPresent: boolean;1598 readonly isPresent: boolean;1599 readonly type: 'Present';1599 readonly type: 'Present';1600 }1600 }160116011602 /** @name SpTrieStorageProof (149) */1602 /** @name SpTrieStorageProof (150) */1603 interface SpTrieStorageProof extends Struct {1603 interface SpTrieStorageProof extends Struct {1604 readonly trieNodes: BTreeSet<Bytes>;1604 readonly trieNodes: BTreeSet<Bytes>;1605 }1605 }160616061607 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1607 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1608 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1608 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1609 readonly dmqMqcHead: H256;1609 readonly dmqMqcHead: H256;1610 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1610 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1611 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1611 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1612 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1612 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1613 }1613 }161416141615 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1615 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1616 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1616 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1617 readonly maxCapacity: u32;1617 readonly maxCapacity: u32;1618 readonly maxTotalSize: u32;1618 readonly maxTotalSize: u32;1622 readonly mqcHead: Option<H256>;1622 readonly mqcHead: Option<H256>;1623 }1623 }162416241625 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1625 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1626 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1626 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1627 readonly maxCodeSize: u32;1627 readonly maxCodeSize: u32;1628 readonly maxHeadDataSize: u32;1628 readonly maxHeadDataSize: u32;1635 readonly validationUpgradeDelay: u32;1635 readonly validationUpgradeDelay: u32;1636 }1636 }163716371638 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1638 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1639 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1639 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1640 readonly recipient: u32;1640 readonly recipient: u32;1641 readonly data: Bytes;1641 readonly data: Bytes;1642 }1642 }164316431644 /** @name CumulusPalletParachainSystemCall (162) */1644 /** @name CumulusPalletParachainSystemCall (163) */1645 interface CumulusPalletParachainSystemCall extends Enum {1645 interface CumulusPalletParachainSystemCall extends Enum {1646 readonly isSetValidationData: boolean;1646 readonly isSetValidationData: boolean;1647 readonly asSetValidationData: {1647 readonly asSetValidationData: {1662 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1662 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1663 }1663 }166416641665 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1665 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1666 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1666 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1667 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1667 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1668 readonly relayChainState: SpTrieStorageProof;1668 readonly relayChainState: SpTrieStorageProof;1669 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1669 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1670 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1670 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1671 }1671 }167216721673 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1673 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1674 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1674 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1675 readonly sentAt: u32;1675 readonly sentAt: u32;1676 readonly msg: Bytes;1676 readonly msg: Bytes;1677 }1677 }167816781679 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1679 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1680 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1680 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1681 readonly sentAt: u32;1681 readonly sentAt: u32;1682 readonly data: Bytes;1682 readonly data: Bytes;1683 }1683 }168416841685 /** @name CumulusPalletParachainSystemError (171) */1685 /** @name CumulusPalletParachainSystemError (172) */1686 interface CumulusPalletParachainSystemError extends Enum {1686 interface CumulusPalletParachainSystemError extends Enum {1687 readonly isOverlappingUpgrades: boolean;1687 readonly isOverlappingUpgrades: boolean;1688 readonly isProhibitedByPolkadot: boolean;1688 readonly isProhibitedByPolkadot: boolean;1695 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1695 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1696 }1696 }169716971698 /** @name PalletBalancesBalanceLock (173) */1698 /** @name PalletBalancesBalanceLock (174) */1699 interface PalletBalancesBalanceLock extends Struct {1699 interface PalletBalancesBalanceLock extends Struct {1700 readonly id: U8aFixed;1700 readonly id: U8aFixed;1701 readonly amount: u128;1701 readonly amount: u128;1702 readonly reasons: PalletBalancesReasons;1702 readonly reasons: PalletBalancesReasons;1703 }1703 }170417041705 /** @name PalletBalancesReasons (174) */1705 /** @name PalletBalancesReasons (175) */1706 interface PalletBalancesReasons extends Enum {1706 interface PalletBalancesReasons extends Enum {1707 readonly isFee: boolean;1707 readonly isFee: boolean;1708 readonly isMisc: boolean;1708 readonly isMisc: boolean;1709 readonly isAll: boolean;1709 readonly isAll: boolean;1710 readonly type: 'Fee' | 'Misc' | 'All';1710 readonly type: 'Fee' | 'Misc' | 'All';1711 }1711 }171217121713 /** @name PalletBalancesReserveData (177) */1713 /** @name PalletBalancesReserveData (178) */1714 interface PalletBalancesReserveData extends Struct {1714 interface PalletBalancesReserveData extends Struct {1715 readonly id: U8aFixed;1715 readonly id: U8aFixed;1716 readonly amount: u128;1716 readonly amount: u128;1717 }1717 }171817181719 /** @name PalletBalancesReleases (179) */1719 /** @name PalletBalancesReleases (180) */1720 interface PalletBalancesReleases extends Enum {1720 interface PalletBalancesReleases extends Enum {1721 readonly isV100: boolean;1721 readonly isV100: boolean;1722 readonly isV200: boolean;1722 readonly isV200: boolean;1723 readonly type: 'V100' | 'V200';1723 readonly type: 'V100' | 'V200';1724 }1724 }172517251726 /** @name PalletBalancesCall (180) */1726 /** @name PalletBalancesCall (181) */1727 interface PalletBalancesCall extends Enum {1727 interface PalletBalancesCall extends Enum {1728 readonly isTransfer: boolean;1728 readonly isTransfer: boolean;1729 readonly asTransfer: {1729 readonly asTransfer: {1760 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1760 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1761 }1761 }176217621763 /** @name PalletBalancesError (183) */1763 /** @name PalletBalancesError (184) */1764 interface PalletBalancesError extends Enum {1764 interface PalletBalancesError extends Enum {1765 readonly isVestingBalance: boolean;1765 readonly isVestingBalance: boolean;1766 readonly isLiquidityRestrictions: boolean;1766 readonly isLiquidityRestrictions: boolean;1773 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1773 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1774 }1774 }177517751776 /** @name PalletTimestampCall (185) */1776 /** @name PalletTimestampCall (186) */1777 interface PalletTimestampCall extends Enum {1777 interface PalletTimestampCall extends Enum {1778 readonly isSet: boolean;1778 readonly isSet: boolean;1779 readonly asSet: {1779 readonly asSet: {1782 readonly type: 'Set';1782 readonly type: 'Set';1783 }1783 }178417841785 /** @name PalletTransactionPaymentReleases (187) */1785 /** @name PalletTransactionPaymentReleases (188) */1786 interface PalletTransactionPaymentReleases extends Enum {1786 interface PalletTransactionPaymentReleases extends Enum {1787 readonly isV1Ancient: boolean;1787 readonly isV1Ancient: boolean;1788 readonly isV2: boolean;1788 readonly isV2: boolean;1789 readonly type: 'V1Ancient' | 'V2';1789 readonly type: 'V1Ancient' | 'V2';1790 }1790 }179117911792 /** @name PalletTreasuryProposal (188) */1792 /** @name PalletTreasuryProposal (189) */1793 interface PalletTreasuryProposal extends Struct {1793 interface PalletTreasuryProposal extends Struct {1794 readonly proposer: AccountId32;1794 readonly proposer: AccountId32;1795 readonly value: u128;1795 readonly value: u128;1796 readonly beneficiary: AccountId32;1796 readonly beneficiary: AccountId32;1797 readonly bond: u128;1797 readonly bond: u128;1798 }1798 }179917991800 /** @name PalletTreasuryCall (191) */1800 /** @name PalletTreasuryCall (192) */1801 interface PalletTreasuryCall extends Enum {1801 interface PalletTreasuryCall extends Enum {1802 readonly isProposeSpend: boolean;1802 readonly isProposeSpend: boolean;1803 readonly asProposeSpend: {1803 readonly asProposeSpend: {1824 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1824 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1825 }1825 }182618261827 /** @name FrameSupportPalletId (194) */1827 /** @name FrameSupportPalletId (195) */1828 interface FrameSupportPalletId extends U8aFixed {}1828 interface FrameSupportPalletId extends U8aFixed {}182918291830 /** @name PalletTreasuryError (195) */1830 /** @name PalletTreasuryError (196) */1831 interface PalletTreasuryError extends Enum {1831 interface PalletTreasuryError extends Enum {1832 readonly isInsufficientProposersBalance: boolean;1832 readonly isInsufficientProposersBalance: boolean;1833 readonly isInvalidIndex: boolean;1833 readonly isInvalidIndex: boolean;1837 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1837 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1838 }1838 }183918391840 /** @name PalletSudoCall (196) */1840 /** @name PalletSudoCall (197) */1841 interface PalletSudoCall extends Enum {1841 interface PalletSudoCall extends Enum {1842 readonly isSudo: boolean;1842 readonly isSudo: boolean;1843 readonly asSudo: {1843 readonly asSudo: {1846 readonly isSudoUncheckedWeight: boolean;1846 readonly isSudoUncheckedWeight: boolean;1847 readonly asSudoUncheckedWeight: {1847 readonly asSudoUncheckedWeight: {1848 readonly call: Call;1848 readonly call: Call;1849 readonly weight: u64;1849 readonly weight: Weight;1850 } & Struct;1850 } & Struct;1851 readonly isSetKey: boolean;1851 readonly isSetKey: boolean;1852 readonly asSetKey: {1852 readonly asSetKey: {1860 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1860 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1861 }1861 }186218621863 /** @name OrmlVestingModuleCall (198) */1863 /** @name OrmlVestingModuleCall (199) */1864 interface OrmlVestingModuleCall extends Enum {1864 interface OrmlVestingModuleCall extends Enum {1865 readonly isClaim: boolean;1865 readonly isClaim: boolean;1866 readonly isVestedTransfer: boolean;1866 readonly isVestedTransfer: boolean;1880 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1880 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1881 }1881 }188218821883 /** @name OrmlXtokensModuleCall (200) */1883 /** @name OrmlXtokensModuleCall (201) */1884 interface OrmlXtokensModuleCall extends Enum {1884 interface OrmlXtokensModuleCall extends Enum {1885 readonly isTransfer: boolean;1885 readonly isTransfer: boolean;1886 readonly asTransfer: {1886 readonly asTransfer: {1927 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1927 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1928 }1928 }192919291930 /** @name XcmVersionedMultiAsset (201) */1930 /** @name XcmVersionedMultiAsset (202) */1931 interface XcmVersionedMultiAsset extends Enum {1931 interface XcmVersionedMultiAsset extends Enum {1932 readonly isV0: boolean;1932 readonly isV0: boolean;1933 readonly asV0: XcmV0MultiAsset;1933 readonly asV0: XcmV0MultiAsset;1936 readonly type: 'V0' | 'V1';1936 readonly type: 'V0' | 'V1';1937 }1937 }193819381939 /** @name OrmlTokensModuleCall (204) */1939 /** @name OrmlTokensModuleCall (205) */1940 interface OrmlTokensModuleCall extends Enum {1940 interface OrmlTokensModuleCall extends Enum {1941 readonly isTransfer: boolean;1941 readonly isTransfer: boolean;1942 readonly asTransfer: {1942 readonly asTransfer: {1973 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1973 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1974 }1974 }197519751976 /** @name CumulusPalletXcmpQueueCall (205) */1976 /** @name CumulusPalletXcmpQueueCall (206) */1977 interface CumulusPalletXcmpQueueCall extends Enum {1977 interface CumulusPalletXcmpQueueCall extends Enum {1978 readonly isServiceOverweight: boolean;1978 readonly isServiceOverweight: boolean;1979 readonly asServiceOverweight: {1979 readonly asServiceOverweight: {1980 readonly index: u64;1980 readonly index: u64;1981 readonly weightLimit: u64;1981 readonly weightLimit: Weight;1982 } & Struct;1982 } & Struct;1983 readonly isSuspendXcmExecution: boolean;1983 readonly isSuspendXcmExecution: boolean;1984 readonly isResumeXcmExecution: boolean;1984 readonly isResumeXcmExecution: boolean;1996 } & Struct;1996 } & Struct;1997 readonly isUpdateThresholdWeight: boolean;1997 readonly isUpdateThresholdWeight: boolean;1998 readonly asUpdateThresholdWeight: {1998 readonly asUpdateThresholdWeight: {1999 readonly new_: u64;1999 readonly new_: Weight;2000 } & Struct;2000 } & Struct;2001 readonly isUpdateWeightRestrictDecay: boolean;2001 readonly isUpdateWeightRestrictDecay: boolean;2002 readonly asUpdateWeightRestrictDecay: {2002 readonly asUpdateWeightRestrictDecay: {2003 readonly new_: u64;2003 readonly new_: Weight;2004 } & Struct;2004 } & Struct;2005 readonly isUpdateXcmpMaxIndividualWeight: boolean;2005 readonly isUpdateXcmpMaxIndividualWeight: boolean;2006 readonly asUpdateXcmpMaxIndividualWeight: {2006 readonly asUpdateXcmpMaxIndividualWeight: {2007 readonly new_: u64;2007 readonly new_: Weight;2008 } & Struct;2008 } & Struct;2009 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2009 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2010 }2010 }201120112012 /** @name PalletXcmCall (206) */2012 /** @name PalletXcmCall (207) */2013 interface PalletXcmCall extends Enum {2013 interface PalletXcmCall extends Enum {2014 readonly isSend: boolean;2014 readonly isSend: boolean;2015 readonly asSend: {2015 readonly asSend: {2033 readonly isExecute: boolean;2033 readonly isExecute: boolean;2034 readonly asExecute: {2034 readonly asExecute: {2035 readonly message: XcmVersionedXcm;2035 readonly message: XcmVersionedXcm;2036 readonly maxWeight: u64;2036 readonly maxWeight: Weight;2037 } & Struct;2037 } & Struct;2038 readonly isForceXcmVersion: boolean;2038 readonly isForceXcmVersion: boolean;2039 readonly asForceXcmVersion: {2039 readonly asForceXcmVersion: {2071 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2071 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2072 }2072 }207320732074 /** @name XcmVersionedXcm (207) */2074 /** @name XcmVersionedXcm (208) */2075 interface XcmVersionedXcm extends Enum {2075 interface XcmVersionedXcm extends Enum {2076 readonly isV0: boolean;2076 readonly isV0: boolean;2077 readonly asV0: XcmV0Xcm;2077 readonly asV0: XcmV0Xcm;2082 readonly type: 'V0' | 'V1' | 'V2';2082 readonly type: 'V0' | 'V1' | 'V2';2083 }2083 }208420842085 /** @name XcmV0Xcm (208) */2085 /** @name XcmV0Xcm (209) */2086 interface XcmV0Xcm extends Enum {2086 interface XcmV0Xcm extends Enum {2087 readonly isWithdrawAsset: boolean;2087 readonly isWithdrawAsset: boolean;2088 readonly asWithdrawAsset: {2088 readonly asWithdrawAsset: {2145 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2145 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2146 }2146 }214721472148 /** @name XcmV0Order (210) */2148 /** @name XcmV0Order (211) */2149 interface XcmV0Order extends Enum {2149 interface XcmV0Order extends Enum {2150 readonly isNull: boolean;2150 readonly isNull: boolean;2151 readonly isDepositAsset: boolean;2151 readonly isDepositAsset: boolean;2193 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2193 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2194 }2194 }219521952196 /** @name XcmV0Response (212) */2196 /** @name XcmV0Response (213) */2197 interface XcmV0Response extends Enum {2197 interface XcmV0Response extends Enum {2198 readonly isAssets: boolean;2198 readonly isAssets: boolean;2199 readonly asAssets: Vec<XcmV0MultiAsset>;2199 readonly asAssets: Vec<XcmV0MultiAsset>;2200 readonly type: 'Assets';2200 readonly type: 'Assets';2201 }2201 }220222022203 /** @name XcmV1Xcm (213) */2203 /** @name XcmV1Xcm (214) */2204 interface XcmV1Xcm extends Enum {2204 interface XcmV1Xcm extends Enum {2205 readonly isWithdrawAsset: boolean;2205 readonly isWithdrawAsset: boolean;2206 readonly asWithdrawAsset: {2206 readonly asWithdrawAsset: {2269 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2269 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2270 }2270 }227122712272 /** @name XcmV1Order (215) */2272 /** @name XcmV1Order (216) */2273 interface XcmV1Order extends Enum {2273 interface XcmV1Order extends Enum {2274 readonly isNoop: boolean;2274 readonly isNoop: boolean;2275 readonly isDepositAsset: boolean;2275 readonly isDepositAsset: boolean;2319 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2319 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2320 }2320 }232123212322 /** @name XcmV1Response (217) */2322 /** @name XcmV1Response (218) */2323 interface XcmV1Response extends Enum {2323 interface XcmV1Response extends Enum {2324 readonly isAssets: boolean;2324 readonly isAssets: boolean;2325 readonly asAssets: XcmV1MultiassetMultiAssets;2325 readonly asAssets: XcmV1MultiassetMultiAssets;2328 readonly type: 'Assets' | 'Version';2328 readonly type: 'Assets' | 'Version';2329 }2329 }233023302331 /** @name CumulusPalletXcmCall (231) */2331 /** @name CumulusPalletXcmCall (232) */2332 type CumulusPalletXcmCall = Null;2332 type CumulusPalletXcmCall = Null;233323332334 /** @name CumulusPalletDmpQueueCall (232) */2334 /** @name CumulusPalletDmpQueueCall (233) */2335 interface CumulusPalletDmpQueueCall extends Enum {2335 interface CumulusPalletDmpQueueCall extends Enum {2336 readonly isServiceOverweight: boolean;2336 readonly isServiceOverweight: boolean;2337 readonly asServiceOverweight: {2337 readonly asServiceOverweight: {2338 readonly index: u64;2338 readonly index: u64;2339 readonly weightLimit: u64;2339 readonly weightLimit: Weight;2340 } & Struct;2340 } & Struct;2341 readonly type: 'ServiceOverweight';2341 readonly type: 'ServiceOverweight';2342 }2342 }234323432344 /** @name PalletInflationCall (233) */2344 /** @name PalletInflationCall (234) */2345 interface PalletInflationCall extends Enum {2345 interface PalletInflationCall extends Enum {2346 readonly isStartInflation: boolean;2346 readonly isStartInflation: boolean;2347 readonly asStartInflation: {2347 readonly asStartInflation: {2350 readonly type: 'StartInflation';2350 readonly type: 'StartInflation';2351 }2351 }235223522353 /** @name PalletUniqueCall (234) */2353 /** @name PalletUniqueCall (235) */2354 interface PalletUniqueCall extends Enum {2354 interface PalletUniqueCall extends Enum {2355 readonly isCreateCollection: boolean;2355 readonly isCreateCollection: boolean;2356 readonly asCreateCollection: {2356 readonly asCreateCollection: {2508 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';2508 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';2509 }2509 }251025102511 /** @name UpDataStructsCollectionMode (239) */2511 /** @name UpDataStructsCollectionMode (240) */2512 interface UpDataStructsCollectionMode extends Enum {2512 interface UpDataStructsCollectionMode extends Enum {2513 readonly isNft: boolean;2513 readonly isNft: boolean;2514 readonly isFungible: boolean;2514 readonly isFungible: boolean;2517 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2517 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2518 }2518 }251925192520 /** @name UpDataStructsCreateCollectionData (240) */2520 /** @name UpDataStructsCreateCollectionData (241) */2521 interface UpDataStructsCreateCollectionData extends Struct {2521 interface UpDataStructsCreateCollectionData extends Struct {2522 readonly mode: UpDataStructsCollectionMode;2522 readonly mode: UpDataStructsCollectionMode;2523 readonly access: Option<UpDataStructsAccessMode>;2523 readonly access: Option<UpDataStructsAccessMode>;2531 readonly properties: Vec<UpDataStructsProperty>;2531 readonly properties: Vec<UpDataStructsProperty>;2532 }2532 }253325332534 /** @name UpDataStructsAccessMode (242) */2534 /** @name UpDataStructsAccessMode (243) */2535 interface UpDataStructsAccessMode extends Enum {2535 interface UpDataStructsAccessMode extends Enum {2536 readonly isNormal: boolean;2536 readonly isNormal: boolean;2537 readonly isAllowList: boolean;2537 readonly isAllowList: boolean;2538 readonly type: 'Normal' | 'AllowList';2538 readonly type: 'Normal' | 'AllowList';2539 }2539 }254025402541 /** @name UpDataStructsCollectionLimits (244) */2541 /** @name UpDataStructsCollectionLimits (245) */2542 interface UpDataStructsCollectionLimits extends Struct {2542 interface UpDataStructsCollectionLimits extends Struct {2543 readonly accountTokenOwnershipLimit: Option<u32>;2543 readonly accountTokenOwnershipLimit: Option<u32>;2544 readonly sponsoredDataSize: Option<u32>;2544 readonly sponsoredDataSize: Option<u32>;2551 readonly transfersEnabled: Option<bool>;2551 readonly transfersEnabled: Option<bool>;2552 }2552 }255325532554 /** @name UpDataStructsSponsoringRateLimit (246) */2554 /** @name UpDataStructsSponsoringRateLimit (247) */2555 interface UpDataStructsSponsoringRateLimit extends Enum {2555 interface UpDataStructsSponsoringRateLimit extends Enum {2556 readonly isSponsoringDisabled: boolean;2556 readonly isSponsoringDisabled: boolean;2557 readonly isBlocks: boolean;2557 readonly isBlocks: boolean;2558 readonly asBlocks: u32;2558 readonly asBlocks: u32;2559 readonly type: 'SponsoringDisabled' | 'Blocks';2559 readonly type: 'SponsoringDisabled' | 'Blocks';2560 }2560 }256125612562 /** @name UpDataStructsCollectionPermissions (249) */2562 /** @name UpDataStructsCollectionPermissions (250) */2563 interface UpDataStructsCollectionPermissions extends Struct {2563 interface UpDataStructsCollectionPermissions extends Struct {2564 readonly access: Option<UpDataStructsAccessMode>;2564 readonly access: Option<UpDataStructsAccessMode>;2565 readonly mintMode: Option<bool>;2565 readonly mintMode: Option<bool>;2566 readonly nesting: Option<UpDataStructsNestingPermissions>;2566 readonly nesting: Option<UpDataStructsNestingPermissions>;2567 }2567 }256825682569 /** @name UpDataStructsNestingPermissions (251) */2569 /** @name UpDataStructsNestingPermissions (252) */2570 interface UpDataStructsNestingPermissions extends Struct {2570 interface UpDataStructsNestingPermissions extends Struct {2571 readonly tokenOwner: bool;2571 readonly tokenOwner: bool;2572 readonly collectionAdmin: bool;2572 readonly collectionAdmin: bool;2573 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2573 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2574 }2574 }257525752576 /** @name UpDataStructsOwnerRestrictedSet (253) */2576 /** @name UpDataStructsOwnerRestrictedSet (254) */2577 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2577 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}257825782579 /** @name UpDataStructsPropertyKeyPermission (258) */2579 /** @name UpDataStructsPropertyKeyPermission (259) */2580 interface UpDataStructsPropertyKeyPermission extends Struct {2580 interface UpDataStructsPropertyKeyPermission extends Struct {2581 readonly key: Bytes;2581 readonly key: Bytes;2582 readonly permission: UpDataStructsPropertyPermission;2582 readonly permission: UpDataStructsPropertyPermission;2583 }2583 }258425842585 /** @name UpDataStructsPropertyPermission (259) */2585 /** @name UpDataStructsPropertyPermission (260) */2586 interface UpDataStructsPropertyPermission extends Struct {2586 interface UpDataStructsPropertyPermission extends Struct {2587 readonly mutable: bool;2587 readonly mutable: bool;2588 readonly collectionAdmin: bool;2588 readonly collectionAdmin: bool;2589 readonly tokenOwner: bool;2589 readonly tokenOwner: bool;2590 }2590 }259125912592 /** @name UpDataStructsProperty (262) */2592 /** @name UpDataStructsProperty (263) */2593 interface UpDataStructsProperty extends Struct {2593 interface UpDataStructsProperty extends Struct {2594 readonly key: Bytes;2594 readonly key: Bytes;2595 readonly value: Bytes;2595 readonly value: Bytes;2596 }2596 }259725972598 /** @name UpDataStructsCreateItemData (265) */2598 /** @name UpDataStructsCreateItemData (266) */2599 interface UpDataStructsCreateItemData extends Enum {2599 interface UpDataStructsCreateItemData extends Enum {2600 readonly isNft: boolean;2600 readonly isNft: boolean;2601 readonly asNft: UpDataStructsCreateNftData;2601 readonly asNft: UpDataStructsCreateNftData;2606 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2606 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2607 }2607 }260826082609 /** @name UpDataStructsCreateNftData (266) */2609 /** @name UpDataStructsCreateNftData (267) */2610 interface UpDataStructsCreateNftData extends Struct {2610 interface UpDataStructsCreateNftData extends Struct {2611 readonly properties: Vec<UpDataStructsProperty>;2611 readonly properties: Vec<UpDataStructsProperty>;2612 }2612 }261326132614 /** @name UpDataStructsCreateFungibleData (267) */2614 /** @name UpDataStructsCreateFungibleData (268) */2615 interface UpDataStructsCreateFungibleData extends Struct {2615 interface UpDataStructsCreateFungibleData extends Struct {2616 readonly value: u128;2616 readonly value: u128;2617 }2617 }261826182619 /** @name UpDataStructsCreateReFungibleData (268) */2619 /** @name UpDataStructsCreateReFungibleData (269) */2620 interface UpDataStructsCreateReFungibleData extends Struct {2620 interface UpDataStructsCreateReFungibleData extends Struct {2621 readonly pieces: u128;2621 readonly pieces: u128;2622 readonly properties: Vec<UpDataStructsProperty>;2622 readonly properties: Vec<UpDataStructsProperty>;2623 }2623 }262426242625 /** @name UpDataStructsCreateItemExData (271) */2625 /** @name UpDataStructsCreateItemExData (272) */2626 interface UpDataStructsCreateItemExData extends Enum {2626 interface UpDataStructsCreateItemExData extends Enum {2627 readonly isNft: boolean;2627 readonly isNft: boolean;2628 readonly asNft: Vec<UpDataStructsCreateNftExData>;2628 readonly asNft: Vec<UpDataStructsCreateNftExData>;2635 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2635 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2636 }2636 }263726372638 /** @name UpDataStructsCreateNftExData (273) */2638 /** @name UpDataStructsCreateNftExData (274) */2639 interface UpDataStructsCreateNftExData extends Struct {2639 interface UpDataStructsCreateNftExData extends Struct {2640 readonly properties: Vec<UpDataStructsProperty>;2640 readonly properties: Vec<UpDataStructsProperty>;2641 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2641 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2642 }2642 }264326432644 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2644 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2645 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2645 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2646 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2646 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2647 readonly pieces: u128;2647 readonly pieces: u128;2648 readonly properties: Vec<UpDataStructsProperty>;2648 readonly properties: Vec<UpDataStructsProperty>;2649 }2649 }265026502651 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2651 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2652 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2652 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2653 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2653 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2654 readonly properties: Vec<UpDataStructsProperty>;2654 readonly properties: Vec<UpDataStructsProperty>;2655 }2655 }265626562657 /** @name PalletUniqueSchedulerCall (283) */2657 /** @name PalletUniqueSchedulerCall (284) */2658 interface PalletUniqueSchedulerCall extends Enum {2658 interface PalletUniqueSchedulerCall extends Enum {2659 readonly isScheduleNamed: boolean;2659 readonly isScheduleNamed: boolean;2660 readonly asScheduleNamed: {2660 readonly asScheduleNamed: {2679 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2679 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2680 }2680 }268126812682 /** @name FrameSupportScheduleMaybeHashed (285) */2682 /** @name FrameSupportScheduleMaybeHashed (286) */2683 interface FrameSupportScheduleMaybeHashed extends Enum {2683 interface FrameSupportScheduleMaybeHashed extends Enum {2684 readonly isValue: boolean;2684 readonly isValue: boolean;2685 readonly asValue: Call;2685 readonly asValue: Call;2688 readonly type: 'Value' | 'Hash';2688 readonly type: 'Value' | 'Hash';2689 }2689 }269026902691 /** @name PalletConfigurationCall (286) */2691 /** @name PalletConfigurationCall (287) */2692 interface PalletConfigurationCall extends Enum {2692 interface PalletConfigurationCall extends Enum {2693 readonly isSetWeightToFeeCoefficientOverride: boolean;2693 readonly isSetWeightToFeeCoefficientOverride: boolean;2694 readonly asSetWeightToFeeCoefficientOverride: {2694 readonly asSetWeightToFeeCoefficientOverride: {2701 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2701 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2702 }2702 }270327032704 /** @name PalletTemplateTransactionPaymentCall (287) */2704 /** @name PalletTemplateTransactionPaymentCall (289) */2705 type PalletTemplateTransactionPaymentCall = Null;2705 type PalletTemplateTransactionPaymentCall = Null;270627062707 /** @name PalletStructureCall (288) */2707 /** @name PalletStructureCall (290) */2708 type PalletStructureCall = Null;2708 type PalletStructureCall = Null;270927092710 /** @name PalletRmrkCoreCall (289) */2710 /** @name PalletRmrkCoreCall (291) */2711 interface PalletRmrkCoreCall extends Enum {2711 interface PalletRmrkCoreCall extends Enum {2712 readonly isCreateCollection: boolean;2712 readonly isCreateCollection: boolean;2713 readonly asCreateCollection: {2713 readonly asCreateCollection: {2813 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2813 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2814 }2814 }281528152816 /** @name RmrkTraitsResourceResourceTypes (295) */2816 /** @name RmrkTraitsResourceResourceTypes (297) */2817 interface RmrkTraitsResourceResourceTypes extends Enum {2817 interface RmrkTraitsResourceResourceTypes extends Enum {2818 readonly isBasic: boolean;2818 readonly isBasic: boolean;2819 readonly asBasic: RmrkTraitsResourceBasicResource;2819 readonly asBasic: RmrkTraitsResourceBasicResource;2824 readonly type: 'Basic' | 'Composable' | 'Slot';2824 readonly type: 'Basic' | 'Composable' | 'Slot';2825 }2825 }282628262827 /** @name RmrkTraitsResourceBasicResource (297) */2827 /** @name RmrkTraitsResourceBasicResource (299) */2828 interface RmrkTraitsResourceBasicResource extends Struct {2828 interface RmrkTraitsResourceBasicResource extends Struct {2829 readonly src: Option<Bytes>;2829 readonly src: Option<Bytes>;2830 readonly metadata: Option<Bytes>;2830 readonly metadata: Option<Bytes>;2831 readonly license: Option<Bytes>;2831 readonly license: Option<Bytes>;2832 readonly thumb: Option<Bytes>;2832 readonly thumb: Option<Bytes>;2833 }2833 }283428342835 /** @name RmrkTraitsResourceComposableResource (299) */2835 /** @name RmrkTraitsResourceComposableResource (301) */2836 interface RmrkTraitsResourceComposableResource extends Struct {2836 interface RmrkTraitsResourceComposableResource extends Struct {2837 readonly parts: Vec<u32>;2837 readonly parts: Vec<u32>;2838 readonly base: u32;2838 readonly base: u32;2842 readonly thumb: Option<Bytes>;2842 readonly thumb: Option<Bytes>;2843 }2843 }284428442845 /** @name RmrkTraitsResourceSlotResource (300) */2845 /** @name RmrkTraitsResourceSlotResource (302) */2846 interface RmrkTraitsResourceSlotResource extends Struct {2846 interface RmrkTraitsResourceSlotResource extends Struct {2847 readonly base: u32;2847 readonly base: u32;2848 readonly src: Option<Bytes>;2848 readonly src: Option<Bytes>;2852 readonly thumb: Option<Bytes>;2852 readonly thumb: Option<Bytes>;2853 }2853 }285428542855 /** @name PalletRmrkEquipCall (303) */2855 /** @name PalletRmrkEquipCall (305) */2856 interface PalletRmrkEquipCall extends Enum {2856 interface PalletRmrkEquipCall extends Enum {2857 readonly isCreateBase: boolean;2857 readonly isCreateBase: boolean;2858 readonly asCreateBase: {2858 readonly asCreateBase: {2874 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2874 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2875 }2875 }287628762877 /** @name RmrkTraitsPartPartType (306) */2877 /** @name RmrkTraitsPartPartType (308) */2878 interface RmrkTraitsPartPartType extends Enum {2878 interface RmrkTraitsPartPartType extends Enum {2879 readonly isFixedPart: boolean;2879 readonly isFixedPart: boolean;2880 readonly asFixedPart: RmrkTraitsPartFixedPart;2880 readonly asFixedPart: RmrkTraitsPartFixedPart;2883 readonly type: 'FixedPart' | 'SlotPart';2883 readonly type: 'FixedPart' | 'SlotPart';2884 }2884 }288528852886 /** @name RmrkTraitsPartFixedPart (308) */2886 /** @name RmrkTraitsPartFixedPart (310) */2887 interface RmrkTraitsPartFixedPart extends Struct {2887 interface RmrkTraitsPartFixedPart extends Struct {2888 readonly id: u32;2888 readonly id: u32;2889 readonly z: u32;2889 readonly z: u32;2890 readonly src: Bytes;2890 readonly src: Bytes;2891 }2891 }289228922893 /** @name RmrkTraitsPartSlotPart (309) */2893 /** @name RmrkTraitsPartSlotPart (311) */2894 interface RmrkTraitsPartSlotPart extends Struct {2894 interface RmrkTraitsPartSlotPart extends Struct {2895 readonly id: u32;2895 readonly id: u32;2896 readonly equippable: RmrkTraitsPartEquippableList;2896 readonly equippable: RmrkTraitsPartEquippableList;2897 readonly src: Bytes;2897 readonly src: Bytes;2898 readonly z: u32;2898 readonly z: u32;2899 }2899 }290029002901 /** @name RmrkTraitsPartEquippableList (310) */2901 /** @name RmrkTraitsPartEquippableList (312) */2902 interface RmrkTraitsPartEquippableList extends Enum {2902 interface RmrkTraitsPartEquippableList extends Enum {2903 readonly isAll: boolean;2903 readonly isAll: boolean;2904 readonly isEmpty: boolean;2904 readonly isEmpty: boolean;2907 readonly type: 'All' | 'Empty' | 'Custom';2907 readonly type: 'All' | 'Empty' | 'Custom';2908 }2908 }290929092910 /** @name RmrkTraitsTheme (312) */2910 /** @name RmrkTraitsTheme (314) */2911 interface RmrkTraitsTheme extends Struct {2911 interface RmrkTraitsTheme extends Struct {2912 readonly name: Bytes;2912 readonly name: Bytes;2913 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2913 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2914 readonly inherit: bool;2914 readonly inherit: bool;2915 }2915 }291629162917 /** @name RmrkTraitsThemeThemeProperty (314) */2917 /** @name RmrkTraitsThemeThemeProperty (316) */2918 interface RmrkTraitsThemeThemeProperty extends Struct {2918 interface RmrkTraitsThemeThemeProperty extends Struct {2919 readonly key: Bytes;2919 readonly key: Bytes;2920 readonly value: Bytes;2920 readonly value: Bytes;2921 }2921 }292229222923 /** @name PalletAppPromotionCall (316) */2923 /** @name PalletAppPromotionCall (318) */2924 interface PalletAppPromotionCall extends Enum {2924 interface PalletAppPromotionCall extends Enum {2925 readonly isSetAdminAddress: boolean;2925 readonly isSetAdminAddress: boolean;2926 readonly asSetAdminAddress: {2926 readonly asSetAdminAddress: {2954 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2954 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2955 }2955 }295629562957 /** @name PalletForeignAssetsModuleCall (318) */2957 /** @name PalletForeignAssetsModuleCall (320) */2958 interface PalletForeignAssetsModuleCall extends Enum {2958 interface PalletForeignAssetsModuleCall extends Enum {2959 readonly isRegisterForeignAsset: boolean;2959 readonly isRegisterForeignAsset: boolean;2960 readonly asRegisterForeignAsset: {2960 readonly asRegisterForeignAsset: {2971 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2971 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2972 }2972 }297329732974 /** @name PalletEvmCall (319) */2974 /** @name PalletEvmCall (321) */2975 interface PalletEvmCall extends Enum {2975 interface PalletEvmCall extends Enum {2976 readonly isWithdraw: boolean;2976 readonly isWithdraw: boolean;2977 readonly asWithdraw: {2977 readonly asWithdraw: {3016 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3016 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3017 }3017 }301830183019 /** @name PalletEthereumCall (323) */3019 /** @name PalletEthereumCall (325) */3020 interface PalletEthereumCall extends Enum {3020 interface PalletEthereumCall extends Enum {3021 readonly isTransact: boolean;3021 readonly isTransact: boolean;3022 readonly asTransact: {3022 readonly asTransact: {3025 readonly type: 'Transact';3025 readonly type: 'Transact';3026 }3026 }302730273028 /** @name EthereumTransactionTransactionV2 (324) */3028 /** @name EthereumTransactionTransactionV2 (326) */3029 interface EthereumTransactionTransactionV2 extends Enum {3029 interface EthereumTransactionTransactionV2 extends Enum {3030 readonly isLegacy: boolean;3030 readonly isLegacy: boolean;3031 readonly asLegacy: EthereumTransactionLegacyTransaction;3031 readonly asLegacy: EthereumTransactionLegacyTransaction;3036 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3036 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3037 }3037 }303830383039 /** @name EthereumTransactionLegacyTransaction (325) */3039 /** @name EthereumTransactionLegacyTransaction (327) */3040 interface EthereumTransactionLegacyTransaction extends Struct {3040 interface EthereumTransactionLegacyTransaction extends Struct {3041 readonly nonce: U256;3041 readonly nonce: U256;3042 readonly gasPrice: U256;3042 readonly gasPrice: U256;3047 readonly signature: EthereumTransactionTransactionSignature;3047 readonly signature: EthereumTransactionTransactionSignature;3048 }3048 }304930493050 /** @name EthereumTransactionTransactionAction (326) */3050 /** @name EthereumTransactionTransactionAction (328) */3051 interface EthereumTransactionTransactionAction extends Enum {3051 interface EthereumTransactionTransactionAction extends Enum {3052 readonly isCall: boolean;3052 readonly isCall: boolean;3053 readonly asCall: H160;3053 readonly asCall: H160;3054 readonly isCreate: boolean;3054 readonly isCreate: boolean;3055 readonly type: 'Call' | 'Create';3055 readonly type: 'Call' | 'Create';3056 }3056 }305730573058 /** @name EthereumTransactionTransactionSignature (327) */3058 /** @name EthereumTransactionTransactionSignature (329) */3059 interface EthereumTransactionTransactionSignature extends Struct {3059 interface EthereumTransactionTransactionSignature extends Struct {3060 readonly v: u64;3060 readonly v: u64;3061 readonly r: H256;3061 readonly r: H256;3062 readonly s: H256;3062 readonly s: H256;3063 }3063 }306430643065 /** @name EthereumTransactionEip2930Transaction (329) */3065 /** @name EthereumTransactionEip2930Transaction (331) */3066 interface EthereumTransactionEip2930Transaction extends Struct {3066 interface EthereumTransactionEip2930Transaction extends Struct {3067 readonly chainId: u64;3067 readonly chainId: u64;3068 readonly nonce: U256;3068 readonly nonce: U256;3077 readonly s: H256;3077 readonly s: H256;3078 }3078 }307930793080 /** @name EthereumTransactionAccessListItem (331) */3080 /** @name EthereumTransactionAccessListItem (333) */3081 interface EthereumTransactionAccessListItem extends Struct {3081 interface EthereumTransactionAccessListItem extends Struct {3082 readonly address: H160;3082 readonly address: H160;3083 readonly storageKeys: Vec<H256>;3083 readonly storageKeys: Vec<H256>;3084 }3084 }308530853086 /** @name EthereumTransactionEip1559Transaction (332) */3086 /** @name EthereumTransactionEip1559Transaction (334) */3087 interface EthereumTransactionEip1559Transaction extends Struct {3087 interface EthereumTransactionEip1559Transaction extends Struct {3088 readonly chainId: u64;3088 readonly chainId: u64;3089 readonly nonce: U256;3089 readonly nonce: U256;3099 readonly s: H256;3099 readonly s: H256;3100 }3100 }310131013102 /** @name PalletEvmMigrationCall (333) */3102 /** @name PalletEvmMigrationCall (335) */3103 interface PalletEvmMigrationCall extends Enum {3103 interface PalletEvmMigrationCall extends Enum {3104 readonly isBegin: boolean;3104 readonly isBegin: boolean;3105 readonly asBegin: {3105 readonly asBegin: {3118 readonly type: 'Begin' | 'SetData' | 'Finish';3118 readonly type: 'Begin' | 'SetData' | 'Finish';3119 }3119 }312031203121 /** @name PalletSudoError (336) */3121 /** @name PalletSudoError (338) */3122 interface PalletSudoError extends Enum {3122 interface PalletSudoError extends Enum {3123 readonly isRequireSudo: boolean;3123 readonly isRequireSudo: boolean;3124 readonly type: 'RequireSudo';3124 readonly type: 'RequireSudo';3125 }3125 }312631263127 /** @name OrmlVestingModuleError (338) */3127 /** @name OrmlVestingModuleError (340) */3128 interface OrmlVestingModuleError extends Enum {3128 interface OrmlVestingModuleError extends Enum {3129 readonly isZeroVestingPeriod: boolean;3129 readonly isZeroVestingPeriod: boolean;3130 readonly isZeroVestingPeriodCount: boolean;3130 readonly isZeroVestingPeriodCount: boolean;3135 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3135 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3136 }3136 }313731373138 /** @name OrmlXtokensModuleError (339) */3138 /** @name OrmlXtokensModuleError (341) */3139 interface OrmlXtokensModuleError extends Enum {3139 interface OrmlXtokensModuleError extends Enum {3140 readonly isAssetHasNoReserve: boolean;3140 readonly isAssetHasNoReserve: boolean;3141 readonly isNotCrossChainTransfer: boolean;3141 readonly isNotCrossChainTransfer: boolean;3159 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3159 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3160 }3160 }316131613162 /** @name OrmlTokensBalanceLock (342) */3162 /** @name OrmlTokensBalanceLock (344) */3163 interface OrmlTokensBalanceLock extends Struct {3163 interface OrmlTokensBalanceLock extends Struct {3164 readonly id: U8aFixed;3164 readonly id: U8aFixed;3165 readonly amount: u128;3165 readonly amount: u128;3166 }3166 }316731673168 /** @name OrmlTokensAccountData (344) */3168 /** @name OrmlTokensAccountData (346) */3169 interface OrmlTokensAccountData extends Struct {3169 interface OrmlTokensAccountData extends Struct {3170 readonly free: u128;3170 readonly free: u128;3171 readonly reserved: u128;3171 readonly reserved: u128;3172 readonly frozen: u128;3172 readonly frozen: u128;3173 }3173 }317431743175 /** @name OrmlTokensReserveData (346) */3175 /** @name OrmlTokensReserveData (348) */3176 interface OrmlTokensReserveData extends Struct {3176 interface OrmlTokensReserveData extends Struct {3177 readonly id: Null;3177 readonly id: Null;3178 readonly amount: u128;3178 readonly amount: u128;3179 }3179 }318031803181 /** @name OrmlTokensModuleError (348) */3181 /** @name OrmlTokensModuleError (350) */3182 interface OrmlTokensModuleError extends Enum {3182 interface OrmlTokensModuleError extends Enum {3183 readonly isBalanceTooLow: boolean;3183 readonly isBalanceTooLow: boolean;3184 readonly isAmountIntoBalanceFailed: boolean;3184 readonly isAmountIntoBalanceFailed: boolean;3191 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3191 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3192 }3192 }319331933194 /** @name CumulusPalletXcmpQueueInboundChannelDetails (350) */3194 /** @name CumulusPalletXcmpQueueInboundChannelDetails (352) */3195 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3195 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3196 readonly sender: u32;3196 readonly sender: u32;3197 readonly state: CumulusPalletXcmpQueueInboundState;3197 readonly state: CumulusPalletXcmpQueueInboundState;3198 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3198 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3199 }3199 }320032003201 /** @name CumulusPalletXcmpQueueInboundState (351) */3201 /** @name CumulusPalletXcmpQueueInboundState (353) */3202 interface CumulusPalletXcmpQueueInboundState extends Enum {3202 interface CumulusPalletXcmpQueueInboundState extends Enum {3203 readonly isOk: boolean;3203 readonly isOk: boolean;3204 readonly isSuspended: boolean;3204 readonly isSuspended: boolean;3205 readonly type: 'Ok' | 'Suspended';3205 readonly type: 'Ok' | 'Suspended';3206 }3206 }320732073208 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (354) */3208 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (356) */3209 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3209 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3210 readonly isConcatenatedVersionedXcm: boolean;3210 readonly isConcatenatedVersionedXcm: boolean;3211 readonly isConcatenatedEncodedBlob: boolean;3211 readonly isConcatenatedEncodedBlob: boolean;3212 readonly isSignals: boolean;3212 readonly isSignals: boolean;3213 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3213 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3214 }3214 }321532153216 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (357) */3216 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (359) */3217 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3217 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3218 readonly recipient: u32;3218 readonly recipient: u32;3219 readonly state: CumulusPalletXcmpQueueOutboundState;3219 readonly state: CumulusPalletXcmpQueueOutboundState;3222 readonly lastIndex: u16;3222 readonly lastIndex: u16;3223 }3223 }322432243225 /** @name CumulusPalletXcmpQueueOutboundState (358) */3225 /** @name CumulusPalletXcmpQueueOutboundState (360) */3226 interface CumulusPalletXcmpQueueOutboundState extends Enum {3226 interface CumulusPalletXcmpQueueOutboundState extends Enum {3227 readonly isOk: boolean;3227 readonly isOk: boolean;3228 readonly isSuspended: boolean;3228 readonly isSuspended: boolean;3229 readonly type: 'Ok' | 'Suspended';3229 readonly type: 'Ok' | 'Suspended';3230 }3230 }323132313232 /** @name CumulusPalletXcmpQueueQueueConfigData (360) */3232 /** @name CumulusPalletXcmpQueueQueueConfigData (362) */3233 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3233 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3234 readonly suspendThreshold: u32;3234 readonly suspendThreshold: u32;3235 readonly dropThreshold: u32;3235 readonly dropThreshold: u32;3236 readonly resumeThreshold: u32;3236 readonly resumeThreshold: u32;3237 readonly thresholdWeight: u64;3237 readonly thresholdWeight: Weight;3238 readonly weightRestrictDecay: u64;3238 readonly weightRestrictDecay: Weight;3239 readonly xcmpMaxIndividualWeight: u64;3239 readonly xcmpMaxIndividualWeight: Weight;3240 }3240 }324132413242 /** @name CumulusPalletXcmpQueueError (362) */3242 /** @name CumulusPalletXcmpQueueError (364) */3243 interface CumulusPalletXcmpQueueError extends Enum {3243 interface CumulusPalletXcmpQueueError extends Enum {3244 readonly isFailedToSend: boolean;3244 readonly isFailedToSend: boolean;3245 readonly isBadXcmOrigin: boolean;3245 readonly isBadXcmOrigin: boolean;3249 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3249 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3250 }3250 }325132513252 /** @name PalletXcmError (363) */3252 /** @name PalletXcmError (365) */3253 interface PalletXcmError extends Enum {3253 interface PalletXcmError extends Enum {3254 readonly isUnreachable: boolean;3254 readonly isUnreachable: boolean;3255 readonly isSendFailure: boolean;3255 readonly isSendFailure: boolean;3267 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3267 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3268 }3268 }326932693270 /** @name CumulusPalletXcmError (364) */3270 /** @name CumulusPalletXcmError (366) */3271 type CumulusPalletXcmError = Null;3271 type CumulusPalletXcmError = Null;327232723273 /** @name CumulusPalletDmpQueueConfigData (365) */3273 /** @name CumulusPalletDmpQueueConfigData (367) */3274 interface CumulusPalletDmpQueueConfigData extends Struct {3274 interface CumulusPalletDmpQueueConfigData extends Struct {3275 readonly maxIndividual: u64;3275 readonly maxIndividual: Weight;3276 }3276 }327732773278 /** @name CumulusPalletDmpQueuePageIndexData (366) */3278 /** @name CumulusPalletDmpQueuePageIndexData (368) */3279 interface CumulusPalletDmpQueuePageIndexData extends Struct {3279 interface CumulusPalletDmpQueuePageIndexData extends Struct {3280 readonly beginUsed: u32;3280 readonly beginUsed: u32;3281 readonly endUsed: u32;3281 readonly endUsed: u32;3282 readonly overweightCount: u64;3282 readonly overweightCount: u64;3283 }3283 }328432843285 /** @name CumulusPalletDmpQueueError (369) */3285 /** @name CumulusPalletDmpQueueError (371) */3286 interface CumulusPalletDmpQueueError extends Enum {3286 interface CumulusPalletDmpQueueError extends Enum {3287 readonly isUnknown: boolean;3287 readonly isUnknown: boolean;3288 readonly isOverLimit: boolean;3288 readonly isOverLimit: boolean;3289 readonly type: 'Unknown' | 'OverLimit';3289 readonly type: 'Unknown' | 'OverLimit';3290 }3290 }329132913292 /** @name PalletUniqueError (373) */3292 /** @name PalletUniqueError (375) */3293 interface PalletUniqueError extends Enum {3293 interface PalletUniqueError extends Enum {3294 readonly isCollectionDecimalPointLimitExceeded: boolean;3294 readonly isCollectionDecimalPointLimitExceeded: boolean;3295 readonly isConfirmUnsetSponsorFail: boolean;3295 readonly isConfirmUnsetSponsorFail: boolean;3298 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3298 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3299 }3299 }330033003301 /** @name PalletUniqueSchedulerScheduledV3 (376) */3301 /** @name PalletUniqueSchedulerScheduledV3 (378) */3302 interface PalletUniqueSchedulerScheduledV3 extends Struct {3302 interface PalletUniqueSchedulerScheduledV3 extends Struct {3303 readonly maybeId: Option<U8aFixed>;3303 readonly maybeId: Option<U8aFixed>;3304 readonly priority: u8;3304 readonly priority: u8;3307 readonly origin: OpalRuntimeOriginCaller;3307 readonly origin: OpalRuntimeOriginCaller;3308 }3308 }330933093310 /** @name OpalRuntimeOriginCaller (377) */3310 /** @name OpalRuntimeOriginCaller (379) */3311 interface OpalRuntimeOriginCaller extends Enum {3311 interface OpalRuntimeOriginCaller extends Enum {3312 readonly isSystem: boolean;3312 readonly isSystem: boolean;3313 readonly asSystem: FrameSupportDispatchRawOrigin;3313 readonly asSystem: FrameSupportDispatchRawOrigin;3321 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3321 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3322 }3322 }332333233324 /** @name FrameSupportDispatchRawOrigin (378) */3324 /** @name FrameSupportDispatchRawOrigin (380) */3325 interface FrameSupportDispatchRawOrigin extends Enum {3325 interface FrameSupportDispatchRawOrigin extends Enum {3326 readonly isRoot: boolean;3326 readonly isRoot: boolean;3327 readonly isSigned: boolean;3327 readonly isSigned: boolean;3330 readonly type: 'Root' | 'Signed' | 'None';3330 readonly type: 'Root' | 'Signed' | 'None';3331 }3331 }333233323333 /** @name PalletXcmOrigin (379) */3333 /** @name PalletXcmOrigin (381) */3334 interface PalletXcmOrigin extends Enum {3334 interface PalletXcmOrigin extends Enum {3335 readonly isXcm: boolean;3335 readonly isXcm: boolean;3336 readonly asXcm: XcmV1MultiLocation;3336 readonly asXcm: XcmV1MultiLocation;3339 readonly type: 'Xcm' | 'Response';3339 readonly type: 'Xcm' | 'Response';3340 }3340 }334133413342 /** @name CumulusPalletXcmOrigin (380) */3342 /** @name CumulusPalletXcmOrigin (382) */3343 interface CumulusPalletXcmOrigin extends Enum {3343 interface CumulusPalletXcmOrigin extends Enum {3344 readonly isRelay: boolean;3344 readonly isRelay: boolean;3345 readonly isSiblingParachain: boolean;3345 readonly isSiblingParachain: boolean;3346 readonly asSiblingParachain: u32;3346 readonly asSiblingParachain: u32;3347 readonly type: 'Relay' | 'SiblingParachain';3347 readonly type: 'Relay' | 'SiblingParachain';3348 }3348 }334933493350 /** @name PalletEthereumRawOrigin (381) */3350 /** @name PalletEthereumRawOrigin (383) */3351 interface PalletEthereumRawOrigin extends Enum {3351 interface PalletEthereumRawOrigin extends Enum {3352 readonly isEthereumTransaction: boolean;3352 readonly isEthereumTransaction: boolean;3353 readonly asEthereumTransaction: H160;3353 readonly asEthereumTransaction: H160;3354 readonly type: 'EthereumTransaction';3354 readonly type: 'EthereumTransaction';3355 }3355 }335633563357 /** @name SpCoreVoid (382) */3357 /** @name SpCoreVoid (384) */3358 type SpCoreVoid = Null;3358 type SpCoreVoid = Null;335933593360 /** @name PalletUniqueSchedulerError (383) */3360 /** @name PalletUniqueSchedulerError (385) */3361 interface PalletUniqueSchedulerError extends Enum {3361 interface PalletUniqueSchedulerError extends Enum {3362 readonly isFailedToSchedule: boolean;3362 readonly isFailedToSchedule: boolean;3363 readonly isNotFound: boolean;3363 readonly isNotFound: boolean;3366 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3366 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3367 }3367 }336833683369 /** @name UpDataStructsCollection (384) */3369 /** @name UpDataStructsCollection (386) */3370 interface UpDataStructsCollection extends Struct {3370 interface UpDataStructsCollection extends Struct {3371 readonly owner: AccountId32;3371 readonly owner: AccountId32;3372 readonly mode: UpDataStructsCollectionMode;3372 readonly mode: UpDataStructsCollectionMode;3379 readonly flags: U8aFixed;3379 readonly flags: U8aFixed;3380 }3380 }338133813382 /** @name UpDataStructsSponsorshipStateAccountId32 (385) */3382 /** @name UpDataStructsSponsorshipStateAccountId32 (387) */3383 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3383 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3384 readonly isDisabled: boolean;3384 readonly isDisabled: boolean;3385 readonly isUnconfirmed: boolean;3385 readonly isUnconfirmed: boolean;3389 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3389 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3390 }3390 }339133913392 /** @name UpDataStructsProperties (387) */3392 /** @name UpDataStructsProperties (389) */3393 interface UpDataStructsProperties extends Struct {3393 interface UpDataStructsProperties extends Struct {3394 readonly map: UpDataStructsPropertiesMapBoundedVec;3394 readonly map: UpDataStructsPropertiesMapBoundedVec;3395 readonly consumedSpace: u32;3395 readonly consumedSpace: u32;3396 readonly spaceLimit: u32;3396 readonly spaceLimit: u32;3397 }3397 }339833983399 /** @name UpDataStructsPropertiesMapBoundedVec (388) */3399 /** @name UpDataStructsPropertiesMapBoundedVec (390) */3400 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3400 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}340134013402 /** @name UpDataStructsPropertiesMapPropertyPermission (393) */3402 /** @name UpDataStructsPropertiesMapPropertyPermission (395) */3403 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3403 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}340434043405 /** @name UpDataStructsCollectionStats (400) */3405 /** @name UpDataStructsCollectionStats (402) */3406 interface UpDataStructsCollectionStats extends Struct {3406 interface UpDataStructsCollectionStats extends Struct {3407 readonly created: u32;3407 readonly created: u32;3408 readonly destroyed: u32;3408 readonly destroyed: u32;3409 readonly alive: u32;3409 readonly alive: u32;3410 }3410 }341134113412 /** @name UpDataStructsTokenChild (401) */3412 /** @name UpDataStructsTokenChild (403) */3413 interface UpDataStructsTokenChild extends Struct {3413 interface UpDataStructsTokenChild extends Struct {3414 readonly token: u32;3414 readonly token: u32;3415 readonly collection: u32;3415 readonly collection: u32;3416 }3416 }341734173418 /** @name PhantomTypeUpDataStructs (402) */3418 /** @name PhantomTypeUpDataStructs (404) */3419 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3419 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}342034203421 /** @name UpDataStructsTokenData (404) */3421 /** @name UpDataStructsTokenData (406) */3422 interface UpDataStructsTokenData extends Struct {3422 interface UpDataStructsTokenData extends Struct {3423 readonly properties: Vec<UpDataStructsProperty>;3423 readonly properties: Vec<UpDataStructsProperty>;3424 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3424 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3425 readonly pieces: u128;3425 readonly pieces: u128;3426 }3426 }342734273428 /** @name UpDataStructsRpcCollection (406) */3428 /** @name UpDataStructsRpcCollection (408) */3429 interface UpDataStructsRpcCollection extends Struct {3429 interface UpDataStructsRpcCollection extends Struct {3430 readonly owner: AccountId32;3430 readonly owner: AccountId32;3431 readonly mode: UpDataStructsCollectionMode;3431 readonly mode: UpDataStructsCollectionMode;3441 readonly foreign: bool;3441 readonly foreign: bool;3442 }3442 }344334433444 /** @name RmrkTraitsCollectionCollectionInfo (407) */3444 /** @name RmrkTraitsCollectionCollectionInfo (409) */3445 interface RmrkTraitsCollectionCollectionInfo extends Struct {3445 interface RmrkTraitsCollectionCollectionInfo extends Struct {3446 readonly issuer: AccountId32;3446 readonly issuer: AccountId32;3447 readonly metadata: Bytes;3447 readonly metadata: Bytes;3450 readonly nftsCount: u32;3450 readonly nftsCount: u32;3451 }3451 }345234523453 /** @name RmrkTraitsNftNftInfo (408) */3453 /** @name RmrkTraitsNftNftInfo (410) */3454 interface RmrkTraitsNftNftInfo extends Struct {3454 interface RmrkTraitsNftNftInfo extends Struct {3455 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3455 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3456 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3456 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3459 readonly pending: bool;3459 readonly pending: bool;3460 }3460 }346134613462 /** @name RmrkTraitsNftRoyaltyInfo (410) */3462 /** @name RmrkTraitsNftRoyaltyInfo (412) */3463 interface RmrkTraitsNftRoyaltyInfo extends Struct {3463 interface RmrkTraitsNftRoyaltyInfo extends Struct {3464 readonly recipient: AccountId32;3464 readonly recipient: AccountId32;3465 readonly amount: Permill;3465 readonly amount: Permill;3466 }3466 }346734673468 /** @name RmrkTraitsResourceResourceInfo (411) */3468 /** @name RmrkTraitsResourceResourceInfo (413) */3469 interface RmrkTraitsResourceResourceInfo extends Struct {3469 interface RmrkTraitsResourceResourceInfo extends Struct {3470 readonly id: u32;3470 readonly id: u32;3471 readonly resource: RmrkTraitsResourceResourceTypes;3471 readonly resource: RmrkTraitsResourceResourceTypes;3472 readonly pending: bool;3472 readonly pending: bool;3473 readonly pendingRemoval: bool;3473 readonly pendingRemoval: bool;3474 }3474 }347534753476 /** @name RmrkTraitsPropertyPropertyInfo (412) */3476 /** @name RmrkTraitsPropertyPropertyInfo (414) */3477 interface RmrkTraitsPropertyPropertyInfo extends Struct {3477 interface RmrkTraitsPropertyPropertyInfo extends Struct {3478 readonly key: Bytes;3478 readonly key: Bytes;3479 readonly value: Bytes;3479 readonly value: Bytes;3480 }3480 }348134813482 /** @name RmrkTraitsBaseBaseInfo (413) */3482 /** @name RmrkTraitsBaseBaseInfo (415) */3483 interface RmrkTraitsBaseBaseInfo extends Struct {3483 interface RmrkTraitsBaseBaseInfo extends Struct {3484 readonly issuer: AccountId32;3484 readonly issuer: AccountId32;3485 readonly baseType: Bytes;3485 readonly baseType: Bytes;3486 readonly symbol: Bytes;3486 readonly symbol: Bytes;3487 }3487 }348834883489 /** @name RmrkTraitsNftNftChild (414) */3489 /** @name RmrkTraitsNftNftChild (416) */3490 interface RmrkTraitsNftNftChild extends Struct {3490 interface RmrkTraitsNftNftChild extends Struct {3491 readonly collectionId: u32;3491 readonly collectionId: u32;3492 readonly nftId: u32;3492 readonly nftId: u32;3493 }3493 }349434943495 /** @name PalletCommonError (416) */3495 /** @name PalletCommonError (418) */3496 interface PalletCommonError extends Enum {3496 interface PalletCommonError extends Enum {3497 readonly isCollectionNotFound: boolean;3497 readonly isCollectionNotFound: boolean;3498 readonly isMustBeTokenOwner: boolean;3498 readonly isMustBeTokenOwner: boolean;3531 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';3531 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';3532 }3532 }353335333534 /** @name PalletFungibleError (418) */3534 /** @name PalletFungibleError (420) */3535 interface PalletFungibleError extends Enum {3535 interface PalletFungibleError extends Enum {3536 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3536 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3537 readonly isFungibleItemsHaveNoId: boolean;3537 readonly isFungibleItemsHaveNoId: boolean;3541 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3541 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3542 }3542 }354335433544 /** @name PalletRefungibleItemData (419) */3544 /** @name PalletRefungibleItemData (421) */3545 interface PalletRefungibleItemData extends Struct {3545 interface PalletRefungibleItemData extends Struct {3546 readonly constData: Bytes;3546 readonly constData: Bytes;3547 }3547 }354835483549 /** @name PalletRefungibleError (424) */3549 /** @name PalletRefungibleError (426) */3550 interface PalletRefungibleError extends Enum {3550 interface PalletRefungibleError extends Enum {3551 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3551 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3552 readonly isWrongRefungiblePieces: boolean;3552 readonly isWrongRefungiblePieces: boolean;3556 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3556 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3557 }3557 }355835583559 /** @name PalletNonfungibleItemData (425) */3559 /** @name PalletNonfungibleItemData (427) */3560 interface PalletNonfungibleItemData extends Struct {3560 interface PalletNonfungibleItemData extends Struct {3561 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3561 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3562 }3562 }356335633564 /** @name UpDataStructsPropertyScope (427) */3564 /** @name UpDataStructsPropertyScope (429) */3565 interface UpDataStructsPropertyScope extends Enum {3565 interface UpDataStructsPropertyScope extends Enum {3566 readonly isNone: boolean;3566 readonly isNone: boolean;3567 readonly isRmrk: boolean;3567 readonly isRmrk: boolean;3568 readonly type: 'None' | 'Rmrk';3568 readonly type: 'None' | 'Rmrk';3569 }3569 }357035703571 /** @name PalletNonfungibleError (429) */3571 /** @name PalletNonfungibleError (431) */3572 interface PalletNonfungibleError extends Enum {3572 interface PalletNonfungibleError extends Enum {3573 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3573 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3574 readonly isNonfungibleItemsHaveNoAmount: boolean;3574 readonly isNonfungibleItemsHaveNoAmount: boolean;3575 readonly isCantBurnNftWithChildren: boolean;3575 readonly isCantBurnNftWithChildren: boolean;3576 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3576 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3577 }3577 }357835783579 /** @name PalletStructureError (430) */3579 /** @name PalletStructureError (432) */3580 interface PalletStructureError extends Enum {3580 interface PalletStructureError extends Enum {3581 readonly isOuroborosDetected: boolean;3581 readonly isOuroborosDetected: boolean;3582 readonly isDepthLimit: boolean;3582 readonly isDepthLimit: boolean;3585 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3585 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3586 }3586 }358735873588 /** @name PalletRmrkCoreError (431) */3588 /** @name PalletRmrkCoreError (433) */3589 interface PalletRmrkCoreError extends Enum {3589 interface PalletRmrkCoreError extends Enum {3590 readonly isCorruptedCollectionType: boolean;3590 readonly isCorruptedCollectionType: boolean;3591 readonly isRmrkPropertyKeyIsTooLong: boolean;3591 readonly isRmrkPropertyKeyIsTooLong: boolean;3609 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3609 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3610 }3610 }361136113612 /** @name PalletRmrkEquipError (433) */3612 /** @name PalletRmrkEquipError (435) */3613 interface PalletRmrkEquipError extends Enum {3613 interface PalletRmrkEquipError extends Enum {3614 readonly isPermissionError: boolean;3614 readonly isPermissionError: boolean;3615 readonly isNoAvailableBaseId: boolean;3615 readonly isNoAvailableBaseId: boolean;3621 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3621 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3622 }3622 }362336233624 /** @name PalletAppPromotionError (439) */3624 /** @name PalletAppPromotionError (441) */3625 interface PalletAppPromotionError extends Enum {3625 interface PalletAppPromotionError extends Enum {3626 readonly isAdminNotSet: boolean;3626 readonly isAdminNotSet: boolean;3627 readonly isNoPermission: boolean;3627 readonly isNoPermission: boolean;3632 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3632 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3633 }3633 }363436343635 /** @name PalletForeignAssetsModuleError (440) */3635 /** @name PalletForeignAssetsModuleError (442) */3636 interface PalletForeignAssetsModuleError extends Enum {3636 interface PalletForeignAssetsModuleError extends Enum {3637 readonly isBadLocation: boolean;3637 readonly isBadLocation: boolean;3638 readonly isMultiLocationExisted: boolean;3638 readonly isMultiLocationExisted: boolean;3641 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3641 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3642 }3642 }364336433644 /** @name PalletEvmError (443) */3644 /** @name PalletEvmError (445) */3645 interface PalletEvmError extends Enum {3645 interface PalletEvmError extends Enum {3646 readonly isBalanceLow: boolean;3646 readonly isBalanceLow: boolean;3647 readonly isFeeOverflow: boolean;3647 readonly isFeeOverflow: boolean;3652 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3652 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3653 }3653 }365436543655 /** @name FpRpcTransactionStatus (446) */3655 /** @name FpRpcTransactionStatus (448) */3656 interface FpRpcTransactionStatus extends Struct {3656 interface FpRpcTransactionStatus extends Struct {3657 readonly transactionHash: H256;3657 readonly transactionHash: H256;3658 readonly transactionIndex: u32;3658 readonly transactionIndex: u32;3663 readonly logsBloom: EthbloomBloom;3663 readonly logsBloom: EthbloomBloom;3664 }3664 }366536653666 /** @name EthbloomBloom (448) */3666 /** @name EthbloomBloom (450) */3667 interface EthbloomBloom extends U8aFixed {}3667 interface EthbloomBloom extends U8aFixed {}366836683669 /** @name EthereumReceiptReceiptV3 (450) */3669 /** @name EthereumReceiptReceiptV3 (452) */3670 interface EthereumReceiptReceiptV3 extends Enum {3670 interface EthereumReceiptReceiptV3 extends Enum {3671 readonly isLegacy: boolean;3671 readonly isLegacy: boolean;3672 readonly asLegacy: EthereumReceiptEip658ReceiptData;3672 readonly asLegacy: EthereumReceiptEip658ReceiptData;3677 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3677 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3678 }3678 }367936793680 /** @name EthereumReceiptEip658ReceiptData (451) */3680 /** @name EthereumReceiptEip658ReceiptData (453) */3681 interface EthereumReceiptEip658ReceiptData extends Struct {3681 interface EthereumReceiptEip658ReceiptData extends Struct {3682 readonly statusCode: u8;3682 readonly statusCode: u8;3683 readonly usedGas: U256;3683 readonly usedGas: U256;3684 readonly logsBloom: EthbloomBloom;3684 readonly logsBloom: EthbloomBloom;3685 readonly logs: Vec<EthereumLog>;3685 readonly logs: Vec<EthereumLog>;3686 }3686 }368736873688 /** @name EthereumBlock (452) */3688 /** @name EthereumBlock (454) */3689 interface EthereumBlock extends Struct {3689 interface EthereumBlock extends Struct {3690 readonly header: EthereumHeader;3690 readonly header: EthereumHeader;3691 readonly transactions: Vec<EthereumTransactionTransactionV2>;3691 readonly transactions: Vec<EthereumTransactionTransactionV2>;3692 readonly ommers: Vec<EthereumHeader>;3692 readonly ommers: Vec<EthereumHeader>;3693 }3693 }369436943695 /** @name EthereumHeader (453) */3695 /** @name EthereumHeader (455) */3696 interface EthereumHeader extends Struct {3696 interface EthereumHeader extends Struct {3697 readonly parentHash: H256;3697 readonly parentHash: H256;3698 readonly ommersHash: H256;3698 readonly ommersHash: H256;3711 readonly nonce: EthereumTypesHashH64;3711 readonly nonce: EthereumTypesHashH64;3712 }3712 }371337133714 /** @name EthereumTypesHashH64 (454) */3714 /** @name EthereumTypesHashH64 (456) */3715 interface EthereumTypesHashH64 extends U8aFixed {}3715 interface EthereumTypesHashH64 extends U8aFixed {}371637163717 /** @name PalletEthereumError (459) */3717 /** @name PalletEthereumError (461) */3718 interface PalletEthereumError extends Enum {3718 interface PalletEthereumError extends Enum {3719 readonly isInvalidSignature: boolean;3719 readonly isInvalidSignature: boolean;3720 readonly isPreLogExists: boolean;3720 readonly isPreLogExists: boolean;3721 readonly type: 'InvalidSignature' | 'PreLogExists';3721 readonly type: 'InvalidSignature' | 'PreLogExists';3722 }3722 }372337233724 /** @name PalletEvmCoderSubstrateError (460) */3724 /** @name PalletEvmCoderSubstrateError (462) */3725 interface PalletEvmCoderSubstrateError extends Enum {3725 interface PalletEvmCoderSubstrateError extends Enum {3726 readonly isOutOfGas: boolean;3726 readonly isOutOfGas: boolean;3727 readonly isOutOfFund: boolean;3727 readonly isOutOfFund: boolean;3728 readonly type: 'OutOfGas' | 'OutOfFund';3728 readonly type: 'OutOfGas' | 'OutOfFund';3729 }3729 }373037303731 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (461) */3731 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (463) */3732 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3732 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3733 readonly isDisabled: boolean;3733 readonly isDisabled: boolean;3734 readonly isUnconfirmed: boolean;3734 readonly isUnconfirmed: boolean;3738 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3738 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3739 }3739 }374037403741 /** @name PalletEvmContractHelpersSponsoringModeT (462) */3741 /** @name PalletEvmContractHelpersSponsoringModeT (464) */3742 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3742 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3743 readonly isDisabled: boolean;3743 readonly isDisabled: boolean;3744 readonly isAllowlisted: boolean;3744 readonly isAllowlisted: boolean;3745 readonly isGenerous: boolean;3745 readonly isGenerous: boolean;3746 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3746 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3747 }3747 }374837483749 /** @name PalletEvmContractHelpersError (468) */3749 /** @name PalletEvmContractHelpersError (470) */3750 interface PalletEvmContractHelpersError extends Enum {3750 interface PalletEvmContractHelpersError extends Enum {3751 readonly isNoPermission: boolean;3751 readonly isNoPermission: boolean;3752 readonly isNoPendingSponsor: boolean;3752 readonly isNoPendingSponsor: boolean;3753 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3753 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3754 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3754 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3755 }3755 }375637563757 /** @name PalletEvmMigrationError (469) */3757 /** @name PalletEvmMigrationError (471) */3758 interface PalletEvmMigrationError extends Enum {3758 interface PalletEvmMigrationError extends Enum {3759 readonly isAccountNotEmpty: boolean;3759 readonly isAccountNotEmpty: boolean;3760 readonly isAccountIsNotMigrating: boolean;3760 readonly isAccountIsNotMigrating: boolean;3761 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3761 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3762 }3762 }376337633764 /** @name SpRuntimeMultiSignature (471) */3764 /** @name SpRuntimeMultiSignature (473) */3765 interface SpRuntimeMultiSignature extends Enum {3765 interface SpRuntimeMultiSignature extends Enum {3766 readonly isEd25519: boolean;3766 readonly isEd25519: boolean;3767 readonly asEd25519: SpCoreEd25519Signature;3767 readonly asEd25519: SpCoreEd25519Signature;3772 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3772 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3773 }3773 }377437743775 /** @name SpCoreEd25519Signature (472) */3775 /** @name SpCoreEd25519Signature (474) */3776 interface SpCoreEd25519Signature extends U8aFixed {}3776 interface SpCoreEd25519Signature extends U8aFixed {}377737773778 /** @name SpCoreSr25519Signature (474) */3778 /** @name SpCoreSr25519Signature (476) */3779 interface SpCoreSr25519Signature extends U8aFixed {}3779 interface SpCoreSr25519Signature extends U8aFixed {}378037803781 /** @name SpCoreEcdsaSignature (475) */3781 /** @name SpCoreEcdsaSignature (477) */3782 interface SpCoreEcdsaSignature extends U8aFixed {}3782 interface SpCoreEcdsaSignature extends U8aFixed {}378337833784 /** @name FrameSystemExtensionsCheckSpecVersion (478) */3784 /** @name FrameSystemExtensionsCheckSpecVersion (480) */3785 type FrameSystemExtensionsCheckSpecVersion = Null;3785 type FrameSystemExtensionsCheckSpecVersion = Null;378637863787 /** @name FrameSystemExtensionsCheckTxVersion (479) */3787 /** @name FrameSystemExtensionsCheckTxVersion (481) */3788 type FrameSystemExtensionsCheckTxVersion = Null;3788 type FrameSystemExtensionsCheckTxVersion = Null;378937893790 /** @name FrameSystemExtensionsCheckGenesis (480) */3790 /** @name FrameSystemExtensionsCheckGenesis (482) */3791 type FrameSystemExtensionsCheckGenesis = Null;3791 type FrameSystemExtensionsCheckGenesis = Null;379237923793 /** @name FrameSystemExtensionsCheckNonce (483) */3793 /** @name FrameSystemExtensionsCheckNonce (485) */3794 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3794 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}379537953796 /** @name FrameSystemExtensionsCheckWeight (484) */3796 /** @name FrameSystemExtensionsCheckWeight (486) */3797 type FrameSystemExtensionsCheckWeight = Null;3797 type FrameSystemExtensionsCheckWeight = Null;379837983799 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (485) */3799 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (487) */3800 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3800 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}380138013802 /** @name OpalRuntimeRuntime (486) */3802 /** @name OpalRuntimeRuntime (488) */3803 type OpalRuntimeRuntime = Null;3803 type OpalRuntimeRuntime = Null;380438043805 /** @name PalletEthereumFakeTransactionFinalizer (487) */3805 /** @name PalletEthereumFakeTransactionFinalizer (489) */3806 type PalletEthereumFakeTransactionFinalizer = Null;3806 type PalletEthereumFakeTransactionFinalizer = Null;380738073808} // declare module3808} // declare moduletests/yarn.lockdiffbeforeafterboth17 dependencies:17 dependencies:18 "@babel/highlight" "^7.18.6"18 "@babel/highlight" "^7.18.6"191920"@babel/compat-data@^7.19.0":20"@babel/compat-data@^7.19.3":21 version "7.19.0"21 version "7.19.4"22 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.0.tgz#2a592fd89bacb1fcde68de31bee4f2f2dacb0e86"22 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747"23 integrity sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==23 integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==242425"@babel/core@^7.18.10":25"@babel/core@^7.19.3":26 version "7.19.0"26 version "7.19.3"27 resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.0.tgz#d2f5f4f2033c00de8096be3c9f45772563e150c3"27 resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.3.tgz#2519f62a51458f43b682d61583c3810e7dcee64c"28 integrity sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==28 integrity sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==29 dependencies:29 dependencies:30 "@ampproject/remapping" "^2.1.0"30 "@ampproject/remapping" "^2.1.0"31 "@babel/code-frame" "^7.18.6"31 "@babel/code-frame" "^7.18.6"32 "@babel/generator" "^7.19.0"32 "@babel/generator" "^7.19.3"33 "@babel/helper-compilation-targets" "^7.19.0"33 "@babel/helper-compilation-targets" "^7.19.3"34 "@babel/helper-module-transforms" "^7.19.0"34 "@babel/helper-module-transforms" "^7.19.0"35 "@babel/helpers" "^7.19.0"35 "@babel/helpers" "^7.19.0"36 "@babel/parser" "^7.19.0"36 "@babel/parser" "^7.19.3"37 "@babel/template" "^7.18.10"37 "@babel/template" "^7.18.10"38 "@babel/traverse" "^7.19.0"38 "@babel/traverse" "^7.19.3"39 "@babel/types" "^7.19.0"39 "@babel/types" "^7.19.3"40 convert-source-map "^1.7.0"40 convert-source-map "^1.7.0"41 debug "^4.1.0"41 debug "^4.1.0"42 gensync "^1.0.0-beta.2"42 gensync "^1.0.0-beta.2"43 json5 "^2.2.1"43 json5 "^2.2.1"44 semver "^6.3.0"44 semver "^6.3.0"454546"@babel/generator@^7.19.0":46"@babel/generator@^7.19.3", "@babel/generator@^7.19.4":47 version "7.19.0"47 version "7.19.4"48 resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.0.tgz#785596c06425e59334df2ccee63ab166b738419a"48 resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.4.tgz#60050cf3f0a593d7b2471b4be4f62a56b949237f"49 integrity sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==49 integrity sha512-5T2lY5vXqS+5UEit/5TwcIUeCnwgCljcF8IQRT6XRQPBrvLeq5V8W+URv+GvwoF3FP8tkhp++evVyDzkDGzNmA==50 dependencies:50 dependencies:51 "@babel/types" "^7.19.0"51 "@babel/types" "^7.19.4"52 "@jridgewell/gen-mapping" "^0.3.2"52 "@jridgewell/gen-mapping" "^0.3.2"53 jsesc "^2.5.1"53 jsesc "^2.5.1"545455"@babel/helper-compilation-targets@^7.19.0":55"@babel/helper-compilation-targets@^7.19.3":56 version "7.19.0"56 version "7.19.3"57 resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz#537ec8339d53e806ed422f1e06c8f17d55b96bb0"57 resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca"58 integrity sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==58 integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==59 dependencies:59 dependencies:60 "@babel/compat-data" "^7.19.0"60 "@babel/compat-data" "^7.19.3"61 "@babel/helper-validator-option" "^7.18.6"61 "@babel/helper-validator-option" "^7.18.6"62 browserslist "^4.20.2"62 browserslist "^4.21.3"63 semver "^6.3.0"63 semver "^6.3.0"646465"@babel/helper-environment-visitor@^7.18.9":65"@babel/helper-environment-visitor@^7.18.9":104 "@babel/types" "^7.19.0"104 "@babel/types" "^7.19.0"105105106"@babel/helper-simple-access@^7.18.6":106"@babel/helper-simple-access@^7.18.6":107 version "7.18.6"107 version "7.19.4"108 resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea"108 resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"109 integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==109 integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==110 dependencies:110 dependencies:111 "@babel/types" "^7.18.6"111 "@babel/types" "^7.19.4"112112113"@babel/helper-split-export-declaration@^7.18.6":113"@babel/helper-split-export-declaration@^7.18.6":114 version "7.18.6"114 version "7.18.6"117 dependencies:117 dependencies:118 "@babel/types" "^7.18.6"118 "@babel/types" "^7.18.6"119119120"@babel/helper-string-parser@^7.18.10":120"@babel/helper-string-parser@^7.19.4":121 version "7.18.10"121 version "7.19.4"122 resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56"122 resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"123 integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==123 integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==124124125"@babel/helper-validator-identifier@^7.18.6":125"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":126 version "7.18.6"126 version "7.19.1"127 resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"127 resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"128 integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==128 integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==129129130"@babel/helper-validator-option@^7.18.6":130"@babel/helper-validator-option@^7.18.6":131 version "7.18.6"131 version "7.18.6"132 resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"132 resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"133 integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==133 integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==134134135"@babel/helpers@^7.19.0":135"@babel/helpers@^7.19.0":136 version "7.19.0"136 version "7.19.4"137 resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.0.tgz#f30534657faf246ae96551d88dd31e9d1fa1fc18"137 resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5"138 integrity sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==138 integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==139 dependencies:139 dependencies:140 "@babel/template" "^7.18.10"140 "@babel/template" "^7.18.10"141 "@babel/traverse" "^7.19.0"141 "@babel/traverse" "^7.19.4"142 "@babel/types" "^7.19.0"142 "@babel/types" "^7.19.4"143143144"@babel/highlight@^7.18.6":144"@babel/highlight@^7.18.6":145 version "7.18.6"145 version "7.18.6"150 chalk "^2.0.0"150 chalk "^2.0.0"151 js-tokens "^4.0.0"151 js-tokens "^4.0.0"152152153"@babel/parser@^7.18.10", "@babel/parser@^7.19.0":153"@babel/parser@^7.18.10", "@babel/parser@^7.19.3", "@babel/parser@^7.19.4":154 version "7.19.0"154 version "7.19.4"155 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.0.tgz#497fcafb1d5b61376959c1c338745ef0577aa02c"155 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.4.tgz#03c4339d2b8971eb3beca5252bafd9b9f79db3dc"156 integrity sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==156 integrity sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==157157158"@babel/register@^7.18.9":158"@babel/register@^7.18.9":159 version "7.18.9"159 version "7.18.9"166 pirates "^4.0.5"166 pirates "^4.0.5"167 source-map-support "^0.5.16"167 source-map-support "^0.5.16"168168169"@babel/runtime@^7.18.9":169"@babel/runtime@^7.18.9", "@babel/runtime@^7.19.0":170 version "7.19.0"170 version "7.19.4"171 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259"171 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78"172 integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==172 integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==173 dependencies:173 dependencies:174 regenerator-runtime "^0.13.4"174 regenerator-runtime "^0.13.4"175175182 "@babel/parser" "^7.18.10"182 "@babel/parser" "^7.18.10"183 "@babel/types" "^7.18.10"183 "@babel/types" "^7.18.10"184184185"@babel/traverse@^7.19.0":185"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.3", "@babel/traverse@^7.19.4":186 version "7.19.0"186 version "7.19.4"187 resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.0.tgz#eb9c561c7360005c592cc645abafe0c3c4548eed"187 resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.4.tgz#f117820e18b1e59448a6c1fa9d0ff08f7ac459a8"188 integrity sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==188 integrity sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==189 dependencies:189 dependencies:190 "@babel/code-frame" "^7.18.6"190 "@babel/code-frame" "^7.18.6"191 "@babel/generator" "^7.19.0"191 "@babel/generator" "^7.19.4"192 "@babel/helper-environment-visitor" "^7.18.9"192 "@babel/helper-environment-visitor" "^7.18.9"193 "@babel/helper-function-name" "^7.19.0"193 "@babel/helper-function-name" "^7.19.0"194 "@babel/helper-hoist-variables" "^7.18.6"194 "@babel/helper-hoist-variables" "^7.18.6"195 "@babel/helper-split-export-declaration" "^7.18.6"195 "@babel/helper-split-export-declaration" "^7.18.6"196 "@babel/parser" "^7.19.0"196 "@babel/parser" "^7.19.4"197 "@babel/types" "^7.19.0"197 "@babel/types" "^7.19.4"198 debug "^4.1.0"198 debug "^4.1.0"199 globals "^11.1.0"199 globals "^11.1.0"200200201"@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.19.3", "@babel/types@^7.19.4":202 version "7.19.0"202 version "7.19.4"203 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.0.tgz#75f21d73d73dc0351f3368d28db73465f4814600"203 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"204 integrity sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==204 integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==205 dependencies:205 dependencies:206 "@babel/helper-string-parser" "^7.18.10"206 "@babel/helper-string-parser" "^7.19.4"207 "@babel/helper-validator-identifier" "^7.18.6"207 "@babel/helper-validator-identifier" "^7.19.1"208 to-fast-properties "^2.0.0"208 to-fast-properties "^2.0.0"209209210"@cspotcode/source-map-support@^0.8.0":210"@cspotcode/source-map-support@^0.8.0":214 dependencies:214 dependencies:215 "@jridgewell/trace-mapping" "0.3.9"215 "@jridgewell/trace-mapping" "0.3.9"216216217"@eslint/eslintrc@^1.3.1":217"@eslint/eslintrc@^1.3.3":218 version "1.3.1"218 version "1.3.3"219 resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.1.tgz#de0807bfeffc37b964a7d0400e0c348ce5a2543d"219 resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95"220 integrity sha512-OhSY22oQQdw3zgPOOwdoj01l/Dzl1Z+xyUP33tkSN+aqyEhymJCcPHyXt+ylW8FSe0TfRC2VG+ROQOapD0aZSQ==220 integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==221 dependencies:221 dependencies:222 ajv "^6.12.4"222 ajv "^6.12.4"223 debug "^4.3.2"223 debug "^4.3.2"354 integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==354 integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==355355356"@ethersproject/networks@^5.7.0":356"@ethersproject/networks@^5.7.0":357 version "5.7.0"357 version "5.7.1"358 resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.0.tgz#df72a392f1a63a57f87210515695a31a245845ad"358 resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6"359 integrity sha512-MG6oHSQHd4ebvJrleEQQ4HhVu8Ichr0RDYEfHzsVAVjHNM+w36x9wp9r+hf1JstMXtseXDtkiVoARAG6M959AA==359 integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==360 dependencies:360 dependencies:361 "@ethersproject/logger" "^5.7.0"361 "@ethersproject/logger" "^5.7.0"362362412 "@ethersproject/signing-key" "^5.7.0"412 "@ethersproject/signing-key" "^5.7.0"413413414"@ethersproject/web@^5.7.0":414"@ethersproject/web@^5.7.0":415 version "5.7.0"415 version "5.7.1"416 resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.0.tgz#40850c05260edad8b54827923bbad23d96aac0bc"416 resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae"417 integrity sha512-ApHcbbj+muRASVDSCl/tgxaH2LBkRMEYfLOLVa0COipx0+nlu0QKet7U2lEg0vdkh8XRSLf2nd1f1Uk9SrVSGA==417 integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==418 dependencies:418 dependencies:419 "@ethersproject/base64" "^5.7.0"419 "@ethersproject/base64" "^5.7.0"420 "@ethersproject/bytes" "^5.7.0"420 "@ethersproject/bytes" "^5.7.0"421 "@ethersproject/logger" "^5.7.0"421 "@ethersproject/logger" "^5.7.0"422 "@ethersproject/properties" "^5.7.0"422 "@ethersproject/properties" "^5.7.0"423 "@ethersproject/strings" "^5.7.0"423 "@ethersproject/strings" "^5.7.0"424424425"@humanwhocodes/config-array@^0.10.4":425"@humanwhocodes/config-array@^0.10.5":426 version "0.10.4"426 version "0.10.7"427 resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.4.tgz#01e7366e57d2ad104feea63e72248f22015c520c"427 resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz#6d53769fd0c222767e6452e8ebda825c22e9f0dc"428 integrity sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==428 integrity sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==429 dependencies:429 dependencies:430 "@humanwhocodes/object-schema" "^1.2.1"430 "@humanwhocodes/object-schema" "^1.2.1"431 debug "^4.1.1"431 debug "^4.1.1"432 minimatch "^3.0.4"432 minimatch "^3.0.4"433433434"@humanwhocodes/gitignore-to-minimatch@^1.0.2":435 version "1.0.2"436 resolved "https://registry.yarnpkg.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz#316b0a63b91c10e53f242efb4ace5c3b34e8728d"437 integrity sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==438439"@humanwhocodes/module-importer@^1.0.1":434"@humanwhocodes/module-importer@^1.0.1":440 version "1.0.1"435 version "1.0.1"441 resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"436 resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"463 "@jridgewell/sourcemap-codec" "^1.4.10"458 "@jridgewell/sourcemap-codec" "^1.4.10"464 "@jridgewell/trace-mapping" "^0.3.9"459 "@jridgewell/trace-mapping" "^0.3.9"465460466"@jridgewell/resolve-uri@^3.0.3":461"@jridgewell/resolve-uri@3.1.0", "@jridgewell/resolve-uri@^3.0.3":467 version "3.1.0"462 version "3.1.0"468 resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"463 resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"469 integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==464 integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==473 resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"468 resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"474 integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==469 integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==475470476"@jridgewell/sourcemap-codec@^1.4.10":471"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":477 version "1.4.14"472 version "1.4.14"478 resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"473 resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"479 integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==474 integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==487 "@jridgewell/sourcemap-codec" "^1.4.10"482 "@jridgewell/sourcemap-codec" "^1.4.10"488483489"@jridgewell/trace-mapping@^0.3.9":484"@jridgewell/trace-mapping@^0.3.9":490 version "0.3.15"485 version "0.3.16"491 resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774"486 resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.16.tgz#a7982f16c18cae02be36274365433e5b49d7b23f"492 integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==487 integrity sha512-LCQ+NeThyJ4k1W2d+vIKdxuSt9R3pQSZ4P92m7EakaYuXcVWbHuT5bjNcqLd4Rdgi6xYWYDvBJZJLZSLanjDcA==493 dependencies:488 dependencies:494 "@jridgewell/resolve-uri" "^3.0.3"489 "@jridgewell/resolve-uri" "3.1.0"495 "@jridgewell/sourcemap-codec" "^1.4.10"490 "@jridgewell/sourcemap-codec" "1.4.14"496491497"@noble/hashes@1.1.2":492"@noble/hashes@1.1.3":498 version "1.1.2"493 version "1.1.3"499 resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183"494 resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.3.tgz#360afc77610e0a61f3417e497dcf36862e4f8111"500 integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==495 integrity sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A==501496502"@noble/secp256k1@1.6.3":497"@noble/secp256k1@1.7.0":503 version "1.6.3"498 version "1.7.0"504 resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.6.3.tgz#7eed12d9f4404b416999d0c87686836c4c5c9b94"499 resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1"505 integrity sha512-T04e4iTurVy7I8Sw4+c5OSN9/RkPlo1uKxAomtxQNLq8j1uPAqnsqG1bqvY3Jv7c13gyr6dui0zmh/I3+f/JaQ==500 integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw==506501507"@nodelib/fs.scandir@2.1.5":502"@nodelib/fs.scandir@2.1.5":508 version "2.1.5"503 version "2.1.5"525 "@nodelib/fs.scandir" "2.1.5"520 "@nodelib/fs.scandir" "2.1.5"526 fastq "^1.6.0"521 fastq "^1.6.0"527522528"@polkadot/api-augment@9.2.2":523"@polkadot/api-augment@9.5.1":529 version "9.2.2"524 version "9.5.1"530 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.2.2.tgz#fab9dd96f9322ae658245cd8711fd2d8db5c2412"525 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.5.1.tgz#f4ae75837782dd09c2f7468f78c17626c359797d"531 integrity sha512-yDtp1ecRWMCFXTjmKOvqXI6VHTYvHormRwJwE85VGQbMsZFDWFVbQXZOxsqkfx2rJye/25seVRWxQS+7oKzqkA==526 integrity sha512-9NQ2miIKVJvyhR2Zhk0XcHA+pgnWhQ0815lqcq0kz9ny5JHUFeGlNtxECw7AEnxoiC81EqpfWkOHpJpfiIcOmw==532 dependencies:527 dependencies:533 "@babel/runtime" "^7.18.9"528 "@babel/runtime" "^7.19.0"534 "@polkadot/api-base" "9.2.2"529 "@polkadot/api-base" "9.5.1"535 "@polkadot/rpc-augment" "9.2.2"530 "@polkadot/rpc-augment" "9.5.1"536 "@polkadot/types" "9.2.2"531 "@polkadot/types" "9.5.1"537 "@polkadot/types-augment" "9.2.2"532 "@polkadot/types-augment" "9.5.1"538 "@polkadot/types-codec" "9.2.2"533 "@polkadot/types-codec" "9.5.1"539 "@polkadot/util" "^10.1.4"534 "@polkadot/util" "^10.1.10"540535541"@polkadot/api-base@9.2.2":536"@polkadot/api-base@9.5.1":542 version "9.2.2"537 version "9.5.1"543 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.2.2.tgz#f84cbf1eb1893e9c8eb538369c8b349f3d64d5fd"538 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.5.1.tgz#f6084ebd21c4c43e3c11a7d638621d27162c5fcc"544 integrity sha512-Dqbh0MQo/ByAqOC56ga1VkVCpEjfWtxPHz3ni8oXJp0YvjA/4qKkZRM2ejoN07XKOMFNBZC4hnmNplyaCnVHfw==539 integrity sha512-3qsMsIhYbU3zp+YnP5h6Hg98y3B+FrxgPW7r2Uk6Kp1uSPmIzhMCyGuxur/BAcDVbd3KME+zWLHJDYOdyhuUwQ==545 dependencies:540 dependencies:546 "@babel/runtime" "^7.18.9"541 "@babel/runtime" "^7.19.0"547 "@polkadot/rpc-core" "9.2.2"542 "@polkadot/rpc-core" "9.5.1"548 "@polkadot/types" "9.2.2"543 "@polkadot/types" "9.5.1"549 "@polkadot/util" "^10.1.4"544 "@polkadot/util" "^10.1.10"550 rxjs "^7.5.6"545 rxjs "^7.5.7"551546552"@polkadot/api-contract@9.2.2":547"@polkadot/api-contract@9.5.1":553 version "9.2.2"548 version "9.5.1"554 resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-9.2.2.tgz#1b8c1c6a4fb2f5e21d0c9549062c8242453a15b5"549 resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-9.5.1.tgz#ba45c9150610477f5d05509414f7330b6175ecdd"555 integrity sha512-NE2QbBtX7e/lXdOG5wFqArjnbujcVWppoksvX1SrG2GKdhM2Y/shHLNV7uCYMq3tqmmCKOcp0RKE85Owu/7LQA==550 integrity sha512-BfI1Yi2R0eZ076F4v4UZklQ+8WS0g8QZ9g2716FoNTGGYogUeMQ/8gZWIJaAyylCypN/ucNLdpSmSTnhR59jCw==556 dependencies:551 dependencies:557 "@babel/runtime" "^7.18.9"552 "@babel/runtime" "^7.19.0"558 "@polkadot/api" "9.2.2"553 "@polkadot/api" "9.5.1"559 "@polkadot/types" "9.2.2"554 "@polkadot/types" "9.5.1"560 "@polkadot/types-codec" "9.2.2"555 "@polkadot/types-codec" "9.5.1"561 "@polkadot/types-create" "9.2.2"556 "@polkadot/types-create" "9.5.1"562 "@polkadot/util" "^10.1.4"557 "@polkadot/util" "^10.1.10"563 "@polkadot/util-crypto" "^10.1.4"558 "@polkadot/util-crypto" "^10.1.10"564 rxjs "^7.5.6"559 rxjs "^7.5.7"565560566"@polkadot/api-derive@9.2.2":561"@polkadot/api-derive@9.5.1":567 version "9.2.2"562 version "9.5.1"568 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.2.2.tgz#70b510d8140f081ef145b9bdf4f8a03108183192"563 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.5.1.tgz#8542b989c34249df5ec3b836ec10b910897620df"569 integrity sha512-8Du6Wxro5yhAgwJ7R8xWCrDFnAWGv6aDWVnpckUZWs9LRw5wGNN4GJD4WB/715H9ZZXzQ/sDW5lXo3ux19SE7w==564 integrity sha512-fKlKQe8WZ3jrm44w/zptMofljW5qj+jZxnryK08CAH/MINlZArPfCtn+EJla2ND9aTnRMUWlEBtytyCPImI/Hg==570 dependencies:565 dependencies:571 "@babel/runtime" "^7.18.9"566 "@babel/runtime" "^7.19.0"572 "@polkadot/api" "9.2.2"567 "@polkadot/api" "9.5.1"573 "@polkadot/api-augment" "9.2.2"568 "@polkadot/api-augment" "9.5.1"574 "@polkadot/api-base" "9.2.2"569 "@polkadot/api-base" "9.5.1"575 "@polkadot/rpc-core" "9.2.2"570 "@polkadot/rpc-core" "9.5.1"576 "@polkadot/types" "9.2.2"571 "@polkadot/types" "9.5.1"577 "@polkadot/types-codec" "9.2.2"572 "@polkadot/types-codec" "9.5.1"578 "@polkadot/util" "^10.1.4"573 "@polkadot/util" "^10.1.10"579 "@polkadot/util-crypto" "^10.1.4"574 "@polkadot/util-crypto" "^10.1.10"580 rxjs "^7.5.6"575 rxjs "^7.5.7"581576582"@polkadot/api@9.2.2":577"@polkadot/api@9.5.1":583 version "9.2.2"578 version "9.5.1"584 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.2.2.tgz#3ecd80110acf5e479ce510d301e3a7ce2c1b8f17"579 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.5.1.tgz#3501dac23bf82986dfe0a8c22857eb86610eca61"585 integrity sha512-dRXfdGhV3XWRtsYt+OskAwSAimTRC1k/oh3yO1vYc7C9cmqssw0LMEib9mlVh7qHprD30db7NleTOSFU6Bt2ag==580 integrity sha512-A2i/+mCl6cbFJ84ExMcWosUDfq0gVvzyKftkbRMs0oDzvHVVucTm0nCCzBgi/ltvSsFq8oJQ4pVqNTfT/IXgeQ==586 dependencies:581 dependencies:587 "@babel/runtime" "^7.18.9"582 "@babel/runtime" "^7.19.0"588 "@polkadot/api-augment" "9.2.2"583 "@polkadot/api-augment" "9.5.1"589 "@polkadot/api-base" "9.2.2"584 "@polkadot/api-base" "9.5.1"590 "@polkadot/api-derive" "9.2.2"585 "@polkadot/api-derive" "9.5.1"591 "@polkadot/keyring" "^10.1.4"586 "@polkadot/keyring" "^10.1.10"592 "@polkadot/rpc-augment" "9.2.2"587 "@polkadot/rpc-augment" "9.5.1"593 "@polkadot/rpc-core" "9.2.2"588 "@polkadot/rpc-core" "9.5.1"594 "@polkadot/rpc-provider" "9.2.2"589 "@polkadot/rpc-provider" "9.5.1"595 "@polkadot/types" "9.2.2"590 "@polkadot/types" "9.5.1"596 "@polkadot/types-augment" "9.2.2"591 "@polkadot/types-augment" "9.5.1"597 "@polkadot/types-codec" "9.2.2"592 "@polkadot/types-codec" "9.5.1"598 "@polkadot/types-create" "9.2.2"593 "@polkadot/types-create" "9.5.1"599 "@polkadot/types-known" "9.2.2"594 "@polkadot/types-known" "9.5.1"600 "@polkadot/util" "^10.1.4"595 "@polkadot/util" "^10.1.10"601 "@polkadot/util-crypto" "^10.1.4"596 "@polkadot/util-crypto" "^10.1.10"602 eventemitter3 "^4.0.7"597 eventemitter3 "^4.0.7"603 rxjs "^7.5.6"598 rxjs "^7.5.7"604599605"@polkadot/keyring@^10.1.4":600"@polkadot/keyring@^10.1.10":606 version "10.1.7"601 version "10.1.10"607 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.1.7.tgz#d51be1dc5807c961889847d8f0e10e4bbdd19d3f"602 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.1.10.tgz#f9d97ab528e612df4820e0df1837faae51c15904"608 integrity sha512-lArwaAS3hDs+HHupDIC4r2mFaAfmNQV2YzwL2wM5zhOqB2RugN03BFrgwNll0y9/Bg8rYDqM3Y5BvVMzgMZ6XA==603 integrity sha512-crKYBbwmPcFoTP6mby2+o1QWsjAyi5QlKzU8tXuXOApP6SBuqmDujIuLOKNG2vZoftNdVldsVL0WmKVYtBeuQg==609 dependencies:604 dependencies:610 "@babel/runtime" "^7.18.9"605 "@babel/runtime" "^7.19.0"611 "@polkadot/util" "10.1.7"606 "@polkadot/util" "10.1.10"612 "@polkadot/util-crypto" "10.1.7"607 "@polkadot/util-crypto" "10.1.10"613608614"@polkadot/networks@10.1.7", "@polkadot/networks@^10.1.4":609"@polkadot/networks@10.1.10", "@polkadot/networks@^10.1.10":615 version "10.1.7"610 version "10.1.10"616 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.1.7.tgz#33b38d70409e2daf0990ef18ff150c6718ffb700"611 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.1.10.tgz#421ce200f8b26759edd1d9d9408d934527f5b455"617 integrity sha512-ol864SZ/GwAF72GQOPRy+Y9r6NtgJJjMBlDLESvV5VK64eEB0MRSSyiOdd7y/4SumR9crrrNimx3ynACFgxZ8A==612 integrity sha512-Db78t2XnFIZbdSdu1aFuj3/1cNwcSzG/+wNrpCQ9dPhnGPy5S1GVbmU8pyxTftPKdTFc+8RdBr+5bc0d5ijGiA==618 dependencies:613 dependencies:619 "@babel/runtime" "^7.18.9"614 "@babel/runtime" "^7.19.0"620 "@polkadot/util" "10.1.7"615 "@polkadot/util" "10.1.10"621 "@substrate/ss58-registry" "^1.28.0"616 "@substrate/ss58-registry" "^1.31.0"622617623"@polkadot/rpc-augment@9.2.2":618"@polkadot/rpc-augment@9.5.1":624 version "9.2.2"619 version "9.5.1"625 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.2.2.tgz#7246e6a43536296ad19be8460a81e434d718ff4c"620 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.5.1.tgz#a4d8d7c6132375c9f4d50c7cb4c6813ff700937f"626 integrity sha512-LbluIgoFtFtN/PTLk0kPErPgMPwj1+ySLn1bNlWjshoE00NeYAIltin9j11iT9g4Zpb+ppSWpsrhO/5crGqERQ==621 integrity sha512-7Qm6oIoVIqv6VOaIqDal45hUTb3TVZ58S3zkSr60p/dPMlGCaFMcojtfcQErHtCW0hgvzFNsDl9ShpXRcPWu7g==627 dependencies:622 dependencies:628 "@babel/runtime" "^7.18.9"623 "@babel/runtime" "^7.19.0"629 "@polkadot/rpc-core" "9.2.2"624 "@polkadot/rpc-core" "9.5.1"630 "@polkadot/types" "9.2.2"625 "@polkadot/types" "9.5.1"631 "@polkadot/types-codec" "9.2.2"626 "@polkadot/types-codec" "9.5.1"632 "@polkadot/util" "^10.1.4"627 "@polkadot/util" "^10.1.10"633628634"@polkadot/rpc-core@9.2.2":629"@polkadot/rpc-core@9.5.1":635 version "9.2.2"630 version "9.5.1"636 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.2.2.tgz#96b9fd033ecf0d4edf5f2f48c958a1991776b332"631 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.5.1.tgz#7c327d735b742aaaee856bce6288331d0b2b042f"637 integrity sha512-D+rmC7etJVvlDb7debjF1HDvjqvRnx/b3j7zKpJ3IjjVKWiYyCgQvcyyLyX4lH1f3PHOfEJZP6Q8FNA8B2U7XA==632 integrity sha512-8CXgBVTEUjeuN5VOwS6MjTeqpN+9qrNJAAwNEba36/72g6Wgg3flza11kx0luQ6OLPVgCM7OcAjZ17p16phXDA==638 dependencies:633 dependencies:639 "@babel/runtime" "^7.18.9"634 "@babel/runtime" "^7.19.0"640 "@polkadot/rpc-augment" "9.2.2"635 "@polkadot/rpc-augment" "9.5.1"641 "@polkadot/rpc-provider" "9.2.2"636 "@polkadot/rpc-provider" "9.5.1"642 "@polkadot/types" "9.2.2"637 "@polkadot/types" "9.5.1"643 "@polkadot/util" "^10.1.4"638 "@polkadot/util" "^10.1.10"644 rxjs "^7.5.6"639 rxjs "^7.5.7"645640646"@polkadot/rpc-provider@9.2.2":641"@polkadot/rpc-provider@9.5.1":647 version "9.2.2"642 version "9.5.1"648 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.2.2.tgz#14453b8e80d4f0826dbcbf4e749d5a9397cb6905"643 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.5.1.tgz#1857b655a461820025b85cf3a7e7a58066ede137"649 integrity sha512-QnUql17q9ByP+7IyouXJDUPjkvOB1ciCGTwzf98WlOQxr/OEwcaWx0axHSVtMQyhX06ciVIbyI9hIjV5cfT78A==644 integrity sha512-CxyEo1SzwbcByUsrW5RUm5GTLNK7yjmVlTMseex8zQLO4+4erqUoQzr6TTIPSt4LWyk+TjbZdtGtlt7p6i2nJg==650 dependencies:645 dependencies:651 "@babel/runtime" "^7.18.9"646 "@babel/runtime" "^7.19.0"652 "@polkadot/keyring" "^10.1.4"647 "@polkadot/keyring" "^10.1.10"653 "@polkadot/types" "9.2.2"648 "@polkadot/types" "9.5.1"654 "@polkadot/types-support" "9.2.2"649 "@polkadot/types-support" "9.5.1"655 "@polkadot/util" "^10.1.4"650 "@polkadot/util" "^10.1.10"656 "@polkadot/util-crypto" "^10.1.4"651 "@polkadot/util-crypto" "^10.1.10"657 "@polkadot/x-fetch" "^10.1.4"652 "@polkadot/x-fetch" "^10.1.10"658 "@polkadot/x-global" "^10.1.4"653 "@polkadot/x-global" "^10.1.10"659 "@polkadot/x-ws" "^10.1.4"654 "@polkadot/x-ws" "^10.1.10"660 "@substrate/connect" "0.7.10"655 "@substrate/connect" "0.7.14"661 eventemitter3 "^4.0.7"656 eventemitter3 "^4.0.7"662 mock-socket "^9.1.5"657 mock-socket "^9.1.5"663 nock "^13.2.9"658 nock "^13.2.9"669 dependencies:664 dependencies:670 "@types/chrome" "^0.0.171"665 "@types/chrome" "^0.0.171"671666672"@polkadot/typegen@9.2.2":667"@polkadot/typegen@9.5.1":673 version "9.2.2"668 version "9.5.1"674 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.2.2.tgz#e99ec0c8b6a73e302ab6015008c16a969908a794"669 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.5.1.tgz#deb74a4bbabd205d68f2b3d59793b3234cfc8c00"675 integrity sha512-Bh7cvvT45Vw0A5yJDb4Pp+gIsMaqDg1x/p7QpBFf/RbPL6bORC3hBOxwa36m+RyWhYggNycoxfnKz5eAsdjCFQ==670 integrity sha512-SKLiXHUpSCBop8dd1P/LCN2R5GpM41QSOmRyNVnhgOKPtmB/vxS2pVNvMDl7dOhQkANCO6E2CWZiIPeWlu/G7Q==676 dependencies:671 dependencies:677 "@babel/core" "^7.18.10"672 "@babel/core" "^7.19.3"678 "@babel/register" "^7.18.9"673 "@babel/register" "^7.18.9"679 "@babel/runtime" "^7.18.9"674 "@babel/runtime" "^7.19.0"680 "@polkadot/api" "9.2.2"675 "@polkadot/api" "9.5.1"681 "@polkadot/api-augment" "9.2.2"676 "@polkadot/api-augment" "9.5.1"682 "@polkadot/rpc-augment" "9.2.2"677 "@polkadot/rpc-augment" "9.5.1"683 "@polkadot/rpc-provider" "9.2.2"678 "@polkadot/rpc-provider" "9.5.1"684 "@polkadot/types" "9.2.2"679 "@polkadot/types" "9.5.1"685 "@polkadot/types-augment" "9.2.2"680 "@polkadot/types-augment" "9.5.1"686 "@polkadot/types-codec" "9.2.2"681 "@polkadot/types-codec" "9.5.1"687 "@polkadot/types-create" "9.2.2"682 "@polkadot/types-create" "9.5.1"688 "@polkadot/types-support" "9.2.2"683 "@polkadot/types-support" "9.5.1"689 "@polkadot/util" "^10.1.4"684 "@polkadot/util" "^10.1.10"690 "@polkadot/util-crypto" "^10.1.4"685 "@polkadot/util-crypto" "^10.1.10"691 "@polkadot/x-ws" "^10.1.4"686 "@polkadot/x-ws" "^10.1.10"692 handlebars "^4.7.7"687 handlebars "^4.7.7"693 websocket "^1.0.34"688 websocket "^1.0.34"694 yargs "^17.5.1"689 yargs "^17.6.0"695690696"@polkadot/types-augment@9.2.2":691"@polkadot/types-augment@9.5.1":697 version "9.2.2"692 version "9.5.1"698 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.2.2.tgz#3ec2aff0a86287f9f9f4ddb0aa5430450d4a684f"693 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.5.1.tgz#907d05da7cf0891cdf6d59e2387a3394a978a5c9"699 integrity sha512-OyAC/WxNYrJjVp8NXklAeg/380BnFCBo4YgEOT4EhXK8fWzKzanvFAFROKAg78JQBI4LRJKkRyAEWIEzMNGR1Q==694 integrity sha512-1AzQpGe5bGttYbbjR1UhV19htsFjgqJ651eyT3YdRqo1hotZ2GwTCkGXuTJtcmQQH9G09xUUwS3nx8WsSyQ70A==700 dependencies:695 dependencies:701 "@babel/runtime" "^7.18.9"696 "@babel/runtime" "^7.19.0"702 "@polkadot/types" "9.2.2"697 "@polkadot/types" "9.5.1"703 "@polkadot/types-codec" "9.2.2"698 "@polkadot/types-codec" "9.5.1"704 "@polkadot/util" "^10.1.4"699 "@polkadot/util" "^10.1.10"705700706"@polkadot/types-codec@9.2.2":701"@polkadot/types-codec@9.5.1":707 version "9.2.2"702 version "9.5.1"708 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.2.2.tgz#8ab24d6208cce7e6abf3c352742045062b7ff588"703 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.5.1.tgz#d0c04a9f7dd8337dce4fe806e634c4ef99f954cc"709 integrity sha512-p6E31UQ9Hq0KwKXz5wBXvzrus3v7fY3yHR9EkR8eZvG7rBIHST42JPlfXIxKmnkkXkMxIX1LNSHQy0A8EikVxQ==704 integrity sha512-7Dy8TeApu4lN8DqdMZLuh34ocdHQh9jzAob6cQl1fl1ypOiCO/SwPjFkj0Xnhh7QQz9X9w63jZzbaFR3PPT+0g==710 dependencies:705 dependencies:711 "@babel/runtime" "^7.18.9"706 "@babel/runtime" "^7.19.0"712 "@polkadot/util" "^10.1.4"707 "@polkadot/util" "^10.1.10"713 "@polkadot/x-bigint" "^10.1.4"708 "@polkadot/x-bigint" "^10.1.10"714709715"@polkadot/types-create@9.2.2":710"@polkadot/types-create@9.5.1":716 version "9.2.2"711 version "9.5.1"717 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.2.2.tgz#d1e3cf945a0c95b31999673add738c4d585543d8"712 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.5.1.tgz#06f71f08b3c68fb3bbdabe838325c955384d59bd"718 integrity sha512-byGoFbkwpMHuqRwZXoD3lrTRkgIB89GlZlXJIfBuNeGE84nWktPCuZw3hBm5LO/qIgp5RFjdfeOCmBvxQ0fzQg==713 integrity sha512-pUQ1U0mho5aKRdi4iR9DP9ldIoj9U+ApHIeYyxkBY8RexMQOpkt8PZfpFhg4z2H5vZj/sgNIBXq65HjXuyu+9w==719 dependencies:714 dependencies:720 "@babel/runtime" "^7.18.9"715 "@babel/runtime" "^7.19.0"721 "@polkadot/types-codec" "9.2.2"716 "@polkadot/types-codec" "9.5.1"722 "@polkadot/util" "^10.1.4"717 "@polkadot/util" "^10.1.10"723718724"@polkadot/types-known@9.2.2":719"@polkadot/types-known@9.5.1":725 version "9.2.2"720 version "9.5.1"726 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.2.2.tgz#0d3d70eb37796aac06c874cd2b2bc97464f00e6a"721 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.5.1.tgz#0eb596078733a96f2cff3d5b4258966f4a6e4a5a"727 integrity sha512-WHkgoMJg0ZzxOainMjvGhaIa8/m/zwmhH1P+0UqLoZf+oE9EUkjPJaG5oETz4YUa3Nb8uuHfdMl6c5xN3DMIaQ==722 integrity sha512-SedfPDxJREYPATa7X2Fv26z6UVPYv6v9Z9P4nulnC6Yl8C2+Q4A/VIqTtgsJc0DU1YT3gM8ofVxircfHqqRVNA==728 dependencies:723 dependencies:729 "@babel/runtime" "^7.18.9"724 "@babel/runtime" "^7.19.0"730 "@polkadot/networks" "^10.1.4"725 "@polkadot/networks" "^10.1.10"731 "@polkadot/types" "9.2.2"726 "@polkadot/types" "9.5.1"732 "@polkadot/types-codec" "9.2.2"727 "@polkadot/types-codec" "9.5.1"733 "@polkadot/types-create" "9.2.2"728 "@polkadot/types-create" "9.5.1"734 "@polkadot/util" "^10.1.4"729 "@polkadot/util" "^10.1.10"735730736"@polkadot/types-support@9.2.2":731"@polkadot/types-support@9.5.1":737 version "9.2.2"732 version "9.5.1"738 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.2.2.tgz#d695b54b466bb47c0b376d07e9853d1ae3b17d5e"733 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.5.1.tgz#5383cd84375aedd67bf0ccd2fa230d811f4b9dc9"739 integrity sha512-JNcdTyMKGETV7pjE4eZ8eBs82c4ZSY7n1R1/xT/tNZNA6uNdukBxOOkyRHdu5ugEehwCMSpOgruMCNH9e77zLg==734 integrity sha512-mjenEGNT/ReY1xFexb37NDgV7QHHBBfWt31ZQMZKDkQL+R2P0rXFpmitcE3eOCV3oY4mf+GaU2N/ZfnsFl3tPQ==740 dependencies:735 dependencies:741 "@babel/runtime" "^7.18.9"736 "@babel/runtime" "^7.19.0"742 "@polkadot/util" "^10.1.4"737 "@polkadot/util" "^10.1.10"743738744"@polkadot/types@9.2.2":739"@polkadot/types@9.5.1":745 version "9.2.2"740 version "9.5.1"746 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.2.2.tgz#b74d098ed8c725f961c3d95b610c49bde1cf5334"741 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.5.1.tgz#5f3891ce45d8d78aa0b5bc65d7517d98342699b0"747 integrity sha512-sDpS/m9oeihkYAYljZzp7xfMkJDLP5nLHSKkLdrh6H9XDVQnKgzJ19/kuAHsU8FCa9E37Al3aSQf/+NR+kCfZw==742 integrity sha512-xuhYq+O4JRl2iqLVEwKVHnfOA9AfwoNlHzrFx2DChDcIWdmgmUDASq9TkZhBP+jx81SieMH7iTf4zY6UwPKYQw==748 dependencies:743 dependencies:749 "@babel/runtime" "^7.18.9"744 "@babel/runtime" "^7.19.0"750 "@polkadot/keyring" "^10.1.4"745 "@polkadot/keyring" "^10.1.10"751 "@polkadot/types-augment" "9.2.2"746 "@polkadot/types-augment" "9.5.1"752 "@polkadot/types-codec" "9.2.2"747 "@polkadot/types-codec" "9.5.1"753 "@polkadot/types-create" "9.2.2"748 "@polkadot/types-create" "9.5.1"754 "@polkadot/util" "^10.1.4"749 "@polkadot/util" "^10.1.10"755 "@polkadot/util-crypto" "^10.1.4"750 "@polkadot/util-crypto" "^10.1.10"756 rxjs "^7.5.6"751 rxjs "^7.5.7"757752758"@polkadot/util-crypto@10.1.7", "@polkadot/util-crypto@^10.1.4":753"@polkadot/util-crypto@10.1.10", "@polkadot/util-crypto@^10.1.10":759 version "10.1.7"754 version "10.1.10"760 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.1.7.tgz#fe5ea006bf23ae19319f3ac9236905a984a65e2f"755 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.1.10.tgz#ae00c794dda6a2f5e40cdaaa87987312461dc59f"761 integrity sha512-zGmSU7a0wdWfpDtfc+Q7fUuW+extu9o1Uh4JpkuwwZ/dxmyW5xlfqVsIScM1pdPyjJsyamX8KwsKiVsW4slasg==756 integrity sha512-w9h/wf4wZXeUkRnihhnfqlaKuoQtrjkjK3C5liCQkr9vx5zOsmg/nMSDP8UUFJX0msPPYpFeNvzn7oDIs6qSZA==762 dependencies:757 dependencies:763 "@babel/runtime" "^7.18.9"758 "@babel/runtime" "^7.19.0"764 "@noble/hashes" "1.1.2"759 "@noble/hashes" "1.1.3"765 "@noble/secp256k1" "1.6.3"760 "@noble/secp256k1" "1.7.0"766 "@polkadot/networks" "10.1.7"761 "@polkadot/networks" "10.1.10"767 "@polkadot/util" "10.1.7"762 "@polkadot/util" "10.1.10"768 "@polkadot/wasm-crypto" "^6.3.1"763 "@polkadot/wasm-crypto" "^6.3.1"769 "@polkadot/x-bigint" "10.1.7"764 "@polkadot/x-bigint" "10.1.10"770 "@polkadot/x-randomvalues" "10.1.7"765 "@polkadot/x-randomvalues" "10.1.10"771 "@scure/base" "1.1.1"766 "@scure/base" "1.1.1"772 ed2curve "^0.3.0"767 ed2curve "^0.3.0"773 tweetnacl "^1.0.3"768 tweetnacl "^1.0.3"774769775"@polkadot/util@10.1.7", "@polkadot/util@^10.1.4":770"@polkadot/util@10.1.10", "@polkadot/util@^10.1.10":776 version "10.1.7"771 version "10.1.10"777 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.1.7.tgz#c54ca2a5b29cb834b40d8a876baefa3a0efb93af"772 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.1.10.tgz#dc79c93d70e699e8cc1b09e636af7e4a64c5f0f0"778 integrity sha512-s7gDLdNb4HUpoe3faXwoO6HwiUp8pi66voYKiUYRh1kEtW1o9vGBgyZPHPGC/FBgILzTJKii/9XxnSex60zBTA==773 integrity sha512-BQoTfSxZ3BWAgWDjgKBVdyw1AJGaoOeAidCA+LZcHV6wlMu5643AZPUnoMrW413MbbpxsIhJXtNttqOwjo8MjA==779 dependencies:774 dependencies:780 "@babel/runtime" "^7.18.9"775 "@babel/runtime" "^7.19.0"781 "@polkadot/x-bigint" "10.1.7"776 "@polkadot/x-bigint" "10.1.10"782 "@polkadot/x-global" "10.1.7"777 "@polkadot/x-global" "10.1.10"783 "@polkadot/x-textdecoder" "10.1.7"778 "@polkadot/x-textdecoder" "10.1.10"784 "@polkadot/x-textencoder" "10.1.7"779 "@polkadot/x-textencoder" "10.1.10"785 "@types/bn.js" "^5.1.1"780 "@types/bn.js" "^5.1.1"786 bn.js "^5.2.1"781 bn.js "^5.2.1"787782836 dependencies:831 dependencies:837 "@babel/runtime" "^7.18.9"832 "@babel/runtime" "^7.18.9"838833839"@polkadot/x-bigint@10.1.7", "@polkadot/x-bigint@^10.1.4":834"@polkadot/x-bigint@10.1.10", "@polkadot/x-bigint@^10.1.10":840 version "10.1.7"835 version "10.1.10"841 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.1.7.tgz#1338689476ffdbb9f9cb243df1954ae8186134b9"836 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.1.10.tgz#97dcccda2e24776aad3ae49f3268c03332138246"842 integrity sha512-uaClHpI6cnDumIfejUKvNTkB43JleEb0V6OIufDKJ/e1aCLE3f/Ws9ggwL8ea05lQP5k5xqOzbPdizi/UvrgKQ==837 integrity sha512-4Jt0BO0WTby6r9A2DgkDxf/LFaICQHvSl1VSFtBf0Z0GV2n4OxkBX5x/1bdEdGEvYT5rM7RbR3xI7EL+W1ixHA==843 dependencies:838 dependencies:844 "@babel/runtime" "^7.18.9"839 "@babel/runtime" "^7.19.0"845 "@polkadot/x-global" "10.1.7"840 "@polkadot/x-global" "10.1.10"846841847"@polkadot/x-fetch@^10.1.4":842"@polkadot/x-fetch@^10.1.10":848 version "10.1.7"843 version "10.1.10"849 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.1.7.tgz#1b76051a495563403a20ef235a8558c6d91b11a6"844 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.1.10.tgz#6551e44211cf21a1ca076eedc4676754345e1504"850 integrity sha512-NL+xrlqUoCLwCIAvQLwOA189gSUgeSGOFjCmZ9uMkBqf35KXeZoHWse6YaoseTSlnAal3dQOGbXnYWZ4Ck2OSA==845 integrity sha512-LvTxAN6GaJzfgZ74WFYPZrIkMEThpX5u7O4ILiExcJt87E19cSWlYSHDa5n+OLjUpq0lBV2ueF90iUblt6aHpg==851 dependencies:846 dependencies:852 "@babel/runtime" "^7.18.9"847 "@babel/runtime" "^7.19.0"853 "@polkadot/x-global" "10.1.7"848 "@polkadot/x-global" "10.1.10"854 "@types/node-fetch" "^2.6.2"849 "@types/node-fetch" "^2.6.2"855 node-fetch "^3.2.10"850 node-fetch "^3.2.10"856851857"@polkadot/x-global@10.1.7", "@polkadot/x-global@^10.1.4":852"@polkadot/x-global@10.1.10", "@polkadot/x-global@^10.1.10":858 version "10.1.7"853 version "10.1.10"859 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.1.7.tgz#91a472ac2f83fd0858dcd0df528844a5b650790e"854 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.1.10.tgz#eedf63f1f3918c7f2bd8ef0907e051783f1a626e"860 integrity sha512-k2ZUZyBVgDnP/Ysxapa0mthn63j6gsN2V0kZejEQPyOfCHtQQkse3jFvAWdslpWoR8j2k8SN5O6reHc0F4f7mA==855 integrity sha512-WFfgaZSrzPlKLdnOus2mIFGzUbSDIQK6RMCfFfM9SmF3DkoxN40z5Nkni4PztfKr22stlkhmhnX/Lp/NxpuT6Q==861 dependencies:856 dependencies:862 "@babel/runtime" "^7.18.9"857 "@babel/runtime" "^7.19.0"863858864"@polkadot/x-randomvalues@10.1.7":859"@polkadot/x-randomvalues@10.1.10":865 version "10.1.7"860 version "10.1.10"866 resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.1.7.tgz#d537f1f7bf3fb03e6c08ae6e6ac36e069c1f9844"861 resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.1.10.tgz#a10f98f2c4d744612b68ee697e43f1e4d6e1f89a"867 integrity sha512-3er4UYOlozLGgFYWwcbmcFslmO8m82u4cAGR4AaEag0VdV7jLO/M5lTmivT/3rtLSww6sjkEfr522GM2Q5lmFg==862 integrity sha512-KM4sCI/DNLIXlmnkeJIuYvh3pPuWvnkbR1a6TUB12J1izUJ+uGV+cAFRR4/EZk3oEsG/Tgivbs56meEOo3ws5A==868 dependencies:863 dependencies:869 "@babel/runtime" "^7.18.9"864 "@babel/runtime" "^7.19.0"870 "@polkadot/x-global" "10.1.7"865 "@polkadot/x-global" "10.1.10"871866872"@polkadot/x-textdecoder@10.1.7":867"@polkadot/x-textdecoder@10.1.10":873 version "10.1.7"868 version "10.1.10"874 resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.1.7.tgz#1dd4e6141b1669acdd321a4da1fc6fdc271b7908"869 resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.1.10.tgz#a6d0010b092bdefc69c70dcb34d76ec8993980b2"875 integrity sha512-iAFOHludmZFOyVL8sQFv4TDqbcqQU5gwwYv74duTA+WQBgbSITJrBahSCV/rXOjUqds9pzQO3qBFzziznNnkiQ==870 integrity sha512-cAk37faYXx8IICeaq/tdl+aiIXwo3SLrx9XNoQqhX02g+SEs3ARM7zJcohj/p8ynWAI+ezNcsKn1wh174nquHw==876 dependencies:871 dependencies:877 "@babel/runtime" "^7.18.9"872 "@babel/runtime" "^7.19.0"878 "@polkadot/x-global" "10.1.7"873 "@polkadot/x-global" "10.1.10"879874880"@polkadot/x-textencoder@10.1.7":875"@polkadot/x-textencoder@10.1.10":881 version "10.1.7"876 version "10.1.10"882 resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.1.7.tgz#b208601f33b936c7a059f126dbb6b26a87f45864"877 resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.1.10.tgz#35b2e778b3dbb6816bb37f1848b772c4cd3c43d1"883 integrity sha512-GzjaWZDbgzZ0IQT60xuZ7cZ0wnlNVYMqpfI9KvBc58X9dPI3TIMwzbXDVzZzpjY1SAqJGs4hJse9HMWZazfhew==878 integrity sha512-Auaql6BL5UHtWakZUQyj4y/BrM0tm4bYG5vXCMQCA1Gg0ky+46DhgpRrAQ9F7NNgWg1A6dA2I9KuAA4BTbNx0w==884 dependencies:879 dependencies:885 "@babel/runtime" "^7.18.9"880 "@babel/runtime" "^7.19.0"886 "@polkadot/x-global" "10.1.7"881 "@polkadot/x-global" "10.1.10"887882888"@polkadot/x-ws@^10.1.4":883"@polkadot/x-ws@^10.1.10":889 version "10.1.7"884 version "10.1.10"890 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.1.7.tgz#b1fbfe3e16fa809f35f24ef47fde145b018d8cdc"885 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.1.10.tgz#27b55a988a0f60db7f79fed8268802406f522813"891 integrity sha512-aNkotxHx3qPVjiItD9lbNONs4GNzqeeZ98wHtCjd9JWl/g+xNkOVF3xQ8++1qSHPBEYSwKh9URjQH2+CD2XlvQ==886 integrity sha512-JxDgfm0ox2XPAtdTeJXYl6qq7LY/KOPi69wRpFMczWaYUsZubO6EiRzgzjuFlHY4/oxfjS/D+YbzcjefTxHz6g==892 dependencies:887 dependencies:893 "@babel/runtime" "^7.18.9"888 "@babel/runtime" "^7.19.0"894 "@polkadot/x-global" "10.1.7"889 "@polkadot/x-global" "10.1.10"895 "@types/websocket" "^1.0.5"890 "@types/websocket" "^1.0.5"896 websocket "^1.0.34"891 websocket "^1.0.34"897892910 resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz#fa5738039586c648013caa6a0c95c43265dbe77d"905 resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz#fa5738039586c648013caa6a0c95c43265dbe77d"911 integrity sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==906 integrity sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==912907913"@substrate/connect@0.7.10":908"@substrate/connect@0.7.14":914 version "0.7.10"909 version "0.7.14"915 resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.10.tgz#db49a62188cd830a8dc8848240e635da21f333ff"910 resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.14.tgz#c090e952e9cdd93185a94d24fbc424ea20fe7bbe"916 integrity sha512-WNdW18e0I696/AQjrAXdMD9W8YaKLTcPr2Cu8scSwiUT40in84KEzi+g+P367cE2etAc+Dvu8vNDEQTbUPNqEg==911 integrity sha512-uW5uBmihpivshmmmw+rsg7qOV0KqVSep4rWOXFMP8aFQinvmqw4JqxP21og4H/7JZxttYUBFQVsdtXHGKJ0aVQ==917 dependencies:912 dependencies:918 "@substrate/connect-extension-protocol" "^1.0.1"913 "@substrate/connect-extension-protocol" "^1.0.1"919 "@substrate/smoldot-light" "0.6.27"914 "@substrate/smoldot-light" "0.6.34"920 eventemitter3 "^4.0.7"915 eventemitter3 "^4.0.7"921916922"@substrate/smoldot-light@0.6.27":917"@substrate/smoldot-light@0.6.34":923 version "0.6.27"918 version "0.6.34"924 resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.6.27.tgz#7e66ad4bfddce4168a6008f6be8c771c881ae585"919 resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.6.34.tgz#273dba622102281fd0fdb0e375198bff2ec584c3"925 integrity sha512-Wy3fbyfZqR3HLynuxeBkUunZsrbqpsmFN+D0/8cVIHZbO7WDwJsmCUc32yO5r+v6s/T97L7FOJHEyMWmRfnKAQ==920 integrity sha512-+HK9MaJ0HelJmpf4YYR+salJ7dhVBltmhGlyz5l8OXS9DW18fe0Z2wxEo8P5kX9CUxlCXEb8J9JBRQAYBPHbwQ==926 dependencies:921 dependencies:927 pako "^2.0.4"922 pako "^2.0.4"928 websocket "^1.0.32"923 ws "^8.8.1"929924930"@substrate/ss58-registry@^1.28.0":925"@substrate/ss58-registry@^1.31.0":931 version "1.29.0"926 version "1.31.0"932 resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.29.0.tgz#0dea078271b5318c5eff7176e1df1f9b2c27e43f"927 resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.31.0.tgz#489e3a496081dc3ee7ef5ef2eb513962d5d29351"933 integrity sha512-KTqwZgTjtWPhCAUJJx9qswP/p9cRKUU9GOHYUDKNdISFDiFafWmpI54JHfYLkgjvkSKEUgRZnvLpe0LMF1fXvw==928 integrity sha512-OSOmdjaq9foXfHBy9aLVMwGheygvsiZlv4dggnLOYOuhSmNCsSB/PaW4DBz+/tSdK1Fo9+ZiFW6cF24RA+m0sw==934929935"@szmarczak/http-timer@^4.0.5":930"@szmarczak/http-timer@^4.0.5":936 version "4.0.6"931 version "4.0.6"1023 integrity sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==1018 integrity sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==102410191025"@types/har-format@*":1020"@types/har-format@*":1026 version "1.2.8"1021 version "1.2.9"1027 resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.8.tgz#e6908b76d4c88be3db642846bb8b455f0bfb1c4e"1022 resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.9.tgz#b9b3a9bfc33a078e7d898a00b09662910577f4a4"1028 integrity sha512-OP6L9VuZNdskgNN3zFQQ54ceYD8OLq5IbqO4VK91ORLfOm7WdT/CiT/pHEBSQEqCInJ2y3O6iCm/zGtPElpgJQ==1023 integrity sha512-rffW6MhQ9yoa75bdNi+rjZBAvu2HhehWJXlhuWXnWdENeuKe82wUgAwxYOb7KRKKmxYN+D/iRKd2NDQMLqlUmg==102910241030"@types/http-cache-semantics@*":1025"@types/http-cache-semantics@*":1031 version "4.0.1"1026 version "4.0.1"1044 dependencies:1039 dependencies:1045 "@types/node" "*"1040 "@types/node" "*"104610411047"@types/mocha@^9.1.1":1042"@types/mocha@^10.0.0":1048 version "9.1.1"1043 version "10.0.0"1049 resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4"1044 resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.0.tgz#3d9018c575f0e3f7386c1de80ee66cc21fbb7a52"1050 integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw==1045 integrity sha512-rADY+HtTOA52l9VZWtgQfn4p+UDVM2eDVkMZT1I6syp0YKxW2F9v+0pbRZLsvskhQv/vMb6ZfCay81GHbz5SHg==105110461052"@types/node-fetch@^2.6.2":1047"@types/node-fetch@^2.6.2":1053 version "2.6.2"1048 version "2.6.2"1058 form-data "^3.0.0"1053 form-data "^3.0.0"105910541060"@types/node@*":1055"@types/node@*":1061 version "18.7.16"1056 version "18.8.3"1062 resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.16.tgz#0eb3cce1e37c79619943d2fd903919fc30850601"1057 resolved "https://registry.yarnpkg.com/@types/node/-/node-18.8.3.tgz#ce750ab4017effa51aed6a7230651778d54e327c"1063 integrity sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==1058 integrity sha512-0os9vz6BpGwxGe9LOhgP/ncvYN5Tx1fNcd2TM3rD/aCGBkysb+ZWpXEocG24h6ZzOi13+VB8HndAQFezsSOw1w==106410591065"@types/node@^12.12.6":1060"@types/node@^12.12.6":1066 version "12.20.55"1061 version "12.20.55"1101 "@types/node" "*"1096 "@types/node" "*"110210971103"@typescript-eslint/eslint-plugin@^5.26.0":1098"@typescript-eslint/eslint-plugin@^5.26.0":1104 version "5.36.2"1099 version "5.39.0"1105 resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.36.2.tgz#6df092a20e0f9ec748b27f293a12cb39d0c1fe4d"1100 resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.39.0.tgz#778b2d9e7f293502c7feeea6c74dca8eb3e67511"1106 integrity sha512-OwwR8LRwSnI98tdc2z7mJYgY60gf7I9ZfGjN5EjCwwns9bdTuQfAXcsjSB2wSQ/TVNYSGKf4kzVXbNGaZvwiXw==1101 integrity sha512-xVfKOkBm5iWMNGKQ2fwX5GVgBuHmZBO1tCRwXmY5oAIsPscfwm2UADDuNB8ZVYCtpQvJK4xpjrK7jEhcJ0zY9A==1107 dependencies:1102 dependencies:1108 "@typescript-eslint/scope-manager" "5.36.2"1103 "@typescript-eslint/scope-manager" "5.39.0"1109 "@typescript-eslint/type-utils" "5.36.2"1104 "@typescript-eslint/type-utils" "5.39.0"1110 "@typescript-eslint/utils" "5.36.2"1105 "@typescript-eslint/utils" "5.39.0"1111 debug "^4.3.4"1106 debug "^4.3.4"1112 functional-red-black-tree "^1.0.1"1113 ignore "^5.2.0"1107 ignore "^5.2.0"1114 regexpp "^3.2.0"1108 regexpp "^3.2.0"1115 semver "^7.3.7"1109 semver "^7.3.7"1116 tsutils "^3.21.0"1110 tsutils "^3.21.0"111711111118"@typescript-eslint/parser@^5.26.0":1112"@typescript-eslint/parser@^5.26.0":1119 version "5.36.2"1113 version "5.39.0"1120 resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.36.2.tgz#3ddf323d3ac85a25295a55fcb9c7a49ab4680ddd"1114 resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.39.0.tgz#93fa0bc980a3a501e081824f6097f7ca30aaa22b"1121 integrity sha512-qS/Kb0yzy8sR0idFspI9Z6+t7mqk/oRjnAYfewG+VN73opAUvmYL3oPIMmgOX6CnQS6gmVIXGshlb5RY/R22pA==1115 integrity sha512-PhxLjrZnHShe431sBAGHaNe6BDdxAASDySgsBCGxcBecVCi8NQWxQZMcizNA4g0pN51bBAn/FUfkWG3SDVcGlA==1122 dependencies:1116 dependencies:1123 "@typescript-eslint/scope-manager" "5.36.2"1117 "@typescript-eslint/scope-manager" "5.39.0"1124 "@typescript-eslint/types" "5.36.2"1118 "@typescript-eslint/types" "5.39.0"1125 "@typescript-eslint/typescript-estree" "5.36.2"1119 "@typescript-eslint/typescript-estree" "5.39.0"1126 debug "^4.3.4"1120 debug "^4.3.4"112711211128"@typescript-eslint/scope-manager@5.36.2":1122"@typescript-eslint/scope-manager@5.39.0":1129 version "5.36.2"1123 version "5.39.0"1130 resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.36.2.tgz#a75eb588a3879ae659514780831370642505d1cd"1124 resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.39.0.tgz#873e1465afa3d6c78d8ed2da68aed266a08008d0"1131 integrity sha512-cNNP51L8SkIFSfce8B1NSUBTJTu2Ts4nWeWbFrdaqjmn9yKrAaJUBHkyTZc0cL06OFHpb+JZq5AUHROS398Orw==1125 integrity sha512-/I13vAqmG3dyqMVSZPjsbuNQlYS082Y7OMkwhCfLXYsmlI0ca4nkL7wJ/4gjX70LD4P8Hnw1JywUVVAwepURBw==1132 dependencies:1126 dependencies:1133 "@typescript-eslint/types" "5.36.2"1127 "@typescript-eslint/types" "5.39.0"1134 "@typescript-eslint/visitor-keys" "5.36.2"1128 "@typescript-eslint/visitor-keys" "5.39.0"113511291136"@typescript-eslint/type-utils@5.36.2":1130"@typescript-eslint/type-utils@5.39.0":1137 version "5.36.2"1131 version "5.39.0"1138 resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.36.2.tgz#752373f4babf05e993adf2cd543a763632826391"1132 resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.39.0.tgz#0a8c00f95dce4335832ad2dc6bc431c14e32a0a6"1139 integrity sha512-rPQtS5rfijUWLouhy6UmyNquKDPhQjKsaKH0WnY6hl/07lasj8gPaH2UD8xWkePn6SC+jW2i9c2DZVDnL+Dokw==1133 integrity sha512-KJHJkOothljQWzR3t/GunL0TPKY+fGJtnpl+pX+sJ0YiKTz3q2Zr87SGTmFqsCMFrLt5E0+o+S6eQY0FAXj9uA==1140 dependencies:1134 dependencies:1141 "@typescript-eslint/typescript-estree" "5.36.2"1135 "@typescript-eslint/typescript-estree" "5.39.0"1142 "@typescript-eslint/utils" "5.36.2"1136 "@typescript-eslint/utils" "5.39.0"1143 debug "^4.3.4"1137 debug "^4.3.4"1144 tsutils "^3.21.0"1138 tsutils "^3.21.0"114511391146"@typescript-eslint/types@5.36.2":1140"@typescript-eslint/types@5.39.0":1147 version "5.36.2"1141 version "5.39.0"1148 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.36.2.tgz#a5066e500ebcfcee36694186ccc57b955c05faf9"1142 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.39.0.tgz#f4e9f207ebb4579fd854b25c0bf64433bb5ed78d"1149 integrity sha512-9OJSvvwuF1L5eS2EQgFUbECb99F0mwq501w0H0EkYULkhFa19Qq7WFbycdw1PexAc929asupbZcgjVIe6OK/XQ==1143 integrity sha512-gQMZrnfEBFXK38hYqt8Lkwt8f4U6yq+2H5VDSgP/qiTzC8Nw8JO3OuSUOQ2qW37S/dlwdkHDntkZM6SQhKyPhw==115011441151"@typescript-eslint/typescript-estree@5.36.2":1145"@typescript-eslint/typescript-estree@5.39.0":1152 version "5.36.2"1146 version "5.39.0"1153 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.2.tgz#0c93418b36c53ba0bc34c61fe9405c4d1d8fe560"1147 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.39.0.tgz#c0316aa04a1a1f4f7f9498e3c13ef1d3dc4cf88b"1154 integrity sha512-8fyH+RfbKc0mTspfuEjlfqA4YywcwQK2Amcf6TDOwaRLg7Vwdu4bZzyvBZp4bjt1RRjQ5MDnOZahxMrt2l5v9w==1148 integrity sha512-qLFQP0f398sdnogJoLtd43pUgB18Q50QSA+BTE5h3sUxySzbWDpTSdgt4UyxNSozY/oDK2ta6HVAzvGgq8JYnA==1155 dependencies:1149 dependencies:1156 "@typescript-eslint/types" "5.36.2"1150 "@typescript-eslint/types" "5.39.0"1157 "@typescript-eslint/visitor-keys" "5.36.2"1151 "@typescript-eslint/visitor-keys" "5.39.0"1158 debug "^4.3.4"1152 debug "^4.3.4"1159 globby "^11.1.0"1153 globby "^11.1.0"1160 is-glob "^4.0.3"1154 is-glob "^4.0.3"1161 semver "^7.3.7"1155 semver "^7.3.7"1162 tsutils "^3.21.0"1156 tsutils "^3.21.0"116311571164"@typescript-eslint/utils@5.36.2":1158"@typescript-eslint/utils@5.39.0":1165 version "5.36.2"1159 version "5.39.0"1166 resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.36.2.tgz#b01a76f0ab244404c7aefc340c5015d5ce6da74c"1160 resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.39.0.tgz#b7063cca1dcf08d1d21b0d91db491161ad0be110"1167 integrity sha512-uNcopWonEITX96v9pefk9DC1bWMdkweeSsewJ6GeC7L6j2t0SJywisgkr9wUTtXk90fi2Eljj90HSHm3OGdGRg==1161 integrity sha512-+DnY5jkpOpgj+EBtYPyHRjXampJfC0yUZZzfzLuUWVZvCuKqSdJVC8UhdWipIw7VKNTfwfAPiOWzYkAwuIhiAg==1168 dependencies:1162 dependencies:1169 "@types/json-schema" "^7.0.9"1163 "@types/json-schema" "^7.0.9"1170 "@typescript-eslint/scope-manager" "5.36.2"1164 "@typescript-eslint/scope-manager" "5.39.0"1171 "@typescript-eslint/types" "5.36.2"1165 "@typescript-eslint/types" "5.39.0"1172 "@typescript-eslint/typescript-estree" "5.36.2"1166 "@typescript-eslint/typescript-estree" "5.39.0"1173 eslint-scope "^5.1.1"1167 eslint-scope "^5.1.1"1174 eslint-utils "^3.0.0"1168 eslint-utils "^3.0.0"117511691176"@typescript-eslint/visitor-keys@5.36.2":1170"@typescript-eslint/visitor-keys@5.39.0":1177 version "5.36.2"1171 version "5.39.0"1178 resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.36.2.tgz#2f8f78da0a3bad3320d2ac24965791ac39dace5a"1172 resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.39.0.tgz#8f41f7d241b47257b081ddba5d3ce80deaae61e2"1179 integrity sha512-BtRvSR6dEdrNt7Net2/XDjbYKU5Ml6GqJgVfXT0CxTCJlnIqK7rAGreuWKMT2t8cFUT2Msv5oxw0GMRD7T5J7A==1173 integrity sha512-yyE3RPwOG+XJBLrhvsxAidUgybJVQ/hG8BhiJo0k8JSAYfk/CshVcxf0HwP4Jt7WZZ6vLmxdo1p6EyN3tzFTkg==1180 dependencies:1174 dependencies:1181 "@typescript-eslint/types" "5.36.2"1175 "@typescript-eslint/types" "5.39.0"1182 eslint-visitor-keys "^3.3.0"1176 eslint-visitor-keys "^3.3.0"118311771184"@ungap/promise-all-settled@1.1.2":1178"@ungap/promise-all-settled@1.1.2":1187 integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==1181 integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==118811821189abortcontroller-polyfill@^1.7.3:1183abortcontroller-polyfill@^1.7.3:1190 version "1.7.3"1184 version "1.7.5"1191 resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.3.tgz#1b5b487bd6436b5b764fd52a612509702c3144b5"1185 resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz#6738495f4e901fbb57b6c0611d0c75f76c485bed"1192 integrity sha512-zetDJxd89y3X99Kvo4qFx8GKlt6GsvN3UcRZHwU6iFA/0KiOmhkTVhe8oRoTBiTVPZu09x3vCra47+w8Yz1+2Q==1186 integrity sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==119311871194accepts@~1.3.8:1188accepts@~1.3.8:1195 version "1.3.8"1189 version "1.3.8"1352 dependencies:1346 dependencies:1353 tweetnacl "^0.14.3"1347 tweetnacl "^0.14.3"135413481355bignumber.js@^9.0.0, bignumber.js@^9.0.2:1349bignumber.js@^9.0.0, bignumber.js@^9.1.0:1356 version "9.1.0"1350 version "9.1.0"1357 resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62"1351 resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62"1358 integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==1352 integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==1387 resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"1381 resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"1388 integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==1382 integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==138913831390body-parser@1.20.0, body-parser@^1.16.0:1384body-parser@1.20.1, body-parser@^1.16.0:1391 version "1.20.0"1385 version "1.20.1"1392 resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5"1386 resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668"1393 integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==1387 integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==1394 dependencies:1388 dependencies:1395 bytes "3.1.2"1389 bytes "3.1.2"1396 content-type "~1.0.4"1390 content-type "~1.0.4"1400 http-errors "2.0.0"1394 http-errors "2.0.0"1401 iconv-lite "0.4.24"1395 iconv-lite "0.4.24"1402 on-finished "2.4.1"1396 on-finished "2.4.1"1403 qs "6.10.3"1397 qs "6.11.0"1404 raw-body "2.5.1"1398 raw-body "2.5.1"1405 type-is "~1.6.18"1399 type-is "~1.6.18"1406 unpipe "1.0.0"1400 unpipe "1.0.0"1491 readable-stream "^3.6.0"1485 readable-stream "^3.6.0"1492 safe-buffer "^5.2.0"1486 safe-buffer "^5.2.0"149314871494browserslist@^4.20.2:1488browserslist@^4.21.3:1495 version "4.21.3"1489 version "4.21.4"1496 resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz#5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a"1490 resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"1497 integrity sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==1491 integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==1498 dependencies:1492 dependencies:1499 caniuse-lite "^1.0.30001370"1493 caniuse-lite "^1.0.30001400"1500 electron-to-chromium "^1.4.202"1494 electron-to-chromium "^1.4.251"1501 node-releases "^2.0.6"1495 node-releases "^2.0.6"1502 update-browserslist-db "^1.0.5"1496 update-browserslist-db "^1.0.9"150314971504bs58@^4.0.0:1498bs58@^4.0.0:1505 version "4.0.1"1499 version "4.0.1"1593 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"1587 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"1594 integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==1588 integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==159515891596caniuse-lite@^1.0.30001370:1590caniuse-lite@^1.0.30001400:1597 version "1.0.30001393"1591 version "1.0.30001418"1598 resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001393.tgz#1aa161e24fe6af2e2ccda000fc2b94be0b0db356"1592 resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz#5f459215192a024c99e3e3a53aac310fc7cf24e6"1599 integrity sha512-N/od11RX+Gsk+1qY/jbPa0R6zJupEa0lxeBG598EbrtblxVCTJsQwbRBm6+V+rxpc5lHKdsXb9RY83cZIPLseA==1593 integrity sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==160015941601caseless@~0.12.0:1595caseless@~0.12.0:1602 version "0.12.0"1596 version "0.12.0"1703 strip-ansi "^6.0.0"1697 strip-ansi "^6.0.0"1704 wrap-ansi "^7.0.0"1698 wrap-ansi "^7.0.0"170516991700cliui@^8.0.1:1701 version "8.0.1"1702 resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"1703 integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==1704 dependencies:1705 string-width "^4.2.0"1706 strip-ansi "^6.0.1"1707 wrap-ansi "^7.0.0"17081706clone-deep@^4.0.1:1709clone-deep@^4.0.1:1707 version "4.0.1"1710 version "4.0.1"1708 resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"1711 resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"2057 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"2060 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"2058 integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==2061 integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==205920622060electron-to-chromium@^1.4.202:2063electron-to-chromium@^1.4.251:2061 version "1.4.246"2064 version "1.4.276"2062 resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.246.tgz#802132d1bbd3ff32ce82fcd6a6ed6ab59b4366dc"2065 resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.276.tgz#17837b19dafcc43aba885c4689358b298c19b520"2063 integrity sha512-/wFCHUE+Hocqr/LlVGsuKLIw4P2lBWwFIDcNMDpJGzyIysQV4aycpoOitAs32FT94EHKnNqDR/CVZJFbXEufJA==2066 integrity sha512-EpuHPqu8YhonqLBXHoU6hDJCD98FCe6KDoet3/gY1qsQ6usjJoHqBH2YIVs8FXaAtHwVL8Uqa/fsYao/vq9VWQ==206420672065elliptic@6.5.4, elliptic@^6.4.0, elliptic@^6.5.3, elliptic@^6.5.4:2068elliptic@6.5.4, elliptic@^6.4.0, elliptic@^6.5.3, elliptic@^6.5.4:2066 version "6.5.4"2069 version "6.5.4"2093 once "^1.4.0"2096 once "^1.4.0"209420972095es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0:2098es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0:2096 version "1.20.2"2099 version "1.20.4"2097 resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3"2100 resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"2098 integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==2101 integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==2099 dependencies:2102 dependencies:2100 call-bind "^1.0.2"2103 call-bind "^1.0.2"2101 es-to-primitive "^1.2.1"2104 es-to-primitive "^1.2.1"2102 function-bind "^1.1.1"2105 function-bind "^1.1.1"2103 function.prototype.name "^1.1.5"2106 function.prototype.name "^1.1.5"2104 get-intrinsic "^1.1.2"2107 get-intrinsic "^1.1.3"2105 get-symbol-description "^1.0.0"2108 get-symbol-description "^1.0.0"2106 has "^1.0.3"2109 has "^1.0.3"2107 has-property-descriptors "^1.0.0"2110 has-property-descriptors "^1.0.0"2108 has-symbols "^1.0.3"2111 has-symbols "^1.0.3"2109 internal-slot "^1.0.3"2112 internal-slot "^1.0.3"2110 is-callable "^1.2.4"2113 is-callable "^1.2.7"2111 is-negative-zero "^2.0.2"2114 is-negative-zero "^2.0.2"2112 is-regex "^1.1.4"2115 is-regex "^1.1.4"2113 is-shared-array-buffer "^1.0.2"2116 is-shared-array-buffer "^1.0.2"2117 object-keys "^1.1.1"2120 object-keys "^1.1.1"2118 object.assign "^4.1.4"2121 object.assign "^4.1.4"2119 regexp.prototype.flags "^1.4.3"2122 regexp.prototype.flags "^1.4.3"2123 safe-regex-test "^1.0.0"2120 string.prototype.trimend "^1.0.5"2124 string.prototype.trimend "^1.0.5"2121 string.prototype.trimstart "^1.0.5"2125 string.prototype.trimstart "^1.0.5"2122 unbox-primitive "^1.0.2"2126 unbox-primitive "^1.0.2"2215 integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==2219 integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==221622202217eslint@^8.16.0:2221eslint@^8.16.0:2218 version "8.23.0"2222 version "8.25.0"2219 resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.23.0.tgz#a184918d288820179c6041bb3ddcc99ce6eea040"2223 resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.25.0.tgz#00eb962f50962165d0c4ee3327708315eaa8058b"2220 integrity sha512-pBG/XOn0MsJcKcTRLr27S5HpzQo4kLr+HjLQIyK4EiCsijDl/TB+h5uEuJU6bQ8Edvwz1XWOjpaP2qgnXGpTcA==2224 integrity sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==2221 dependencies:2225 dependencies:2222 "@eslint/eslintrc" "^1.3.1"2226 "@eslint/eslintrc" "^1.3.3"2223 "@humanwhocodes/config-array" "^0.10.4"2227 "@humanwhocodes/config-array" "^0.10.5"2224 "@humanwhocodes/gitignore-to-minimatch" "^1.0.2"2225 "@humanwhocodes/module-importer" "^1.0.1"2228 "@humanwhocodes/module-importer" "^1.0.1"2226 ajv "^6.10.0"2229 ajv "^6.10.0"2227 chalk "^4.0.0"2230 chalk "^4.0.0"2238 fast-deep-equal "^3.1.3"2241 fast-deep-equal "^3.1.3"2239 file-entry-cache "^6.0.1"2242 file-entry-cache "^6.0.1"2240 find-up "^5.0.0"2243 find-up "^5.0.0"2241 functional-red-black-tree "^1.0.1"2242 glob-parent "^6.0.1"2244 glob-parent "^6.0.1"2243 globals "^13.15.0"2245 globals "^13.15.0"2244 globby "^11.1.0"2246 globby "^11.1.0"2247 import-fresh "^3.0.0"2249 import-fresh "^3.0.0"2248 imurmurhash "^0.1.4"2250 imurmurhash "^0.1.4"2249 is-glob "^4.0.0"2251 is-glob "^4.0.0"2252 js-sdsl "^4.1.4"2250 js-yaml "^4.1.0"2253 js-yaml "^4.1.0"2251 json-stable-stringify-without-jsonify "^1.0.1"2254 json-stable-stringify-without-jsonify "^1.0.1"2252 levn "^0.4.1"2255 levn "^0.4.1"2397 safe-buffer "^5.1.1"2400 safe-buffer "^5.1.1"239824012399express@^4.14.0:2402express@^4.14.0:2400 version "4.18.1"2403 version "4.18.2"2401 resolved "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz#7797de8b9c72c857b9cd0e14a5eea80666267caf"2404 resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59"2402 integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==2405 integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==2403 dependencies:2406 dependencies:2404 accepts "~1.3.8"2407 accepts "~1.3.8"2405 array-flatten "1.1.1"2408 array-flatten "1.1.1"2406 body-parser "1.20.0"2409 body-parser "1.20.1"2407 content-disposition "0.5.4"2410 content-disposition "0.5.4"2408 content-type "~1.0.4"2411 content-type "~1.0.4"2409 cookie "0.5.0"2412 cookie "0.5.0"2422 parseurl "~1.3.3"2425 parseurl "~1.3.3"2423 path-to-regexp "0.1.7"2426 path-to-regexp "0.1.7"2424 proxy-addr "~2.0.7"2427 proxy-addr "~2.0.7"2425 qs "6.10.3"2428 qs "6.11.0"2426 range-parser "~1.2.1"2429 range-parser "~1.2.1"2427 safe-buffer "5.2.1"2430 safe-buffer "5.2.1"2428 send "0.18.0"2431 send "0.18.0"2575 integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==2578 integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==257625792577follow-redirects@^1.12.1:2580follow-redirects@^1.12.1:2578 version "1.15.1"2581 version "1.15.2"2579 resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5"2582 resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"2580 integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==2583 integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==258125842582for-each@^0.3.3:2585for-each@^0.3.3:2583 version "0.3.3"2586 version "0.3.3"2672 es-abstract "^1.19.0"2675 es-abstract "^1.19.0"2673 functions-have-names "^1.2.2"2676 functions-have-names "^1.2.2"267426772675functional-red-black-tree@^1.0.1:2676 version "1.0.1"2677 resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"2678 integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==26792680functions-have-names@^1.2.2:2678functions-have-names@^1.2.2:2681 version "1.2.3"2679 version "1.2.3"2682 resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"2680 resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"2697 resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"2695 resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"2698 integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==2696 integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==269926972700get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2:2698get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:2701 version "1.1.2"2699 version "1.1.3"2702 resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598"2700 resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"2703 integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==2701 integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==2704 dependencies:2702 dependencies:2705 function-bind "^1.1.1"2703 function-bind "^1.1.1"2706 has "^1.0.3"2704 has "^1.0.3"3086 call-bind "^1.0.2"3084 call-bind "^1.0.2"3087 has-tostringtag "^1.0.0"3085 has-tostringtag "^1.0.0"308830863089is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4:3087is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:3090 version "1.2.4"3088 version "1.2.7"3091 resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"3089 resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"3092 integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==3090 integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==309330913094is-date-object@^1.0.1:3092is-date-object@^1.0.1:3095 version "1.0.5"3093 version "1.0.5"3233 resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"3231 resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"3234 integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==3232 integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==323532333234js-sdsl@^4.1.4:3235 version "4.1.5"3236 resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"3237 integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==32383236js-sha3@0.8.0, js-sha3@^0.8.0:3239js-sha3@0.8.0, js-sha3@^0.8.0:3237 version "0.8.0"3240 version "0.8.0"3238 resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"3241 resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"4025 resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"4028 resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"4026 integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==4029 integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==402740304028qs@6.10.3:4031qs@6.11.0:4029 version "6.10.3"4032 version "6.11.0"4030 resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e"4033 resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"4031 integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==4034 integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==4032 dependencies:4035 dependencies:4033 side-channel "^1.0.4"4036 side-channel "^1.0.4"403440374203 dependencies:4206 dependencies:4204 queue-microtask "^1.2.2"4207 queue-microtask "^1.2.2"420542084206rxjs@^7.5.6:4209rxjs@^7.5.7:4207 version "7.5.6"4210 version "7.5.7"4208 resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc"4211 resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39"4209 integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==4212 integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==4210 dependencies:4213 dependencies:4211 tslib "^2.1.0"4214 tslib "^2.1.0"421242154220 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"4223 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"4221 integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==4224 integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==422242254226safe-regex-test@^1.0.0:4227 version "1.0.0"4228 resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"4229 integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==4230 dependencies:4231 call-bind "^1.0.2"4232 get-intrinsic "^1.1.3"4233 is-regex "^1.1.4"42344223"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:4235"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:4224 version "2.1.2"4236 version "2.1.2"4225 resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"4237 resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"4250 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==4262 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==425142634252semver@^7.3.7:4264semver@^7.3.7:4253 version "7.3.7"4265 version "7.3.8"4254 resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"4266 resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"4255 integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==4267 integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==4256 dependencies:4268 dependencies:4257 lru-cache "^6.0.0"4269 lru-cache "^6.0.0"425842704368 resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"4380 resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"4369 integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==4381 integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==437043824371solc@0.8.14-fixed:4383solc@0.8.17:4372 version "0.8.14-fixed"4384 version "0.8.17"4373 resolved "https://registry.yarnpkg.com/solc/-/solc-0.8.14-fixed.tgz#a730a1e8259ac06313f6b7287df046ebe1dddc13"4385 resolved "https://registry.yarnpkg.com/solc/-/solc-0.8.17.tgz#c748fec6a64bf029ec406aa9b37e75938d1115ae"4374 integrity sha512-jFYa2fKbk95olckuDbhs9kbtaUhLRllM7aC++mLinJBUcdHbaHVM8LxHaJpOIDdnHBV9TpIP4XBybVugqMDyhA==4386 integrity sha512-Dtidk2XtTTmkB3IKdyeg6wLYopJnBVxdoykN8oP8VY3PQjN16BScYoUJTXFm2OP7P0hXNAqWiJNmmfuELtLf8g==4375 dependencies:4387 dependencies:4376 command-exists "^1.2.8"4388 command-exists "^1.2.8"4377 commander "^8.1.0"4389 commander "^8.1.0"4666 is-typedarray "^1.0.0"4678 is-typedarray "^1.0.0"466746794668typescript@^4.7.2:4680typescript@^4.7.2:4669 version "4.8.3"4681 version "4.8.4"4670 resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88"4682 resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"4671 integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==4683 integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==467246844673uglify-js@^3.1.4:4685uglify-js@^3.1.4:4674 version "3.17.0"4686 version "3.17.3"4675 resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.0.tgz#55bd6e9d19ce5eef0d5ad17cd1f587d85b180a85"4687 resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377"4676 integrity sha512-aTeNPVmgIMPpm1cxXr2Q/nEbvkmV8yq66F3om7X3P/cvOXQ0TMQ64Wk63iyT1gPlmdmGzjGpyLh1f3y8MZWXGg==4688 integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==467746894678ultron@~1.1.0:4690ultron@~1.1.0:4679 version "1.1.1"4691 version "1.1.1"4700 resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"4712 resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"4701 integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==4713 integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==470247144703update-browserslist-db@^1.0.5:4715update-browserslist-db@^1.0.9:4704 version "1.0.7"4716 version "1.0.10"4705 resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.7.tgz#16279639cff1d0f800b14792de43d97df2d11b7d"4717 resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"4706 integrity sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg==4718 integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==4707 dependencies:4719 dependencies:4708 escalade "^3.1.1"4720 escalade "^3.1.1"4709 picocolors "^1.0.0"4721 picocolors "^1.0.0"4793 resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"4805 resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"4794 integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==4806 integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==479548074796web3-bzz@1.7.5:4808web3-bzz@1.8.0:4797 version "1.7.5"4809 version "1.8.0"4798 resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.7.5.tgz#edeb262c3a6619109763077a94172513cf07cdde"4810 resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.0.tgz#2023676d7c17ea36512bf76eb310755a02a3d464"4799 integrity sha512-Z53sY0YK/losqjJncmL4vP0zZI9r6tiXg6o7R6e1JD2Iy7FH3serQvU+qXmPjqEBzsnhf8wTG+YcBPB3RHpr0Q==4811 integrity sha512-caDtdKeLi7+2Vb+y+cq2yyhkNjnxkFzVW0j1DtemarBg3dycG1iEl75CVQMLNO6Wkg+HH9tZtRnUyFIe5LIUeQ==4800 dependencies:4812 dependencies:4801 "@types/node" "^12.12.6"4813 "@types/node" "^12.12.6"4802 got "12.1.0"4814 got "12.1.0"4803 swarm-js "^0.1.40"4815 swarm-js "^0.1.40"480448164805web3-core-helpers@1.7.5:4817web3-core-helpers@1.8.0:4806 version "1.7.5"4818 version "1.8.0"4807 resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.7.5.tgz#e97b3ecac787ade4b9390807a86aca78ed97872b"4819 resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.0.tgz#5dcfdda1a4ea277041d912003198f1334ca29d7c"4808 integrity sha512-lDDjTks6Q6aNUO87RYrY2xub3UWTKr/RIWxpHJODEqkLxZS1dWdyliJ6aIx3031VQwsNT5HE7NvABe/t0p3iDQ==4820 integrity sha512-nMAVwZB3rEp/khHI2BvFy0e/xCryf501p5NGjswmJtEM+Zrd3Biaw52JrB1qAZZIzCA8cmLKaOgdfamoDOpWdw==4809 dependencies:4821 dependencies:4810 web3-eth-iban "1.7.5"4822 web3-eth-iban "1.8.0"4811 web3-utils "1.7.5"4823 web3-utils "1.8.0"481248244813web3-core-method@1.7.5:4825web3-core-method@1.8.0:4814 version "1.7.5"4826 version "1.8.0"4815 resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.7.5.tgz#ffe8883c169468f0e4d13509377f2d8876d9b7be"4827 resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.0.tgz#9c2da8896808917d1679c319f19e2174ba17086c"4816 integrity sha512-ApTvq1Llzlbxmy0n4L7QaE6NodIsR80VJqk8qN4kLg30SGznt/pNJFebryLI2kpyDmxSgj1TjEWzmHJBp6FhYg==4828 integrity sha512-c94RAzo3gpXwf2rf8rL8C77jOzNWF4mXUoUfZYYsiY35cJFd46jQDPI00CB5+ZbICTiA5mlVzMj4e7jAsTqiLA==4817 dependencies:4829 dependencies:4818 "@ethersproject/transactions" "^5.6.2"4830 "@ethersproject/transactions" "^5.6.2"4819 web3-core-helpers "1.7.5"4831 web3-core-helpers "1.8.0"4820 web3-core-promievent "1.7.5"4832 web3-core-promievent "1.8.0"4821 web3-core-subscriptions "1.7.5"4833 web3-core-subscriptions "1.8.0"4822 web3-utils "1.7.5"4834 web3-utils "1.8.0"482348354824web3-core-promievent@1.7.5:4836web3-core-promievent@1.8.0:4825 version "1.7.5"4837 version "1.8.0"4826 resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.7.5.tgz#56a9b06a20e20a0a89d2ab7f88d44c8ae01d5b62"4838 resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.0.tgz#979765fd4d37ab0f158f0ee54037b279b737bd53"4827 integrity sha512-uZ1VRErVuhiLtHlyt3oEH/JSvAf6bWPndChHR9PG7i1Zfqm6ZVCeM91ICTPmiL8ddsGQOxASpnJk4vhApcTIww==4839 integrity sha512-FGLyjAuOaAQ+ZhV6iuw9tg/9WvIkSZXKHQ4mdTyQ8MxVraOtFivOCbuLLsGgapfHYX+RPxsc1j1YzQjKoupagQ==4828 dependencies:4840 dependencies:4829 eventemitter3 "4.0.4"4841 eventemitter3 "4.0.4"483048424831web3-core-requestmanager@1.7.5:4843web3-core-requestmanager@1.8.0:4832 version "1.7.5"4844 version "1.8.0"4833 resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.7.5.tgz#be18fc99642689aeb2e016fa43fb47bb9e8c94ce"4845 resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.0.tgz#06189df80cf52d24a195a7ef655031afe8192df3"4834 integrity sha512-3KpfxW/wVH4mgwWEsSJGHKrtRVoijWlDxtUrm17xgtqRNZ2mFolifKnHAUKa0fY48C9CrxmcCiMIi3W4G6WYRw==4846 integrity sha512-2AoYCs3Owl5foWcf4uKPONyqFygSl9T54L8b581U16nsUirjhoTUGK/PBhMDVcLCmW4QQmcY5A8oPFpkQc1TTg==4835 dependencies:4847 dependencies:4836 util "^0.12.0"4848 util "^0.12.0"4837 web3-core-helpers "1.7.5"4849 web3-core-helpers "1.8.0"4838 web3-providers-http "1.7.5"4850 web3-providers-http "1.8.0"4839 web3-providers-ipc "1.7.5"4851 web3-providers-ipc "1.8.0"4840 web3-providers-ws "1.7.5"4852 web3-providers-ws "1.8.0"484148534842web3-core-subscriptions@1.7.5:4854web3-core-subscriptions@1.8.0:4843 version "1.7.5"4855 version "1.8.0"4844 resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.7.5.tgz#c0e25610768ea9d9f9107b4ac74b6b6573125e00"4856 resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.0.tgz#ff66ae4467c8cb4716367248bcefb1845c0f8b83"4845 integrity sha512-YK6utQ7Wwjbe4XZOIA8quWGBPi1lFDS1A+jQYwxKKrCvm6BloBNc3FhvrcSYlDhLe/kOy8+2Je8i9amndgT4ww==4857 integrity sha512-7lHVRzDdg0+Gcog55lG6Q3D8JV+jN+4Ly6F8cSn9xFUAwOkdbgdWsjknQG7t7CDWy21DQkvdiY2BJF8S68AqOA==4846 dependencies:4858 dependencies:4847 eventemitter3 "4.0.4"4859 eventemitter3 "4.0.4"4848 web3-core-helpers "1.7.5"4860 web3-core-helpers "1.8.0"484948614850web3-core@1.7.5:4862web3-core@1.8.0:4851 version "1.7.5"4863 version "1.8.0"4852 resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.7.5.tgz#8ee2ca490230a30ca970cb9f308eb65b76405e1d"4864 resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.0.tgz#90afce527ac1b1dff8cbed2acbc0336530b8aacf"4853 integrity sha512-UgOWXZr1fR/3cUQJKWbfMwRxj1/N7o6RSd/dHqdXBlOD+62EjNZItFmLRg5veq5kp9YfXzrNw9bnDkXfsL+nKQ==4865 integrity sha512-9sCA+Z02ci6zoY2bAquFiDjujRwmSKHiSGi4B8IstML8okSytnzXk1izHYSynE7ahIkguhjWAuXFvX76F5rAbA==4854 dependencies:4866 dependencies:4855 "@types/bn.js" "^5.1.0"4867 "@types/bn.js" "^5.1.0"4856 "@types/node" "^12.12.6"4868 "@types/node" "^12.12.6"4857 bignumber.js "^9.0.0"4869 bignumber.js "^9.0.0"4858 web3-core-helpers "1.7.5"4870 web3-core-helpers "1.8.0"4859 web3-core-method "1.7.5"4871 web3-core-method "1.8.0"4860 web3-core-requestmanager "1.7.5"4872 web3-core-requestmanager "1.8.0"4861 web3-utils "1.7.5"4873 web3-utils "1.8.0"486248744863web3-eth-abi@1.7.5:4875web3-eth-abi@1.8.0:4864 version "1.7.5"4876 version "1.8.0"4865 resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.7.5.tgz#db9d6dbcc043a6e922252f3228686e9bbd50d7c9"4877 resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.0.tgz#47fdff00bfdfa72064c9c612ff6369986598196d"4866 integrity sha512-qWHvF7sayxql9BD1yqK9sZRLBQ66eJzGeaU53Y1PRq2iFPrhY6NUWxQ3c3ps0rg+dyObvRbloviWpKXcS4RE/A==4878 integrity sha512-xPeMb2hS9YLQK/Q5YZpkcmzoRGM+/R8bogSrYHhNC3hjZSSU0YRH+1ZKK0f9YF4qDZaPMI8tKWIMSCDIpjG6fg==4867 dependencies:4879 dependencies:4868 "@ethersproject/abi" "^5.6.3"4880 "@ethersproject/abi" "^5.6.3"4869 web3-utils "1.7.5"4881 web3-utils "1.8.0"487048824871web3-eth-accounts@1.7.5:4883web3-eth-accounts@1.8.0:4872 version "1.7.5"4884 version "1.8.0"4873 resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.7.5.tgz#b37ee3aeebcc6bce3337636aeb272cbba0ece547"4885 resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.0.tgz#960d947ee87a49d6c706dc6312334fbfbd6ff812"4874 integrity sha512-AzMLoTj3RGwKpyp3x3TtHrEeU4VpR99iMOD6NKrWSDumS6QEi0lCo+y7QZhdTlINw3iIA3SFIdvbAOO4NCHSDg==4886 integrity sha512-HQ/MDSv4bexwJLvnqsM6xpGE7c2NVOqyhzOZFyMUKXbIwIq85T3TaLnM9pCN7XqMpDcfxqiZ3q43JqQVkzHdmw==4875 dependencies:4887 dependencies:4876 "@ethereumjs/common" "^2.5.0"4888 "@ethereumjs/common" "^2.5.0"4877 "@ethereumjs/tx" "^3.3.2"4889 "@ethereumjs/tx" "^3.3.2"4880 ethereumjs-util "^7.0.10"4892 ethereumjs-util "^7.0.10"4881 scrypt-js "^3.0.1"4893 scrypt-js "^3.0.1"4882 uuid "3.3.2"4894 uuid "3.3.2"4883 web3-core "1.7.5"4895 web3-core "1.8.0"4884 web3-core-helpers "1.7.5"4896 web3-core-helpers "1.8.0"4885 web3-core-method "1.7.5"4897 web3-core-method "1.8.0"4886 web3-utils "1.7.5"4898 web3-utils "1.8.0"488748994888web3-eth-contract@1.7.5:4900web3-eth-contract@1.8.0:4889 version "1.7.5"4901 version "1.8.0"4890 resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.7.5.tgz#a032419579bcec062513a3d089ad0e89ac63d731"4902 resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.0.tgz#58f4ce0bde74e5ce87663502e409a92abad7b2c5"4891 integrity sha512-qab7NPJRKRlTs58ozsqK8YIEwWpxIm3vD/okSIKBGkFx5gIHWW+vGmMh5PDSfefLJM9rCd+T+Lc0LYvtME7uqg==4903 integrity sha512-6xeXhW2YoCrz2Ayf2Vm4srWiMOB6LawkvxWJDnUWJ8SMATg4Pgu42C/j8rz/enXbYWt2IKuj0kk8+QszxQbK+Q==4892 dependencies:4904 dependencies:4893 "@types/bn.js" "^5.1.0"4905 "@types/bn.js" "^5.1.0"4894 web3-core "1.7.5"4906 web3-core "1.8.0"4895 web3-core-helpers "1.7.5"4907 web3-core-helpers "1.8.0"4896 web3-core-method "1.7.5"4908 web3-core-method "1.8.0"4897 web3-core-promievent "1.7.5"4909 web3-core-promievent "1.8.0"4898 web3-core-subscriptions "1.7.5"4910 web3-core-subscriptions "1.8.0"4899 web3-eth-abi "1.7.5"4911 web3-eth-abi "1.8.0"4900 web3-utils "1.7.5"4912 web3-utils "1.8.0"490149134902web3-eth-ens@1.7.5:4914web3-eth-ens@1.8.0:4903 version "1.7.5"4915 version "1.8.0"4904 resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.7.5.tgz#fa0e287f5e6fae20531117b7467e21b482d58cab"4916 resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.0.tgz#f1937371eac54b087ebe2e871780c2710d39998d"4905 integrity sha512-k1Q0msdRv/wac2egpZBIwG3n/sa/KdrVmVJvFm471gLTL4xfUizV5qJjkDVf+ikf9JyDvWJTs5eWNUUbOFIw/A==4917 integrity sha512-/eFbQEwvsMOEiOhw9/iuRXCsPkqAmHHWuFOrThQkozRgcnSTRnvxkkRC/b6koiT5/HaKeUs4yQDg+/ixsIxZxA==4906 dependencies:4918 dependencies:4907 content-hash "^2.5.2"4919 content-hash "^2.5.2"4908 eth-ens-namehash "2.0.8"4920 eth-ens-namehash "2.0.8"4909 web3-core "1.7.5"4921 web3-core "1.8.0"4910 web3-core-helpers "1.7.5"4922 web3-core-helpers "1.8.0"4911 web3-core-promievent "1.7.5"4923 web3-core-promievent "1.8.0"4912 web3-eth-abi "1.7.5"4924 web3-eth-abi "1.8.0"4913 web3-eth-contract "1.7.5"4925 web3-eth-contract "1.8.0"4914 web3-utils "1.7.5"4926 web3-utils "1.8.0"491549274916web3-eth-iban@1.7.5:4928web3-eth-iban@1.8.0:4917 version "1.7.5"4929 version "1.8.0"4918 resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.7.5.tgz#1a50efa42cabf1b731396d38bef6a8bf92b5ee1f"4930 resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.0.tgz#3af8a0c95b5f7b0b81ab0bcd2075c1e5dda31520"4919 integrity sha512-mn2W5t/1IpL8OZvzAabLKT4kvwRnZSJ9K0tctndl9sDNWkfITYQibEEhUaNNA50Q5fJKgVudHI/m0gwIVTyG8Q==4931 integrity sha512-4RbvUxcMpo/e5811sE3a6inJ2H4+FFqUVmlRYs0RaXaxiHweahSRBNcpO0UWgmlePTolj0rXqPT2oEr0DuC8kg==4920 dependencies:4932 dependencies:4921 bn.js "^5.2.1"4933 bn.js "^5.2.1"4922 web3-utils "1.7.5"4934 web3-utils "1.8.0"492349354924web3-eth-personal@1.7.5:4936web3-eth-personal@1.8.0:4925 version "1.7.5"4937 version "1.8.0"4926 resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.7.5.tgz#615a3ddcf97aeea93e2a4569753c033fd7a495c5"4938 resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.0.tgz#433c35e2e042844402a12d543c4126ea1494b478"4927 integrity sha512-txh2P/eN8I4AOUKFi9++KKddoD0tWfCuu9Y1Kc41jSRbk6smO88Fum0KWNmYFYhSCX2qiknS1DfqsONl3igoKQ==4939 integrity sha512-L7FT4nR3HmsfZyIAhFpEctKkYGOjRC2h6iFKs9gnFCHZga8yLcYcGaYOBIoYtaKom99MuGBoosayWt/Twh7F5A==4928 dependencies:4940 dependencies:4929 "@types/node" "^12.12.6"4941 "@types/node" "^12.12.6"4930 web3-core "1.7.5"4942 web3-core "1.8.0"4931 web3-core-helpers "1.7.5"4943 web3-core-helpers "1.8.0"4932 web3-core-method "1.7.5"4944 web3-core-method "1.8.0"4933 web3-net "1.7.5"4945 web3-net "1.8.0"4934 web3-utils "1.7.5"4946 web3-utils "1.8.0"493549474936web3-eth@1.7.5:4948web3-eth@1.8.0:4937 version "1.7.5"4949 version "1.8.0"4938 resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.7.5.tgz#36906f50a6c35570cbc08871a33caa83dc131c9c"4950 resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.0.tgz#006974a5d5e30644d05814111f9e162a72e4a09c"4939 integrity sha512-BucjvqZyDWYkGlsFX+OnOBub0YutlC1KZiNGibdmvtNX0NQK+8iw1uzAoL9yTTwCSszL7lnkFe8N+HCOl9B4Dw==4951 integrity sha512-hist52os3OT4TQFB/GxPSMxTh3995sz6LPvQpPvj7ktSbpg9RNSFaSsPlCT63wUAHA3PZb1FemkAIeQM5t72Lw==4940 dependencies:4952 dependencies:4941 web3-core "1.7.5"4953 web3-core "1.8.0"4942 web3-core-helpers "1.7.5"4954 web3-core-helpers "1.8.0"4943 web3-core-method "1.7.5"4955 web3-core-method "1.8.0"4944 web3-core-subscriptions "1.7.5"4956 web3-core-subscriptions "1.8.0"4945 web3-eth-abi "1.7.5"4957 web3-eth-abi "1.8.0"4946 web3-eth-accounts "1.7.5"4958 web3-eth-accounts "1.8.0"4947 web3-eth-contract "1.7.5"4959 web3-eth-contract "1.8.0"4948 web3-eth-ens "1.7.5"4960 web3-eth-ens "1.8.0"4949 web3-eth-iban "1.7.5"4961 web3-eth-iban "1.8.0"4950 web3-eth-personal "1.7.5"4962 web3-eth-personal "1.8.0"4951 web3-net "1.7.5"4963 web3-net "1.8.0"4952 web3-utils "1.7.5"4964 web3-utils "1.8.0"495349654954web3-net@1.7.5:4966web3-net@1.8.0:4955 version "1.7.5"4967 version "1.8.0"4956 resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.7.5.tgz#87fbc00a9ca40515bf60c847c0092498887cfdc8"4968 resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.0.tgz#9acff92d7c647d801bc68df0ff4416f104dbe789"4957 integrity sha512-xwuCb2YWw49PmW81AJQ/G+Xi2ikRsYyZXSgyPt4LmZuKjiqg/6kSdK8lZvUi3Pi3wM+QDBXbpr73M/WEkW0KvA==4969 integrity sha512-kX6EAacK7QrOe7DOh0t5yHS5q2kxZmTCxPVwSz9io9xBeE4n4UhmzGJ/VfhP2eM3OPKYeypcR3LEO6zZ8xn2vw==4958 dependencies:4970 dependencies:4959 web3-core "1.7.5"4971 web3-core "1.8.0"4960 web3-core-method "1.7.5"4972 web3-core-method "1.8.0"4961 web3-utils "1.7.5"4973 web3-utils "1.8.0"496249744963web3-providers-http@1.7.5:4975web3-providers-http@1.8.0:4964 version "1.7.5"4976 version "1.8.0"4965 resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.7.5.tgz#144bb0c29007d1b766bafb0e20f80be050c7aa80"4977 resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.0.tgz#3fd1e569ead2095343fac17d53160a3bae674c23"4966 integrity sha512-vPgr4Kzy0M3CHtoP/Bh7qwK/D9h2fhjpoqctdMWVJseOfeTgfOphCKN0uwV8w2VpZgDPXA8aeTdBx5OjmDdStA==4978 integrity sha512-/MqxwRzExohBWW97mqlCSW/+NHydGRyoEDUS1bAIF2YjfKFwyRtHgrEzOojzkC9JvB+8LofMvbXk9CcltpZapw==4967 dependencies:4979 dependencies:4968 abortcontroller-polyfill "^1.7.3"4980 abortcontroller-polyfill "^1.7.3"4969 cross-fetch "^3.1.4"4981 cross-fetch "^3.1.4"4970 es6-promise "^4.2.8"4982 es6-promise "^4.2.8"4971 web3-core-helpers "1.7.5"4983 web3-core-helpers "1.8.0"497249844973web3-providers-ipc@1.7.5:4985web3-providers-ipc@1.8.0:4974 version "1.7.5"4986 version "1.8.0"4975 resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.7.5.tgz#5b0f9b4f7340416953b8816d2e42e3f548d47372"4987 resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.0.tgz#d339a24c4d764e459e425d3ac868a551ac33e3ea"4976 integrity sha512-aNHx+RAROzO+apDEzy8Zncj78iqWBadIXtpmFDg7uiTn8i+oO+IcP1Yni7jyzkltsysVJHgHWG4kPx50ANCK3Q==4988 integrity sha512-tAXHtVXNUOgehaBU8pzAlB3qhjn/PRpjdzEjzHNFqtRRTwzSEKOJxFeEhaUA4FzHnTlbnrs8ujHWUitcp1elfg==4977 dependencies:4989 dependencies:4978 oboe "2.1.5"4990 oboe "2.1.5"4979 web3-core-helpers "1.7.5"4991 web3-core-helpers "1.8.0"498049924981web3-providers-ws@1.7.5:4993web3-providers-ws@1.8.0:4982 version "1.7.5"4994 version "1.8.0"4983 resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.7.5.tgz#196b9e56a4a48f9bee54def56875ea53dec7c711"4995 resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.0.tgz#a0a73e0606981ea32bed40d215000a64753899de"4984 integrity sha512-9uJNVVkIGC8PmM9kNbgPth56HDMSSsxZh3ZEENdwO3LNWemaADiQYUDCsD/dMVkn0xsGLHP5dgAy4Q5msqySLg==4996 integrity sha512-bcZtSifsqyJxwkfQYamfdIRp4nhj9eJd7cxHg1uUkfLJK125WP96wyJL1xbPt7qt0MpfnTFn8/UuIqIB6nFENg==4985 dependencies:4997 dependencies:4986 eventemitter3 "4.0.4"4998 eventemitter3 "4.0.4"4987 web3-core-helpers "1.7.5"4999 web3-core-helpers "1.8.0"4988 websocket "^1.0.32"5000 websocket "^1.0.32"498950014990web3-shh@1.7.5:5002web3-shh@1.8.0:4991 version "1.7.5"5003 version "1.8.0"4992 resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.7.5.tgz#742e27f5c44bea6d7adef3a49b085e0fcd6aa621"5004 resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.0.tgz#b4abbf4f59d097ce2f74360e61e2e5c0bd6507c7"4993 integrity sha512-aCIWJyLMH5H76OybU4ZpUCJ93yNOPATGhJ+KboRPU8QZDzS2CcVhtEzyl27bbvw+rSnVroMLqBgTXBB4mmKI7A==5005 integrity sha512-DNRgSa9Jf9xYFUGKSMylrf+zt3MPjhI2qF+UWX07o0y3+uf8zalDGiJOWvIS4upAsdPiKKVJ7co+Neof47OMmg==4994 dependencies:5006 dependencies:4995 web3-core "1.7.5"5007 web3-core "1.8.0"4996 web3-core-method "1.7.5"5008 web3-core-method "1.8.0"4997 web3-core-subscriptions "1.7.5"5009 web3-core-subscriptions "1.8.0"4998 web3-net "1.7.5"5010 web3-net "1.8.0"499950115000web3-utils@1.7.5:5012web3-utils@1.8.0:5001 version "1.7.5"5013 version "1.8.0"5002 resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.7.5.tgz#081a952ac6e0322e25ac97b37358a43c7372ef6a"5014 resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.0.tgz#0a506f8c6af9a2ad6ba79689892662769534fc03"5003 integrity sha512-9AqNOziQky4wNQadEwEfHiBdOZqopIHzQQVzmvvv6fJwDSMhP+khqmAZC7YTiGjs0MboyZ8tWNivqSO1699XQw==5015 integrity sha512-7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ==5004 dependencies:5016 dependencies:5005 bn.js "^5.2.1"5017 bn.js "^5.2.1"5006 ethereum-bloom-filters "^1.0.6"5018 ethereum-bloom-filters "^1.0.6"5011 utf8 "3.0.0"5023 utf8 "3.0.0"501250245013web3@^1.7.3:5025web3@^1.7.3:5014 version "1.7.5"5026 version "1.8.0"5015 resolved "https://registry.yarnpkg.com/web3/-/web3-1.7.5.tgz#4e185d2058195b5775109b3f27cdea65a34a036e"5027 resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.0.tgz#3ca5f0b32de6a1f626407740411219035b5fde64"5016 integrity sha512-3jHZTWyXt975AOXgnZKayiSWDLpoSKk9fZtLk1hURQtt7AdSbXPT8AK9ooBCm0Dt3GYaOeNcHGaiHC3gtyqhLg==5028 integrity sha512-sldr9stK/SALSJTgI/8qpnDuBJNMGjVR84hJ+AcdQ+MLBGLMGsCDNubCoyO6qgk1/Y9SQ7ignegOI/7BPLoiDA==5017 dependencies:5029 dependencies:5018 web3-bzz "1.7.5"5030 web3-bzz "1.8.0"5019 web3-core "1.7.5"5031 web3-core "1.8.0"5020 web3-eth "1.7.5"5032 web3-eth "1.8.0"5021 web3-eth-personal "1.7.5"5033 web3-eth-personal "1.8.0"5022 web3-net "1.7.5"5034 web3-net "1.8.0"5023 web3-shh "1.7.5"5035 web3-shh "1.8.0"5024 web3-utils "1.7.5"5036 web3-utils "1.8.0"502550375026webidl-conversions@^3.0.0:5038webidl-conversions@^3.0.0:5027 version "3.0.1"5039 version "3.0.1"5116 safe-buffer "~5.1.0"5128 safe-buffer "~5.1.0"5117 ultron "~1.1.0"5129 ultron "~1.1.0"511851305131ws@^8.8.1:5132 version "8.9.0"5133 resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e"5134 integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==51355119xhr-request-promise@^0.1.2:5136xhr-request-promise@^0.1.2:5120 version "0.1.3"5137 version "0.1.3"5121 resolved "https://registry.yarnpkg.com/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c"5138 resolved "https://registry.yarnpkg.com/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c"5209 y18n "^5.0.5"5226 y18n "^5.0.5"5210 yargs-parser "^20.2.2"5227 yargs-parser "^20.2.2"521152285212yargs@^17.5.1:5229yargs@^17.6.0:5213 version "17.5.1"5230 version "17.6.0"5214 resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e"5231 resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c"5215 integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==5232 integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==5216 dependencies:5233 dependencies:5217 cliui "^7.0.2"5234 cliui "^8.0.1"5218 escalade "^3.1.1"5235 escalade "^3.1.1"5219 get-caller-file "^2.0.5"5236 get-caller-file "^2.0.5"5220 require-directory "^2.1.1"5237 require-directory "^2.1.1"