git.delta.rocks / unique-network / refs/commits / b83ad953710f

difftreelog

CORE-386 Add methodt to evm

Trubnikov Sergey2022-05-31parent: #9e257c4.patch.diff
in: master

8 files changed

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