git.delta.rocks / unique-network / refs/commits / 554134b0f679

difftreelog

Fix after rebase

Trubnikov Sergey2022-05-12parent: #fe6b71b.patch.diff
in: master

15 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -989,9 +989,9 @@
 
 [[package]]
 name = "camino"
-version = "1.0.9"
+version = "1.0.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "869119e97797867fd90f5e22af7d0bd274bd4635ebb9eb68c04f3f513ae6c412"
+checksum = "07fd178c5af4d59e83498ef15cf3f154e1a6f9d091270cb86283c65ef44e9ef0"
 dependencies = [
  "serde",
 ]
@@ -6099,6 +6099,29 @@
 ]
 
 [[package]]
+name = "pallet-evm-collection"
+version = "0.1.0"
+dependencies = [
+ "ethereum",
+ "evm-coder",
+ "fp-evm-mapping",
+ "frame-support",
+ "frame-system",
+ "log",
+ "pallet-common",
+ "pallet-evm",
+ "pallet-evm-coder-substrate",
+ "pallet-nonfungible",
+ "parity-scale-codec",
+ "scale-info",
+ "serde_json",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
+ "up-data-structs",
+]
+
+[[package]]
 name = "pallet-evm-contract-helpers"
 version = "0.1.0"
 dependencies = [
modifiedpallets/evm-collection/src/stubs/Collection.rawdiffbeforeafterboth

binary blob — no preview

modifiedpallets/evm-collection/src/stubs/Collection.soldiffbeforeafterboth
--- a/pallets/evm-collection/src/stubs/Collection.sol
+++ b/pallets/evm-collection/src/stubs/Collection.sol
@@ -56,13 +56,13 @@
 	}
 
 	// Selector: setOffchainSchema(address,string) 2c9d9d70
-	function setOffchainSchema(address collectionAddress, string memory shema)
+	function setOffchainSchema(address collectionAddress, string memory schema)
 		public
 		view
 	{
 		require(false, stub_error);
 		collectionAddress;
-		shema;
+		schema;
 		dummy;
 	}
 
modifiedpallets/evm-contract-helpers/Cargo.tomldiffbeforeafterboth
--- a/pallets/evm-contract-helpers/Cargo.toml
+++ b/pallets/evm-contract-helpers/Cargo.toml
@@ -28,7 +28,7 @@
 pallet-common = { default-features = false, path = '../../pallets/common' }
 pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }
 pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }
-up-data-structs = { default-features = false, path = '../../primitives/data-structs' }
+up-data-structs = { default-features = false, path = '../../primitives/data-structs', features = ['serde1'] }
 
 [dependencies.codec]
 default-features = false
modifiedprimitives/rpc/src/lib.rsdiffbeforeafterboth
--- a/primitives/rpc/src/lib.rs
+++ b/primitives/rpc/src/lib.rs
@@ -23,6 +23,7 @@
 use sp_std::vec::Vec;
 use codec::Decode;
 use sp_runtime::DispatchError;
+use sp_core::H160;
 
 type Result<T> = core::result::Result<T, DispatchError>;
 
@@ -71,6 +72,7 @@
 			token: TokenId,
 		) -> Result<u128>;
 
+		fn eth_contract_code(account: H160) -> Option<Vec<u8>>;
 		fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>>;
 		fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>>;
 		fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool>;
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -79,7 +79,7 @@
 };
 use smallvec::smallvec;
 use codec::{Encode, Decode};
-use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping};
+use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, OnMethodCall};
 use fp_rpc::TransactionStatus;
 use sp_runtime::{
 	traits::{BlockNumberProvider, Dispatchable, PostDispatchInfoOf, Saturating},
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- a/runtime/unique/src/lib.rs
+++ b/runtime/unique/src/lib.rs
@@ -84,7 +84,7 @@
 };
 use smallvec::smallvec;
 use codec::{Encode, Decode};
-use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping};
+use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, OnMethodCall};
 use fp_rpc::TransactionStatus;
 use sp_runtime::{
 	traits::{BlockNumberProvider, Dispatchable, PostDispatchInfoOf, Saturating},
modifiedtests/src/eth/api/Collection.soldiffbeforeafterboth
--- a/tests/src/eth/api/Collection.sol
+++ b/tests/src/eth/api/Collection.sol
@@ -30,7 +30,7 @@
 	function confirmSponsorship(address collectionAddress) external view;
 
 	// Selector: setOffchainSchema(address,string) 2c9d9d70
-	function setOffchainSchema(address collectionAddress, string memory shema)
+	function setOffchainSchema(address collectionAddress, string memory schema)
 		external
 		view;
 
modifiedtests/src/eth/collectionAbi.jsondiffbeforeafterboth
--- a/tests/src/eth/collectionAbi.json
+++ b/tests/src/eth/collectionAbi.json
@@ -58,7 +58,7 @@
         "name": "collectionAddress",
         "type": "address"
       },
-      { "internalType": "string", "name": "shema", "type": "string" }
+      { "internalType": "string", "name": "schema", "type": "string" }
     ],
     "name": "setOffchainSchema",
     "outputs": [],
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -249,6 +249,16 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    evmCollection: {
+      /**
+       * This method is only executable by owner
+       **/
+      NoPermission: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     evmContractHelpers: {
       /**
        * This method is only executable by owner
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -13,7 +13,6 @@
 import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
 import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
 import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
-import type { BlockStats } from '@polkadot/types/interfaces/dev';
 import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
 import type { EthAccount, EthCallRequest, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
 import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
@@ -22,8 +21,8 @@
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
 import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
-import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
-import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
+import type { AccountId, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
+import type { ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
 import type { ApplyExtrinsicResult, ChainProperties, ChainType, Health, NetworkState, NodeRole, PeerInfo, SyncState } from '@polkadot/types/interfaces/system';
 import type { IExtrinsic, Observable } from '@polkadot/types/types';
 
@@ -156,12 +155,6 @@
        * Upload new code without instantiating a contract from it
        **/
       uploadCode: AugmentedRpc<(uploadRequest: CodeUploadRequest | { origin?: any; code?: any; storageDepositLimit?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<CodeUploadResult>>;
-    };
-    dev: {
-      /**
-       * Reexecute the specified `block_hash` and gather statistics while doing so
-       **/
-      getBlockStats: AugmentedRpc<(at: Hash | string | Uint8Array) => Observable<Option<BlockStats>>>;
     };
     engine: {
       /**
@@ -338,20 +331,6 @@
        * Uninstalls filter.
        **/
       uninstallFilter: AugmentedRpc<(index: U256 | AnyNumber | Uint8Array) => Observable<bool>>;
-    };
-    grandpa: {
-      /**
-       * Prove finality for the given block number, returning the Justification for the last block in the set.
-       **/
-      proveFinality: AugmentedRpc<(blockNumber: BlockNumber | AnyNumber | Uint8Array) => Observable<Option<EncodedFinalityProofs>>>;
-      /**
-       * Returns the state of the current best round state as well as the ongoing background rounds
-       **/
-      roundState: AugmentedRpc<() => Observable<ReportedRoundStates>>;
-      /**
-       * Subscribes to grandpa justifications
-       **/
-      subscribeJustifications: AugmentedRpc<() => Observable<JustificationNotification>>;
     };
     mmr: {
       /**
@@ -452,92 +431,6 @@
        * Retrieves the list of RPC methods that are exposed by the node
        **/
       methods: AugmentedRpc<() => Observable<RpcMethods>>;
-    };
-    state: {
-      /**
-       * Perform a call to a builtin on the chain
-       **/
-      call: AugmentedRpc<(method: Text | string, data: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Bytes>>;
-      /**
-       * Retrieves the keys with prefix of a specific child storage
-       **/
-      getChildKeys: 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<Vec<StorageKey>>>;
-      /**
-       * Returns proof of storage for child key entries at a specific block state.
-       **/
-      getChildReadProof: AugmentedRpc<(childStorageKey: PrefixedStorageKey | string | Uint8Array, keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], at?: BlockHash | string | Uint8Array) => Observable<ReadProof>>;
-      /**
-       * Retrieves the child storage for a key
-       **/
-      getChildStorage: 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<StorageData>>;
-      /**
-       * Retrieves the child storage hash
-       **/
-      getChildStorageHash: 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<Hash>>;
-      /**
-       * Retrieves the child storage size
-       **/
-      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>>;
-      /**
-       * Retrieves the keys with a certain prefix
-       **/
-      getKeys: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;
-      /**
-       * Returns the keys with prefix with pagination support.
-       **/
-      getKeysPaged: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, count: u32 | AnyNumber | Uint8Array, startKey?: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;
-      /**
-       * Returns the runtime metadata
-       **/
-      getMetadata: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<Metadata>>;
-      /**
-       * Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)
-       **/
-      getPairs: AugmentedRpc<(prefix: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<KeyValue>>>;
-      /**
-       * Returns proof of storage entries at a specific block state
-       **/
-      getReadProof: AugmentedRpc<(keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], at?: BlockHash | string | Uint8Array) => Observable<ReadProof>>;
-      /**
-       * Get the runtime version
-       **/
-      getRuntimeVersion: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<RuntimeVersion>>;
-      /**
-       * Retrieves the storage for a key
-       **/
-      getStorage: AugmentedRpc<<T = Codec>(key: StorageKey | string | Uint8Array | any, block?: Hash | Uint8Array | string) => Observable<T>>;
-      /**
-       * Retrieves the storage hash
-       **/
-      getStorageHash: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Hash>>;
-      /**
-       * Retrieves the storage size
-       **/
-      getStorageSize: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<u64>>;
-      /**
-       * Query historical storage entries (by key) starting from a start block
-       **/
-      queryStorage: AugmentedRpc<<T = Codec[]>(keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], fromBlock?: Hash | Uint8Array | string, toBlock?: Hash | Uint8Array | string) => Observable<[Hash, T][]>>;
-      /**
-       * Query storage entries (by key) starting at block hash given as the second parameter
-       **/
-      queryStorageAt: AugmentedRpc<<T = Codec[]>(keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], at?: Hash | Uint8Array | string) => Observable<T>>;
-      /**
-       * Retrieves the runtime version via subscription
-       **/
-      subscribeRuntimeVersion: AugmentedRpc<() => Observable<RuntimeVersion>>;
-      /**
-       * Subscribes to storage changes for the provided keys
-       **/
-      subscribeStorage: AugmentedRpc<<T = Codec[]>(keys?: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[]) => Observable<T>>;
-      /**
-       * Provides a way to trace the re-execution of a single block
-       **/
-      traceBlock: AugmentedRpc<(block: Hash | string | Uint8Array, targets: Option<Text> | null | object | string | Uint8Array, storageKeys: Option<Text> | null | object | string | Uint8Array, methods: Option<Text> | null | object | string | Uint8Array) => Observable<TraceBlockResponse>>;
-      /**
-       * Check current migration state
-       **/
-      trieMigrationStatus: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MigrationStatusResult>>;
     };
     syncstate: {
       /**
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
after · tests/src/interfaces/augment-types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';5import type { Data, StorageKey } from '@polkadot/types';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';8import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';9import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';10import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';11import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';12import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeWeight, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';13import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';14import type { BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefySignedCommitment, MmrRootHash, ValidatorSetId } from '@polkadot/types/interfaces/beefy';15import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';16import type { BlockHash } from '@polkadot/types/interfaces/chain';17import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';18import type { StatementKind } from '@polkadot/types/interfaces/claims';19import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';20import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';21import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, 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';22import 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';23import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';24import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';25import 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';26import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';27import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';28import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';29import type { EvmAccount, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';30import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';31import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';32import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';33import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';34import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';35import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';36import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';37import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';38import type { MmrLeafProof } from '@polkadot/types/interfaces/mmr';39import type { StorageKind } from '@polkadot/types/interfaces/offchain';40import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';41import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, Scheduling, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';42import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';43import type { Approvals } from '@polkadot/types/interfaces/poll';44import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';45import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';46import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';47import type { RpcMethods } from '@polkadot/types/interfaces/rpc';48import 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, StorageData, StorageProof, TransactionInfo, TransactionPriority, TransactionStorageProof, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';49import 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';50import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';51import 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';52import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';53import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';54import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';55import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';56import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';57import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';58import type { Multiplier } from '@polkadot/types/interfaces/txpayment';59import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';60import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';61import type { VestingInfo } from '@polkadot/types/interfaces/vesting';62import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';6364declare module '@polkadot/types/types/registry' {65  export interface InterfaceTypes {66    AbridgedCandidateReceipt: AbridgedCandidateReceipt;67    AbridgedHostConfiguration: AbridgedHostConfiguration;68    AbridgedHrmpChannel: AbridgedHrmpChannel;69    AccountData: AccountData;70    AccountId: AccountId;71    AccountId20: AccountId20;72    AccountId32: AccountId32;73    AccountIdOf: AccountIdOf;74    AccountIndex: AccountIndex;75    AccountInfo: AccountInfo;76    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;77    AccountInfoWithProviders: AccountInfoWithProviders;78    AccountInfoWithRefCount: AccountInfoWithRefCount;79    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;80    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;81    AccountStatus: AccountStatus;82    AccountValidity: AccountValidity;83    AccountVote: AccountVote;84    AccountVoteSplit: AccountVoteSplit;85    AccountVoteStandard: AccountVoteStandard;86    ActiveEraInfo: ActiveEraInfo;87    ActiveGilt: ActiveGilt;88    ActiveGiltsTotal: ActiveGiltsTotal;89    ActiveIndex: ActiveIndex;90    ActiveRecovery: ActiveRecovery;91    Address: Address;92    AliveContractInfo: AliveContractInfo;93    AllowedSlots: AllowedSlots;94    AnySignature: AnySignature;95    ApiId: ApiId;96    ApplyExtrinsicResult: ApplyExtrinsicResult;97    ApprovalFlag: ApprovalFlag;98    Approvals: Approvals;99    ArithmeticError: ArithmeticError;100    AssetApproval: AssetApproval;101    AssetApprovalKey: AssetApprovalKey;102    AssetBalance: AssetBalance;103    AssetDestroyWitness: AssetDestroyWitness;104    AssetDetails: AssetDetails;105    AssetId: AssetId;106    AssetInstance: AssetInstance;107    AssetInstanceV0: AssetInstanceV0;108    AssetInstanceV1: AssetInstanceV1;109    AssetInstanceV2: AssetInstanceV2;110    AssetMetadata: AssetMetadata;111    AssetOptions: AssetOptions;112    AssignmentId: AssignmentId;113    AssignmentKind: AssignmentKind;114    AttestedCandidate: AttestedCandidate;115    AuctionIndex: AuctionIndex;116    AuthIndex: AuthIndex;117    AuthorityDiscoveryId: AuthorityDiscoveryId;118    AuthorityId: AuthorityId;119    AuthorityIndex: AuthorityIndex;120    AuthorityList: AuthorityList;121    AuthoritySet: AuthoritySet;122    AuthoritySetChange: AuthoritySetChange;123    AuthoritySetChanges: AuthoritySetChanges;124    AuthoritySignature: AuthoritySignature;125    AuthorityWeight: AuthorityWeight;126    AvailabilityBitfield: AvailabilityBitfield;127    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;128    BabeAuthorityWeight: BabeAuthorityWeight;129    BabeBlockWeight: BabeBlockWeight;130    BabeEpochConfiguration: BabeEpochConfiguration;131    BabeEquivocationProof: BabeEquivocationProof;132    BabeWeight: BabeWeight;133    BackedCandidate: BackedCandidate;134    Balance: Balance;135    BalanceLock: BalanceLock;136    BalanceLockTo212: BalanceLockTo212;137    BalanceOf: BalanceOf;138    BalanceStatus: BalanceStatus;139    BeefyCommitment: BeefyCommitment;140    BeefyId: BeefyId;141    BeefyKey: BeefyKey;142    BeefyNextAuthoritySet: BeefyNextAuthoritySet;143    BeefyPayload: BeefyPayload;144    BeefySignedCommitment: BeefySignedCommitment;145    Bid: Bid;146    Bidder: Bidder;147    BidKind: BidKind;148    BitVec: BitVec;149    Block: Block;150    BlockAttestations: BlockAttestations;151    BlockHash: BlockHash;152    BlockLength: BlockLength;153    BlockNumber: BlockNumber;154    BlockNumberFor: BlockNumberFor;155    BlockNumberOf: BlockNumberOf;156    BlockTrace: BlockTrace;157    BlockTraceEvent: BlockTraceEvent;158    BlockTraceEventData: BlockTraceEventData;159    BlockTraceSpan: BlockTraceSpan;160    BlockV0: BlockV0;161    BlockV1: BlockV1;162    BlockV2: BlockV2;163    BlockWeights: BlockWeights;164    BodyId: BodyId;165    BodyPart: BodyPart;166    bool: bool;167    Bool: Bool;168    Bounty: Bounty;169    BountyIndex: BountyIndex;170    BountyStatus: BountyStatus;171    BountyStatusActive: BountyStatusActive;172    BountyStatusCuratorProposed: BountyStatusCuratorProposed;173    BountyStatusPendingPayout: BountyStatusPendingPayout;174    BridgedBlockHash: BridgedBlockHash;175    BridgedBlockNumber: BridgedBlockNumber;176    BridgedHeader: BridgedHeader;177    BridgeMessageId: BridgeMessageId;178    BufferedSessionChange: BufferedSessionChange;179    Bytes: Bytes;180    Call: Call;181    CallHash: CallHash;182    CallHashOf: CallHashOf;183    CallIndex: CallIndex;184    CallOrigin: CallOrigin;185    CandidateCommitments: CandidateCommitments;186    CandidateDescriptor: CandidateDescriptor;187    CandidateHash: CandidateHash;188    CandidateInfo: CandidateInfo;189    CandidatePendingAvailability: CandidatePendingAvailability;190    CandidateReceipt: CandidateReceipt;191    ChainId: ChainId;192    ChainProperties: ChainProperties;193    ChainType: ChainType;194    ChangesTrieConfiguration: ChangesTrieConfiguration;195    ChangesTrieSignal: ChangesTrieSignal;196    ClassDetails: ClassDetails;197    ClassId: ClassId;198    ClassMetadata: ClassMetadata;199    CodecHash: CodecHash;200    CodeHash: CodeHash;201    CodeSource: CodeSource;202    CodeUploadRequest: CodeUploadRequest;203    CodeUploadResult: CodeUploadResult;204    CodeUploadResultValue: CodeUploadResultValue;205    CollatorId: CollatorId;206    CollatorSignature: CollatorSignature;207    CollectiveOrigin: CollectiveOrigin;208    CommittedCandidateReceipt: CommittedCandidateReceipt;209    CompactAssignments: CompactAssignments;210    CompactAssignmentsTo257: CompactAssignmentsTo257;211    CompactAssignmentsTo265: CompactAssignmentsTo265;212    CompactAssignmentsWith16: CompactAssignmentsWith16;213    CompactAssignmentsWith24: CompactAssignmentsWith24;214    CompactScore: CompactScore;215    CompactScoreCompact: CompactScoreCompact;216    ConfigData: ConfigData;217    Consensus: Consensus;218    ConsensusEngineId: ConsensusEngineId;219    ConsumedWeight: ConsumedWeight;220    ContractCallFlags: ContractCallFlags;221    ContractCallRequest: ContractCallRequest;222    ContractConstructorSpecLatest: ContractConstructorSpecLatest;223    ContractConstructorSpecV0: ContractConstructorSpecV0;224    ContractConstructorSpecV1: ContractConstructorSpecV1;225    ContractConstructorSpecV2: ContractConstructorSpecV2;226    ContractConstructorSpecV3: ContractConstructorSpecV3;227    ContractContractSpecV0: ContractContractSpecV0;228    ContractContractSpecV1: ContractContractSpecV1;229    ContractContractSpecV2: ContractContractSpecV2;230    ContractContractSpecV3: ContractContractSpecV3;231    ContractCryptoHasher: ContractCryptoHasher;232    ContractDiscriminant: ContractDiscriminant;233    ContractDisplayName: ContractDisplayName;234    ContractEventParamSpecLatest: ContractEventParamSpecLatest;235    ContractEventParamSpecV0: ContractEventParamSpecV0;236    ContractEventParamSpecV2: ContractEventParamSpecV2;237    ContractEventSpecLatest: ContractEventSpecLatest;238    ContractEventSpecV0: ContractEventSpecV0;239    ContractEventSpecV1: ContractEventSpecV1;240    ContractEventSpecV2: ContractEventSpecV2;241    ContractExecResult: ContractExecResult;242    ContractExecResultErr: ContractExecResultErr;243    ContractExecResultErrModule: ContractExecResultErrModule;244    ContractExecResultOk: ContractExecResultOk;245    ContractExecResultResult: ContractExecResultResult;246    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;247    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;248    ContractExecResultTo255: ContractExecResultTo255;249    ContractExecResultTo260: ContractExecResultTo260;250    ContractExecResultTo267: ContractExecResultTo267;251    ContractInfo: ContractInfo;252    ContractInstantiateResult: ContractInstantiateResult;253    ContractInstantiateResultTo267: ContractInstantiateResultTo267;254    ContractInstantiateResultTo299: ContractInstantiateResultTo299;255    ContractLayoutArray: ContractLayoutArray;256    ContractLayoutCell: ContractLayoutCell;257    ContractLayoutEnum: ContractLayoutEnum;258    ContractLayoutHash: ContractLayoutHash;259    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;260    ContractLayoutKey: ContractLayoutKey;261    ContractLayoutStruct: ContractLayoutStruct;262    ContractLayoutStructField: ContractLayoutStructField;263    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;264    ContractMessageParamSpecV0: ContractMessageParamSpecV0;265    ContractMessageParamSpecV2: ContractMessageParamSpecV2;266    ContractMessageSpecLatest: ContractMessageSpecLatest;267    ContractMessageSpecV0: ContractMessageSpecV0;268    ContractMessageSpecV1: ContractMessageSpecV1;269    ContractMessageSpecV2: ContractMessageSpecV2;270    ContractMetadata: ContractMetadata;271    ContractMetadataLatest: ContractMetadataLatest;272    ContractMetadataV0: ContractMetadataV0;273    ContractMetadataV1: ContractMetadataV1;274    ContractMetadataV2: ContractMetadataV2;275    ContractMetadataV3: ContractMetadataV3;276    ContractProject: ContractProject;277    ContractProjectContract: ContractProjectContract;278    ContractProjectInfo: ContractProjectInfo;279    ContractProjectSource: ContractProjectSource;280    ContractProjectV0: ContractProjectV0;281    ContractReturnFlags: ContractReturnFlags;282    ContractSelector: ContractSelector;283    ContractStorageKey: ContractStorageKey;284    ContractStorageLayout: ContractStorageLayout;285    ContractTypeSpec: ContractTypeSpec;286    Conviction: Conviction;287    CoreAssignment: CoreAssignment;288    CoreIndex: CoreIndex;289    CoreOccupied: CoreOccupied;290    CrateVersion: CrateVersion;291    CreatedBlock: CreatedBlock;292    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;293    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;294    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;295    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;296    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;297    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;298    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;299    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;300    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;301    CumulusPalletXcmCall: CumulusPalletXcmCall;302    CumulusPalletXcmError: CumulusPalletXcmError;303    CumulusPalletXcmEvent: CumulusPalletXcmEvent;304    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;305    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;306    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;307    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;308    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;309    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;310    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;311    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;312    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;313    Data: Data;314    DeferredOffenceOf: DeferredOffenceOf;315    DefunctVoter: DefunctVoter;316    DelayKind: DelayKind;317    DelayKindBest: DelayKindBest;318    Delegations: Delegations;319    DeletedContract: DeletedContract;320    DeliveredMessages: DeliveredMessages;321    DepositBalance: DepositBalance;322    DepositBalanceOf: DepositBalanceOf;323    DestroyWitness: DestroyWitness;324    Digest: Digest;325    DigestItem: DigestItem;326    DigestOf: DigestOf;327    DispatchClass: DispatchClass;328    DispatchError: DispatchError;329    DispatchErrorModule: DispatchErrorModule;330    DispatchErrorTo198: DispatchErrorTo198;331    DispatchFeePayment: DispatchFeePayment;332    DispatchInfo: DispatchInfo;333    DispatchInfoTo190: DispatchInfoTo190;334    DispatchInfoTo244: DispatchInfoTo244;335    DispatchOutcome: DispatchOutcome;336    DispatchResult: DispatchResult;337    DispatchResultOf: DispatchResultOf;338    DispatchResultTo198: DispatchResultTo198;339    DisputeLocation: DisputeLocation;340    DisputeResult: DisputeResult;341    DisputeState: DisputeState;342    DisputeStatement: DisputeStatement;343    DisputeStatementSet: DisputeStatementSet;344    DoubleEncodedCall: DoubleEncodedCall;345    DoubleVoteReport: DoubleVoteReport;346    DownwardMessage: DownwardMessage;347    EcdsaSignature: EcdsaSignature;348    Ed25519Signature: Ed25519Signature;349    EIP1559Transaction: EIP1559Transaction;350    EIP2930Transaction: EIP2930Transaction;351    ElectionCompute: ElectionCompute;352    ElectionPhase: ElectionPhase;353    ElectionResult: ElectionResult;354    ElectionScore: ElectionScore;355    ElectionSize: ElectionSize;356    ElectionStatus: ElectionStatus;357    EncodedFinalityProofs: EncodedFinalityProofs;358    EncodedJustification: EncodedJustification;359    EpochAuthorship: EpochAuthorship;360    Era: Era;361    EraIndex: EraIndex;362    EraPoints: EraPoints;363    EraRewardPoints: EraRewardPoints;364    EraRewards: EraRewards;365    ErrorMetadataLatest: ErrorMetadataLatest;366    ErrorMetadataV10: ErrorMetadataV10;367    ErrorMetadataV11: ErrorMetadataV11;368    ErrorMetadataV12: ErrorMetadataV12;369    ErrorMetadataV13: ErrorMetadataV13;370    ErrorMetadataV14: ErrorMetadataV14;371    ErrorMetadataV9: ErrorMetadataV9;372    EthAccessList: EthAccessList;373    EthAccessListItem: EthAccessListItem;374    EthAccount: EthAccount;375    EthAddress: EthAddress;376    EthBlock: EthBlock;377    EthBloom: EthBloom;378    EthbloomBloom: EthbloomBloom;379    EthCallRequest: EthCallRequest;380    EthereumAccountId: EthereumAccountId;381    EthereumAddress: EthereumAddress;382    EthereumBlock: EthereumBlock;383    EthereumHeader: EthereumHeader;384    EthereumLog: EthereumLog;385    EthereumLookupSource: EthereumLookupSource;386    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;387    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;388    EthereumSignature: EthereumSignature;389    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;390    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;391    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;392    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;393    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;394    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;395    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;396    EthereumTypesHashH64: EthereumTypesHashH64;397    EthFilter: EthFilter;398    EthFilterAddress: EthFilterAddress;399    EthFilterChanges: EthFilterChanges;400    EthFilterTopic: EthFilterTopic;401    EthFilterTopicEntry: EthFilterTopicEntry;402    EthFilterTopicInner: EthFilterTopicInner;403    EthHeader: EthHeader;404    EthLog: EthLog;405    EthReceipt: EthReceipt;406    EthRichBlock: EthRichBlock;407    EthRichHeader: EthRichHeader;408    EthStorageProof: EthStorageProof;409    EthSubKind: EthSubKind;410    EthSubParams: EthSubParams;411    EthSubResult: EthSubResult;412    EthSyncInfo: EthSyncInfo;413    EthSyncStatus: EthSyncStatus;414    EthTransaction: EthTransaction;415    EthTransactionAction: EthTransactionAction;416    EthTransactionCondition: EthTransactionCondition;417    EthTransactionRequest: EthTransactionRequest;418    EthTransactionSignature: EthTransactionSignature;419    EthTransactionStatus: EthTransactionStatus;420    EthWork: EthWork;421    Event: Event;422    EventId: EventId;423    EventIndex: EventIndex;424    EventMetadataLatest: EventMetadataLatest;425    EventMetadataV10: EventMetadataV10;426    EventMetadataV11: EventMetadataV11;427    EventMetadataV12: EventMetadataV12;428    EventMetadataV13: EventMetadataV13;429    EventMetadataV14: EventMetadataV14;430    EventMetadataV9: EventMetadataV9;431    EventRecord: EventRecord;432    EvmAccount: EvmAccount;433    EvmCoreErrorExitError: EvmCoreErrorExitError;434    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;435    EvmCoreErrorExitReason: EvmCoreErrorExitReason;436    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;437    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;438    EvmLog: EvmLog;439    EvmVicinity: EvmVicinity;440    ExecReturnValue: ExecReturnValue;441    ExitError: ExitError;442    ExitFatal: ExitFatal;443    ExitReason: ExitReason;444    ExitRevert: ExitRevert;445    ExitSucceed: ExitSucceed;446    ExplicitDisputeStatement: ExplicitDisputeStatement;447    Exposure: Exposure;448    ExtendedBalance: ExtendedBalance;449    Extrinsic: Extrinsic;450    ExtrinsicEra: ExtrinsicEra;451    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;452    ExtrinsicMetadataV11: ExtrinsicMetadataV11;453    ExtrinsicMetadataV12: ExtrinsicMetadataV12;454    ExtrinsicMetadataV13: ExtrinsicMetadataV13;455    ExtrinsicMetadataV14: ExtrinsicMetadataV14;456    ExtrinsicOrHash: ExtrinsicOrHash;457    ExtrinsicPayload: ExtrinsicPayload;458    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;459    ExtrinsicPayloadV4: ExtrinsicPayloadV4;460    ExtrinsicSignature: ExtrinsicSignature;461    ExtrinsicSignatureV4: ExtrinsicSignatureV4;462    ExtrinsicStatus: ExtrinsicStatus;463    ExtrinsicsWeight: ExtrinsicsWeight;464    ExtrinsicUnknown: ExtrinsicUnknown;465    ExtrinsicV4: ExtrinsicV4;466    FeeDetails: FeeDetails;467    Fixed128: Fixed128;468    Fixed64: Fixed64;469    FixedI128: FixedI128;470    FixedI64: FixedI64;471    FixedU128: FixedU128;472    FixedU64: FixedU64;473    Forcing: Forcing;474    ForkTreePendingChange: ForkTreePendingChange;475    ForkTreePendingChangeNode: ForkTreePendingChangeNode;476    FpRpcTransactionStatus: FpRpcTransactionStatus;477    FrameSupportPalletId: FrameSupportPalletId;478    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;479    FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;480    FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;481    FrameSupportWeightsPays: FrameSupportWeightsPays;482    FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;483    FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;484    FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;485    FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;486    FrameSupportWeightsWeightToFeeCoefficient: FrameSupportWeightsWeightToFeeCoefficient;487    FrameSystemAccountInfo: FrameSystemAccountInfo;488    FrameSystemCall: FrameSystemCall;489    FrameSystemError: FrameSystemError;490    FrameSystemEvent: FrameSystemEvent;491    FrameSystemEventRecord: FrameSystemEventRecord;492    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;493    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;494    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;495    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;496    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;497    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;498    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;499    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;500    FrameSystemPhase: FrameSystemPhase;501    FullIdentification: FullIdentification;502    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;503    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;504    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;505    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;506    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;507    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;508    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;509    FunctionMetadataLatest: FunctionMetadataLatest;510    FunctionMetadataV10: FunctionMetadataV10;511    FunctionMetadataV11: FunctionMetadataV11;512    FunctionMetadataV12: FunctionMetadataV12;513    FunctionMetadataV13: FunctionMetadataV13;514    FunctionMetadataV14: FunctionMetadataV14;515    FunctionMetadataV9: FunctionMetadataV9;516    FundIndex: FundIndex;517    FundInfo: FundInfo;518    Fungibility: Fungibility;519    FungibilityV0: FungibilityV0;520    FungibilityV1: FungibilityV1;521    FungibilityV2: FungibilityV2;522    Gas: Gas;523    GiltBid: GiltBid;524    GlobalValidationData: GlobalValidationData;525    GlobalValidationSchedule: GlobalValidationSchedule;526    GrandpaCommit: GrandpaCommit;527    GrandpaEquivocation: GrandpaEquivocation;528    GrandpaEquivocationProof: GrandpaEquivocationProof;529    GrandpaEquivocationValue: GrandpaEquivocationValue;530    GrandpaJustification: GrandpaJustification;531    GrandpaPrecommit: GrandpaPrecommit;532    GrandpaPrevote: GrandpaPrevote;533    GrandpaSignedPrecommit: GrandpaSignedPrecommit;534    GroupIndex: GroupIndex;535    H1024: H1024;536    H128: H128;537    H160: H160;538    H2048: H2048;539    H256: H256;540    H32: H32;541    H512: H512;542    H64: H64;543    Hash: Hash;544    HeadData: HeadData;545    Header: Header;546    HeaderPartial: HeaderPartial;547    Health: Health;548    Heartbeat: Heartbeat;549    HeartbeatTo244: HeartbeatTo244;550    HostConfiguration: HostConfiguration;551    HostFnWeights: HostFnWeights;552    HostFnWeightsTo264: HostFnWeightsTo264;553    HrmpChannel: HrmpChannel;554    HrmpChannelId: HrmpChannelId;555    HrmpOpenChannelRequest: HrmpOpenChannelRequest;556    i128: i128;557    I128: I128;558    i16: i16;559    I16: I16;560    i256: i256;561    I256: I256;562    i32: i32;563    I32: I32;564    I32F32: I32F32;565    i64: i64;566    I64: I64;567    i8: i8;568    I8: I8;569    IdentificationTuple: IdentificationTuple;570    IdentityFields: IdentityFields;571    IdentityInfo: IdentityInfo;572    IdentityInfoAdditional: IdentityInfoAdditional;573    IdentityInfoTo198: IdentityInfoTo198;574    IdentityJudgement: IdentityJudgement;575    ImmortalEra: ImmortalEra;576    ImportedAux: ImportedAux;577    InboundDownwardMessage: InboundDownwardMessage;578    InboundHrmpMessage: InboundHrmpMessage;579    InboundHrmpMessages: InboundHrmpMessages;580    InboundLaneData: InboundLaneData;581    InboundRelayer: InboundRelayer;582    InboundStatus: InboundStatus;583    IncludedBlocks: IncludedBlocks;584    InclusionFee: InclusionFee;585    IncomingParachain: IncomingParachain;586    IncomingParachainDeploy: IncomingParachainDeploy;587    IncomingParachainFixed: IncomingParachainFixed;588    Index: Index;589    IndicesLookupSource: IndicesLookupSource;590    IndividualExposure: IndividualExposure;591    InitializationData: InitializationData;592    InstanceDetails: InstanceDetails;593    InstanceId: InstanceId;594    InstanceMetadata: InstanceMetadata;595    InstantiateRequest: InstantiateRequest;596    InstantiateRequestV1: InstantiateRequestV1;597    InstantiateRequestV2: InstantiateRequestV2;598    InstantiateReturnValue: InstantiateReturnValue;599    InstantiateReturnValueOk: InstantiateReturnValueOk;600    InstantiateReturnValueTo267: InstantiateReturnValueTo267;601    InstructionV2: InstructionV2;602    InstructionWeights: InstructionWeights;603    InteriorMultiLocation: InteriorMultiLocation;604    InvalidDisputeStatementKind: InvalidDisputeStatementKind;605    InvalidTransaction: InvalidTransaction;606    Json: Json;607    Junction: Junction;608    Junctions: Junctions;609    JunctionsV1: JunctionsV1;610    JunctionsV2: JunctionsV2;611    JunctionV0: JunctionV0;612    JunctionV1: JunctionV1;613    JunctionV2: JunctionV2;614    Justification: Justification;615    JustificationNotification: JustificationNotification;616    Justifications: Justifications;617    Key: Key;618    KeyOwnerProof: KeyOwnerProof;619    Keys: Keys;620    KeyType: KeyType;621    KeyTypeId: KeyTypeId;622    KeyValue: KeyValue;623    KeyValueOption: KeyValueOption;624    Kind: Kind;625    LaneId: LaneId;626    LastContribution: LastContribution;627    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;628    LeasePeriod: LeasePeriod;629    LeasePeriodOf: LeasePeriodOf;630    LegacyTransaction: LegacyTransaction;631    Limits: Limits;632    LimitsTo264: LimitsTo264;633    LocalValidationData: LocalValidationData;634    LockIdentifier: LockIdentifier;635    LookupSource: LookupSource;636    LookupTarget: LookupTarget;637    LotteryConfig: LotteryConfig;638    MaybeRandomness: MaybeRandomness;639    MaybeVrf: MaybeVrf;640    MemberCount: MemberCount;641    MembershipProof: MembershipProof;642    MessageData: MessageData;643    MessageId: MessageId;644    MessageIngestionType: MessageIngestionType;645    MessageKey: MessageKey;646    MessageNonce: MessageNonce;647    MessageQueueChain: MessageQueueChain;648    MessagesDeliveryProofOf: MessagesDeliveryProofOf;649    MessagesProofOf: MessagesProofOf;650    MessagingStateSnapshot: MessagingStateSnapshot;651    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;652    MetadataAll: MetadataAll;653    MetadataLatest: MetadataLatest;654    MetadataV10: MetadataV10;655    MetadataV11: MetadataV11;656    MetadataV12: MetadataV12;657    MetadataV13: MetadataV13;658    MetadataV14: MetadataV14;659    MetadataV9: MetadataV9;660    MmrLeafProof: MmrLeafProof;661    MmrRootHash: MmrRootHash;662    ModuleConstantMetadataV10: ModuleConstantMetadataV10;663    ModuleConstantMetadataV11: ModuleConstantMetadataV11;664    ModuleConstantMetadataV12: ModuleConstantMetadataV12;665    ModuleConstantMetadataV13: ModuleConstantMetadataV13;666    ModuleConstantMetadataV9: ModuleConstantMetadataV9;667    ModuleId: ModuleId;668    ModuleMetadataV10: ModuleMetadataV10;669    ModuleMetadataV11: ModuleMetadataV11;670    ModuleMetadataV12: ModuleMetadataV12;671    ModuleMetadataV13: ModuleMetadataV13;672    ModuleMetadataV9: ModuleMetadataV9;673    Moment: Moment;674    MomentOf: MomentOf;675    MoreAttestations: MoreAttestations;676    MortalEra: MortalEra;677    MultiAddress: MultiAddress;678    MultiAsset: MultiAsset;679    MultiAssetFilter: MultiAssetFilter;680    MultiAssetFilterV1: MultiAssetFilterV1;681    MultiAssetFilterV2: MultiAssetFilterV2;682    MultiAssets: MultiAssets;683    MultiAssetsV1: MultiAssetsV1;684    MultiAssetsV2: MultiAssetsV2;685    MultiAssetV0: MultiAssetV0;686    MultiAssetV1: MultiAssetV1;687    MultiAssetV2: MultiAssetV2;688    MultiDisputeStatementSet: MultiDisputeStatementSet;689    MultiLocation: MultiLocation;690    MultiLocationV0: MultiLocationV0;691    MultiLocationV1: MultiLocationV1;692    MultiLocationV2: MultiLocationV2;693    Multiplier: Multiplier;694    Multisig: Multisig;695    MultiSignature: MultiSignature;696    MultiSigner: MultiSigner;697    NetworkId: NetworkId;698    NetworkState: NetworkState;699    NetworkStatePeerset: NetworkStatePeerset;700    NetworkStatePeersetInfo: NetworkStatePeersetInfo;701    NewBidder: NewBidder;702    NextAuthority: NextAuthority;703    NextConfigDescriptor: NextConfigDescriptor;704    NextConfigDescriptorV1: NextConfigDescriptorV1;705    NodeRole: NodeRole;706    Nominations: Nominations;707    NominatorIndex: NominatorIndex;708    NominatorIndexCompact: NominatorIndexCompact;709    NotConnectedPeer: NotConnectedPeer;710    Null: Null;711    OffchainAccuracy: OffchainAccuracy;712    OffchainAccuracyCompact: OffchainAccuracyCompact;713    OffenceDetails: OffenceDetails;714    Offender: Offender;715    OpalRuntimeRuntime: OpalRuntimeRuntime;716    OpaqueCall: OpaqueCall;717    OpaqueMultiaddr: OpaqueMultiaddr;718    OpaqueNetworkState: OpaqueNetworkState;719    OpaquePeerId: OpaquePeerId;720    OpaqueTimeSlot: OpaqueTimeSlot;721    OpenTip: OpenTip;722    OpenTipFinderTo225: OpenTipFinderTo225;723    OpenTipTip: OpenTipTip;724    OpenTipTo225: OpenTipTo225;725    OperatingMode: OperatingMode;726    Origin: Origin;727    OriginCaller: OriginCaller;728    OriginKindV0: OriginKindV0;729    OriginKindV1: OriginKindV1;730    OriginKindV2: OriginKindV2;731    OrmlVestingModuleCall: OrmlVestingModuleCall;732    OrmlVestingModuleError: OrmlVestingModuleError;733    OrmlVestingModuleEvent: OrmlVestingModuleEvent;734    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;735    OutboundHrmpMessage: OutboundHrmpMessage;736    OutboundLaneData: OutboundLaneData;737    OutboundMessageFee: OutboundMessageFee;738    OutboundPayload: OutboundPayload;739    OutboundStatus: OutboundStatus;740    Outcome: Outcome;741    OverweightIndex: OverweightIndex;742    Owner: Owner;743    PageCounter: PageCounter;744    PageIndexData: PageIndexData;745    PalletBalancesAccountData: PalletBalancesAccountData;746    PalletBalancesBalanceLock: PalletBalancesBalanceLock;747    PalletBalancesCall: PalletBalancesCall;748    PalletBalancesError: PalletBalancesError;749    PalletBalancesEvent: PalletBalancesEvent;750    PalletBalancesReasons: PalletBalancesReasons;751    PalletBalancesReleases: PalletBalancesReleases;752    PalletBalancesReserveData: PalletBalancesReserveData;753    PalletCallMetadataLatest: PalletCallMetadataLatest;754    PalletCallMetadataV14: PalletCallMetadataV14;755    PalletCommonError: PalletCommonError;756    PalletCommonEvent: PalletCommonEvent;757    PalletConstantMetadataLatest: PalletConstantMetadataLatest;758    PalletConstantMetadataV14: PalletConstantMetadataV14;759    PalletErrorMetadataLatest: PalletErrorMetadataLatest;760    PalletErrorMetadataV14: PalletErrorMetadataV14;761    PalletEthereumCall: PalletEthereumCall;762    PalletEthereumError: PalletEthereumError;763    PalletEthereumEvent: PalletEthereumEvent;764    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;765    PalletEventMetadataLatest: PalletEventMetadataLatest;766    PalletEventMetadataV14: PalletEventMetadataV14;767    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;768    PalletEvmCall: PalletEvmCall;769    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;770    PalletEvmCollectionError: PalletEvmCollectionError;771    PalletEvmContractHelpersError: PalletEvmContractHelpersError;772    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;773    PalletEvmError: PalletEvmError;774    PalletEvmEvent: PalletEvmEvent;775    PalletEvmMigrationCall: PalletEvmMigrationCall;776    PalletEvmMigrationError: PalletEvmMigrationError;777    PalletFungibleError: PalletFungibleError;778    PalletId: PalletId;779    PalletInflationCall: PalletInflationCall;780    PalletMetadataLatest: PalletMetadataLatest;781    PalletMetadataV14: PalletMetadataV14;782    PalletNonfungibleError: PalletNonfungibleError;783    PalletNonfungibleItemData: PalletNonfungibleItemData;784    PalletRefungibleError: PalletRefungibleError;785    PalletRefungibleItemData: PalletRefungibleItemData;786    PalletRmrkCoreCall: PalletRmrkCoreCall;787    PalletRmrkCoreError: PalletRmrkCoreError;788    PalletRmrkCoreEvent: PalletRmrkCoreEvent;789    PalletRmrkEquipCall: PalletRmrkEquipCall;790    PalletRmrkEquipError: PalletRmrkEquipError;791    PalletRmrkEquipEvent: PalletRmrkEquipEvent;792    PalletsOrigin: PalletsOrigin;793    PalletStorageMetadataLatest: PalletStorageMetadataLatest;794    PalletStorageMetadataV14: PalletStorageMetadataV14;795    PalletStructureCall: PalletStructureCall;796    PalletStructureError: PalletStructureError;797    PalletStructureEvent: PalletStructureEvent;798    PalletSudoCall: PalletSudoCall;799    PalletSudoError: PalletSudoError;800    PalletSudoEvent: PalletSudoEvent;801    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;802    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;803    PalletTimestampCall: PalletTimestampCall;804    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;805    PalletTreasuryCall: PalletTreasuryCall;806    PalletTreasuryError: PalletTreasuryError;807    PalletTreasuryEvent: PalletTreasuryEvent;808    PalletTreasuryProposal: PalletTreasuryProposal;809    PalletUniqueCall: PalletUniqueCall;810    PalletUniqueError: PalletUniqueError;811    PalletUniqueRawEvent: PalletUniqueRawEvent;812    PalletVersion: PalletVersion;813    PalletXcmCall: PalletXcmCall;814    PalletXcmError: PalletXcmError;815    PalletXcmEvent: PalletXcmEvent;816    ParachainDispatchOrigin: ParachainDispatchOrigin;817    ParachainInherentData: ParachainInherentData;818    ParachainProposal: ParachainProposal;819    ParachainsInherentData: ParachainsInherentData;820    ParaGenesisArgs: ParaGenesisArgs;821    ParaId: ParaId;822    ParaInfo: ParaInfo;823    ParaLifecycle: ParaLifecycle;824    Parameter: Parameter;825    ParaPastCodeMeta: ParaPastCodeMeta;826    ParaScheduling: ParaScheduling;827    ParathreadClaim: ParathreadClaim;828    ParathreadClaimQueue: ParathreadClaimQueue;829    ParathreadEntry: ParathreadEntry;830    ParaValidatorIndex: ParaValidatorIndex;831    Pays: Pays;832    Peer: Peer;833    PeerEndpoint: PeerEndpoint;834    PeerEndpointAddr: PeerEndpointAddr;835    PeerInfo: PeerInfo;836    PeerPing: PeerPing;837    PendingChange: PendingChange;838    PendingPause: PendingPause;839    PendingResume: PendingResume;840    Perbill: Perbill;841    Percent: Percent;842    PerDispatchClassU32: PerDispatchClassU32;843    PerDispatchClassWeight: PerDispatchClassWeight;844    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;845    Period: Period;846    Permill: Permill;847    PermissionLatest: PermissionLatest;848    PermissionsV1: PermissionsV1;849    PermissionVersions: PermissionVersions;850    Perquintill: Perquintill;851    PersistedValidationData: PersistedValidationData;852    PerU16: PerU16;853    Phantom: Phantom;854    PhantomData: PhantomData;855    PhantomTypeUpDataStructsBaseInfo: PhantomTypeUpDataStructsBaseInfo;856    PhantomTypeUpDataStructsCollectionInfo: PhantomTypeUpDataStructsCollectionInfo;857    PhantomTypeUpDataStructsNftChild: PhantomTypeUpDataStructsNftChild;858    PhantomTypeUpDataStructsNftInfo: PhantomTypeUpDataStructsNftInfo;859    PhantomTypeUpDataStructsPartType: PhantomTypeUpDataStructsPartType;860    PhantomTypeUpDataStructsPropertyInfo: PhantomTypeUpDataStructsPropertyInfo;861    PhantomTypeUpDataStructsResourceInfo: PhantomTypeUpDataStructsResourceInfo;862    PhantomTypeUpDataStructsRpcCollection: PhantomTypeUpDataStructsRpcCollection;863    PhantomTypeUpDataStructsTheme: PhantomTypeUpDataStructsTheme;864    PhantomTypeUpDataStructsTokenData: PhantomTypeUpDataStructsTokenData;865    Phase: Phase;866    PhragmenScore: PhragmenScore;867    Points: Points;868    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;869    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;870    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;871    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;872    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;873    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;874    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;875    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;876    PortableType: PortableType;877    PortableTypeV14: PortableTypeV14;878    Precommits: Precommits;879    PrefabWasmModule: PrefabWasmModule;880    PrefixedStorageKey: PrefixedStorageKey;881    PreimageStatus: PreimageStatus;882    PreimageStatusAvailable: PreimageStatusAvailable;883    PreRuntime: PreRuntime;884    Prevotes: Prevotes;885    Priority: Priority;886    PriorLock: PriorLock;887    PropIndex: PropIndex;888    Proposal: Proposal;889    ProposalIndex: ProposalIndex;890    ProxyAnnouncement: ProxyAnnouncement;891    ProxyDefinition: ProxyDefinition;892    ProxyState: ProxyState;893    ProxyType: ProxyType;894    QueryId: QueryId;895    QueryStatus: QueryStatus;896    QueueConfigData: QueueConfigData;897    QueuedParathread: QueuedParathread;898    Randomness: Randomness;899    Raw: Raw;900    RawAuraPreDigest: RawAuraPreDigest;901    RawBabePreDigest: RawBabePreDigest;902    RawBabePreDigestCompat: RawBabePreDigestCompat;903    RawBabePreDigestPrimary: RawBabePreDigestPrimary;904    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;905    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;906    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;907    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;908    RawBabePreDigestTo159: RawBabePreDigestTo159;909    RawOrigin: RawOrigin;910    RawSolution: RawSolution;911    RawSolutionTo265: RawSolutionTo265;912    RawSolutionWith16: RawSolutionWith16;913    RawSolutionWith24: RawSolutionWith24;914    RawVRFOutput: RawVRFOutput;915    ReadProof: ReadProof;916    ReadySolution: ReadySolution;917    Reasons: Reasons;918    RecoveryConfig: RecoveryConfig;919    RefCount: RefCount;920    RefCountTo259: RefCountTo259;921    ReferendumIndex: ReferendumIndex;922    ReferendumInfo: ReferendumInfo;923    ReferendumInfoFinished: ReferendumInfoFinished;924    ReferendumInfoTo239: ReferendumInfoTo239;925    ReferendumStatus: ReferendumStatus;926    RegisteredParachainInfo: RegisteredParachainInfo;927    RegistrarIndex: RegistrarIndex;928    RegistrarInfo: RegistrarInfo;929    Registration: Registration;930    RegistrationJudgement: RegistrationJudgement;931    RegistrationTo198: RegistrationTo198;932    RelayBlockNumber: RelayBlockNumber;933    RelayChainBlockNumber: RelayChainBlockNumber;934    RelayChainHash: RelayChainHash;935    RelayerId: RelayerId;936    RelayHash: RelayHash;937    Releases: Releases;938    Remark: Remark;939    Renouncing: Renouncing;940    RentProjection: RentProjection;941    ReplacementTimes: ReplacementTimes;942    ReportedRoundStates: ReportedRoundStates;943    Reporter: Reporter;944    ReportIdOf: ReportIdOf;945    ReserveData: ReserveData;946    ReserveIdentifier: ReserveIdentifier;947    Response: Response;948    ResponseV0: ResponseV0;949    ResponseV1: ResponseV1;950    ResponseV2: ResponseV2;951    ResponseV2Error: ResponseV2Error;952    ResponseV2Result: ResponseV2Result;953    Retriable: Retriable;954    RewardDestination: RewardDestination;955    RewardPoint: RewardPoint;956    RoundSnapshot: RoundSnapshot;957    RoundState: RoundState;958    RpcMethods: RpcMethods;959    RuntimeDbWeight: RuntimeDbWeight;960    RuntimeDispatchInfo: RuntimeDispatchInfo;961    RuntimeVersion: RuntimeVersion;962    RuntimeVersionApi: RuntimeVersionApi;963    RuntimeVersionPartial: RuntimeVersionPartial;964    Schedule: Schedule;965    Scheduled: Scheduled;966    ScheduledTo254: ScheduledTo254;967    SchedulePeriod: SchedulePeriod;968    SchedulePriority: SchedulePriority;969    ScheduleTo212: ScheduleTo212;970    ScheduleTo258: ScheduleTo258;971    ScheduleTo264: ScheduleTo264;972    Scheduling: Scheduling;973    Seal: Seal;974    SealV0: SealV0;975    SeatHolder: SeatHolder;976    SeedOf: SeedOf;977    ServiceQuality: ServiceQuality;978    SessionIndex: SessionIndex;979    SessionInfo: SessionInfo;980    SessionInfoValidatorGroup: SessionInfoValidatorGroup;981    SessionKeys1: SessionKeys1;982    SessionKeys10: SessionKeys10;983    SessionKeys10B: SessionKeys10B;984    SessionKeys2: SessionKeys2;985    SessionKeys3: SessionKeys3;986    SessionKeys4: SessionKeys4;987    SessionKeys5: SessionKeys5;988    SessionKeys6: SessionKeys6;989    SessionKeys6B: SessionKeys6B;990    SessionKeys7: SessionKeys7;991    SessionKeys7B: SessionKeys7B;992    SessionKeys8: SessionKeys8;993    SessionKeys8B: SessionKeys8B;994    SessionKeys9: SessionKeys9;995    SessionKeys9B: SessionKeys9B;996    SetId: SetId;997    SetIndex: SetIndex;998    Si0Field: Si0Field;999    Si0LookupTypeId: Si0LookupTypeId;1000    Si0Path: Si0Path;1001    Si0Type: Si0Type;1002    Si0TypeDef: Si0TypeDef;1003    Si0TypeDefArray: Si0TypeDefArray;1004    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1005    Si0TypeDefCompact: Si0TypeDefCompact;1006    Si0TypeDefComposite: Si0TypeDefComposite;1007    Si0TypeDefPhantom: Si0TypeDefPhantom;1008    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1009    Si0TypeDefSequence: Si0TypeDefSequence;1010    Si0TypeDefTuple: Si0TypeDefTuple;1011    Si0TypeDefVariant: Si0TypeDefVariant;1012    Si0TypeParameter: Si0TypeParameter;1013    Si0Variant: Si0Variant;1014    Si1Field: Si1Field;1015    Si1LookupTypeId: Si1LookupTypeId;1016    Si1Path: Si1Path;1017    Si1Type: Si1Type;1018    Si1TypeDef: Si1TypeDef;1019    Si1TypeDefArray: Si1TypeDefArray;1020    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1021    Si1TypeDefCompact: Si1TypeDefCompact;1022    Si1TypeDefComposite: Si1TypeDefComposite;1023    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1024    Si1TypeDefSequence: Si1TypeDefSequence;1025    Si1TypeDefTuple: Si1TypeDefTuple;1026    Si1TypeDefVariant: Si1TypeDefVariant;1027    Si1TypeParameter: Si1TypeParameter;1028    Si1Variant: Si1Variant;1029    SiField: SiField;1030    Signature: Signature;1031    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1032    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1033    SignedBlock: SignedBlock;1034    SignedBlockWithJustification: SignedBlockWithJustification;1035    SignedBlockWithJustifications: SignedBlockWithJustifications;1036    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1037    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1038    SignedSubmission: SignedSubmission;1039    SignedSubmissionOf: SignedSubmissionOf;1040    SignedSubmissionTo276: SignedSubmissionTo276;1041    SignerPayload: SignerPayload;1042    SigningContext: SigningContext;1043    SiLookupTypeId: SiLookupTypeId;1044    SiPath: SiPath;1045    SiType: SiType;1046    SiTypeDef: SiTypeDef;1047    SiTypeDefArray: SiTypeDefArray;1048    SiTypeDefBitSequence: SiTypeDefBitSequence;1049    SiTypeDefCompact: SiTypeDefCompact;1050    SiTypeDefComposite: SiTypeDefComposite;1051    SiTypeDefPrimitive: SiTypeDefPrimitive;1052    SiTypeDefSequence: SiTypeDefSequence;1053    SiTypeDefTuple: SiTypeDefTuple;1054    SiTypeDefVariant: SiTypeDefVariant;1055    SiTypeParameter: SiTypeParameter;1056    SiVariant: SiVariant;1057    SlashingSpans: SlashingSpans;1058    SlashingSpansTo204: SlashingSpansTo204;1059    SlashJournalEntry: SlashJournalEntry;1060    Slot: Slot;1061    SlotNumber: SlotNumber;1062    SlotRange: SlotRange;1063    SlotRange10: SlotRange10;1064    SocietyJudgement: SocietyJudgement;1065    SocietyVote: SocietyVote;1066    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1067    SolutionSupport: SolutionSupport;1068    SolutionSupports: SolutionSupports;1069    SpanIndex: SpanIndex;1070    SpanRecord: SpanRecord;1071    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1072    SpCoreEd25519Signature: SpCoreEd25519Signature;1073    SpCoreSr25519Signature: SpCoreSr25519Signature;1074    SpecVersion: SpecVersion;1075    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1076    SpRuntimeDigest: SpRuntimeDigest;1077    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1078    SpRuntimeDispatchError: SpRuntimeDispatchError;1079    SpRuntimeModuleError: SpRuntimeModuleError;1080    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1081    SpRuntimeTokenError: SpRuntimeTokenError;1082    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1083    SpTrieStorageProof: SpTrieStorageProof;1084    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1085    Sr25519Signature: Sr25519Signature;1086    StakingLedger: StakingLedger;1087    StakingLedgerTo223: StakingLedgerTo223;1088    StakingLedgerTo240: StakingLedgerTo240;1089    Statement: Statement;1090    StatementKind: StatementKind;1091    StorageChangeSet: StorageChangeSet;1092    StorageData: StorageData;1093    StorageDeposit: StorageDeposit;1094    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1095    StorageEntryMetadataV10: StorageEntryMetadataV10;1096    StorageEntryMetadataV11: StorageEntryMetadataV11;1097    StorageEntryMetadataV12: StorageEntryMetadataV12;1098    StorageEntryMetadataV13: StorageEntryMetadataV13;1099    StorageEntryMetadataV14: StorageEntryMetadataV14;1100    StorageEntryMetadataV9: StorageEntryMetadataV9;1101    StorageEntryModifierLatest: StorageEntryModifierLatest;1102    StorageEntryModifierV10: StorageEntryModifierV10;1103    StorageEntryModifierV11: StorageEntryModifierV11;1104    StorageEntryModifierV12: StorageEntryModifierV12;1105    StorageEntryModifierV13: StorageEntryModifierV13;1106    StorageEntryModifierV14: StorageEntryModifierV14;1107    StorageEntryModifierV9: StorageEntryModifierV9;1108    StorageEntryTypeLatest: StorageEntryTypeLatest;1109    StorageEntryTypeV10: StorageEntryTypeV10;1110    StorageEntryTypeV11: StorageEntryTypeV11;1111    StorageEntryTypeV12: StorageEntryTypeV12;1112    StorageEntryTypeV13: StorageEntryTypeV13;1113    StorageEntryTypeV14: StorageEntryTypeV14;1114    StorageEntryTypeV9: StorageEntryTypeV9;1115    StorageHasher: StorageHasher;1116    StorageHasherV10: StorageHasherV10;1117    StorageHasherV11: StorageHasherV11;1118    StorageHasherV12: StorageHasherV12;1119    StorageHasherV13: StorageHasherV13;1120    StorageHasherV14: StorageHasherV14;1121    StorageHasherV9: StorageHasherV9;1122    StorageKey: StorageKey;1123    StorageKind: StorageKind;1124    StorageMetadataV10: StorageMetadataV10;1125    StorageMetadataV11: StorageMetadataV11;1126    StorageMetadataV12: StorageMetadataV12;1127    StorageMetadataV13: StorageMetadataV13;1128    StorageMetadataV9: StorageMetadataV9;1129    StorageProof: StorageProof;1130    StoredPendingChange: StoredPendingChange;1131    StoredState: StoredState;1132    StrikeCount: StrikeCount;1133    SubId: SubId;1134    SubmissionIndicesOf: SubmissionIndicesOf;1135    Supports: Supports;1136    SyncState: SyncState;1137    SystemInherentData: SystemInherentData;1138    SystemOrigin: SystemOrigin;1139    Tally: Tally;1140    TaskAddress: TaskAddress;1141    TAssetBalance: TAssetBalance;1142    TAssetDepositBalance: TAssetDepositBalance;1143    Text: Text;1144    Timepoint: Timepoint;1145    TokenError: TokenError;1146    TombstoneContractInfo: TombstoneContractInfo;1147    TraceBlockResponse: TraceBlockResponse;1148    TraceError: TraceError;1149    TransactionInfo: TransactionInfo;1150    TransactionPriority: TransactionPriority;1151    TransactionStorageProof: TransactionStorageProof;1152    TransactionV0: TransactionV0;1153    TransactionV1: TransactionV1;1154    TransactionV2: TransactionV2;1155    TransactionValidityError: TransactionValidityError;1156    TransientValidationData: TransientValidationData;1157    TreasuryProposal: TreasuryProposal;1158    TrieId: TrieId;1159    TrieIndex: TrieIndex;1160    Type: Type;1161    u128: u128;1162    U128: U128;1163    u16: u16;1164    U16: U16;1165    u256: u256;1166    U256: U256;1167    u32: u32;1168    U32: U32;1169    U32F32: U32F32;1170    u64: u64;1171    U64: U64;1172    u8: u8;1173    U8: U8;1174    UnappliedSlash: UnappliedSlash;1175    UnappliedSlashOther: UnappliedSlashOther;1176    UncleEntryItem: UncleEntryItem;1177    UnknownTransaction: UnknownTransaction;1178    UnlockChunk: UnlockChunk;1179    UnrewardedRelayer: UnrewardedRelayer;1180    UnrewardedRelayersState: UnrewardedRelayersState;1181    UpDataStructsAccessMode: UpDataStructsAccessMode;1182    UpDataStructsCollection: UpDataStructsCollection;1183    UpDataStructsCollectionField: UpDataStructsCollectionField;1184    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1185    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1186    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1187    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1188    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1189    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1190    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1191    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1192    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1193    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1194    UpDataStructsCreateRefungibleExData: UpDataStructsCreateRefungibleExData;1195    UpDataStructsNestingRule: UpDataStructsNestingRule;1196    UpDataStructsProperties: UpDataStructsProperties;1197    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1198    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1199    UpDataStructsProperty: UpDataStructsProperty;1200    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1201    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1202    UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;1203    UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;1204    UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;1205    UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;1206    UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;1207    UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;1208    UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;1209    UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;1210    UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;1211    UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;1212    UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;1213    UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;1214    UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;1215    UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;1216    UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;1217    UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;1218    UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;1219    UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;1220    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1221    UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;1222    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1223    UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;1224    UpDataStructsTokenData: UpDataStructsTokenData;1225    UpgradeGoAhead: UpgradeGoAhead;1226    UpgradeRestriction: UpgradeRestriction;1227    UpwardMessage: UpwardMessage;1228    usize: usize;1229    USize: USize;1230    ValidationCode: ValidationCode;1231    ValidationCodeHash: ValidationCodeHash;1232    ValidationData: ValidationData;1233    ValidationDataType: ValidationDataType;1234    ValidationFunctionParams: ValidationFunctionParams;1235    ValidatorCount: ValidatorCount;1236    ValidatorId: ValidatorId;1237    ValidatorIdOf: ValidatorIdOf;1238    ValidatorIndex: ValidatorIndex;1239    ValidatorIndexCompact: ValidatorIndexCompact;1240    ValidatorPrefs: ValidatorPrefs;1241    ValidatorPrefsTo145: ValidatorPrefsTo145;1242    ValidatorPrefsTo196: ValidatorPrefsTo196;1243    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1244    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1245    ValidatorSetId: ValidatorSetId;1246    ValidatorSignature: ValidatorSignature;1247    ValidDisputeStatementKind: ValidDisputeStatementKind;1248    ValidityAttestation: ValidityAttestation;1249    VecInboundHrmpMessage: VecInboundHrmpMessage;1250    VersionedMultiAsset: VersionedMultiAsset;1251    VersionedMultiAssets: VersionedMultiAssets;1252    VersionedMultiLocation: VersionedMultiLocation;1253    VersionedResponse: VersionedResponse;1254    VersionedXcm: VersionedXcm;1255    VersionMigrationStage: VersionMigrationStage;1256    VestingInfo: VestingInfo;1257    VestingSchedule: VestingSchedule;1258    Vote: Vote;1259    VoteIndex: VoteIndex;1260    Voter: Voter;1261    VoterInfo: VoterInfo;1262    Votes: Votes;1263    VotesTo230: VotesTo230;1264    VoteThreshold: VoteThreshold;1265    VoteWeight: VoteWeight;1266    Voting: Voting;1267    VotingDelegating: VotingDelegating;1268    VotingDirect: VotingDirect;1269    VotingDirectVote: VotingDirectVote;1270    VouchingStatus: VouchingStatus;1271    VrfData: VrfData;1272    VrfOutput: VrfOutput;1273    VrfProof: VrfProof;1274    Weight: Weight;1275    WeightLimitV2: WeightLimitV2;1276    WeightMultiplier: WeightMultiplier;1277    WeightPerClass: WeightPerClass;1278    WeightToFeeCoefficient: WeightToFeeCoefficient;1279    WildFungibility: WildFungibility;1280    WildFungibilityV0: WildFungibilityV0;1281    WildFungibilityV1: WildFungibilityV1;1282    WildFungibilityV2: WildFungibilityV2;1283    WildMultiAsset: WildMultiAsset;1284    WildMultiAssetV1: WildMultiAssetV1;1285    WildMultiAssetV2: WildMultiAssetV2;1286    WinnersData: WinnersData;1287    WinnersData10: WinnersData10;1288    WinnersDataTuple: WinnersDataTuple;1289    WinnersDataTuple10: WinnersDataTuple10;1290    WinningData: WinningData;1291    WinningData10: WinningData10;1292    WinningDataEntry: WinningDataEntry;1293    WithdrawReasons: WithdrawReasons;1294    Xcm: Xcm;1295    XcmAssetId: XcmAssetId;1296    XcmDoubleEncoded: XcmDoubleEncoded;1297    XcmError: XcmError;1298    XcmErrorV0: XcmErrorV0;1299    XcmErrorV1: XcmErrorV1;1300    XcmErrorV2: XcmErrorV2;1301    XcmOrder: XcmOrder;1302    XcmOrderV0: XcmOrderV0;1303    XcmOrderV1: XcmOrderV1;1304    XcmOrderV2: XcmOrderV2;1305    XcmOrigin: XcmOrigin;1306    XcmOriginKind: XcmOriginKind;1307    XcmpMessageFormat: XcmpMessageFormat;1308    XcmV0: XcmV0;1309    XcmV0Junction: XcmV0Junction;1310    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1311    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1312    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1313    XcmV0MultiAsset: XcmV0MultiAsset;1314    XcmV0MultiLocation: XcmV0MultiLocation;1315    XcmV0Order: XcmV0Order;1316    XcmV0OriginKind: XcmV0OriginKind;1317    XcmV0Response: XcmV0Response;1318    XcmV0Xcm: XcmV0Xcm;1319    XcmV1: XcmV1;1320    XcmV1Junction: XcmV1Junction;1321    XcmV1MultiAsset: XcmV1MultiAsset;1322    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1323    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1324    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1325    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1326    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1327    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1328    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1329    XcmV1MultiLocation: XcmV1MultiLocation;1330    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1331    XcmV1Order: XcmV1Order;1332    XcmV1Response: XcmV1Response;1333    XcmV1Xcm: XcmV1Xcm;1334    XcmV2: XcmV2;1335    XcmV2Instruction: XcmV2Instruction;1336    XcmV2Response: XcmV2Response;1337    XcmV2TraitsError: XcmV2TraitsError;1338    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1339    XcmV2WeightLimit: XcmV2WeightLimit;1340    XcmV2Xcm: XcmV2Xcm;1341    XcmVersion: XcmVersion;1342    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1343    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1344    XcmVersionedXcm: XcmVersionedXcm;1345  } // InterfaceTypes1346} // declare module
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -26,6 +26,10 @@
     trieNodes: 'BTreeSet<Bytes>'
   },
   /**
+   * Lookup11: BTreeSet<T>
+   **/
+  BTreeSet: 'Vec<Bytes>',
+  /**
    * Lookup13: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
    **/
   CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -26,6 +26,9 @@
     readonly trieNodes: BTreeSet<Bytes>;
   }
 
+  /** @name BTreeSet (11) */
+  export interface BTreeSet extends Vec<Bytes> {}
+
   /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */
   export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
     readonly dmqMqcHead: H256;
modifiedtests/src/interfaces/unique/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -6,6 +6,9 @@
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
 import type { Event } from '@polkadot/types/interfaces/system';
 
+/** @name BTreeSet */
+export interface BTreeSet extends Vec<Bytes> {}
+
 /** @name CumulusPalletDmpQueueCall */
 export interface CumulusPalletDmpQueueCall extends Enum {
   readonly isServiceOverweight: boolean;
@@ -1012,6 +1015,12 @@
   readonly type: 'OutOfGas' | 'OutOfFund';
 }
 
+/** @name PalletEvmCollectionError */
+export interface PalletEvmCollectionError extends Enum {
+  readonly isNoPermission: boolean;
+  readonly type: 'NoPermission';
+}
+
 /** @name PalletEvmContractHelpersError */
 export interface PalletEvmContractHelpersError extends Enum {
   readonly isNoPermission: boolean;