difftreelog
Merge pull request #775 from UniqueNetwork/chore/fix-warnings
in: master
14 files changed
examples/package.jsondiffbeforeafterboth--- a/examples/package.json
+++ b/examples/package.json
@@ -7,7 +7,7 @@
"test": "test"
},
"devDependencies": {
- "got": "^10.7.0"
+ "got": "^11.8.5"
},
"scripts": {
"test": ""
pallets/common/src/eth.rsdiffbeforeafterboth--- a/pallets/common/src/eth.rs
+++ b/pallets/common/src/eth.rs
@@ -125,9 +125,9 @@
/// Ethereum representation of Optional value with CrossAddress.
#[derive(Debug, Default, AbiCoder)]
pub struct OptionCrossAddress {
- /// Is address set
+ /// Whether or not this CrossAdress is valid and has meaning.
pub status: bool,
- /// Address value
+ /// The underlying CrossAddress value. If the status is false, can be set to whatever.
pub value: CrossAddress,
}
@@ -139,7 +139,7 @@
}
impl CrossAddress {
- /// Converts `CrossAccountId` to [`CrossAddress`]
+ /// Converts `CrossAccountId` to [`CrossAddress`] to be correctly usable with Ethereum.
pub fn from_sub_cross_account<T>(cross_account_id: &T::CrossAccountId) -> Self
where
T: pallet_evm::Config,
@@ -154,7 +154,7 @@
}
}
}
- /// Creates [`CrossAddress`] from substrate account
+ /// Creates [`CrossAddress`] from Substrate account.
pub fn from_sub<T>(account_id: &T::AccountId) -> Self
where
T: pallet_evm::Config,
@@ -165,7 +165,7 @@
sub: uint256::from_big_endian(account_id.as_ref()),
}
}
- /// Converts [`CrossAddress`] to `CrossAccountId`
+ /// Converts [`CrossAddress`] to `CrossAccountId`.
pub fn into_sub_cross_account<T>(&self) -> evm_coder::execution::Result<T::CrossAccountId>
where
T: pallet_evm::Config,
pallets/refungible/src/lib.rsdiffbeforeafterboth--- a/pallets/refungible/src/lib.rs
+++ b/pallets/refungible/src/lib.rs
@@ -90,10 +90,9 @@
use crate::erc_token::ERC20Events;
use crate::erc::ERC721Events;
-use codec::{Encode, Decode, MaxEncodedLen};
use core::ops::Deref;
use evm_coder::ToLog;
-use frame_support::{BoundedVec, ensure, fail, storage::with_transaction, transactional};
+use frame_support::{ensure, fail, storage::with_transaction, transactional};
use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};
use pallet_evm_coder_substrate::WithRecorder;
use pallet_common::{
@@ -101,13 +100,12 @@
Event as CommonEvent, Pallet as PalletCommon, erc::CollectionHelpersEvents,
};
use pallet_structure::Pallet as PalletStructure;
-use scale_info::TypeInfo;
use sp_core::{Get, H160};
use sp_runtime::{ArithmeticError, DispatchError, DispatchResult, TransactionOutcome};
use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};
use up_data_structs::{
AccessMode, budget::Budget, CollectionId, CollectionFlags, CreateCollectionData,
- CustomDataLimit, mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, Property, PropertyKey,
+ mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, Property, PropertyKey,
PropertyKeyPermission, PropertyPermission, PropertyScope, PropertyValue, TokenId,
TrySetProperty, PropertiesPermissionMap, CreateRefungibleExMultipleOwners,
};
@@ -124,17 +122,6 @@
CreateRefungibleExMultipleOwners<<T as pallet_evm::Config>::CrossAccountId>;
pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;
-/// Token data, stored independently from other data used to describe it
-/// for the convenience of database access. Notably contains the token metadata.
-#[struct_versioning::versioned(version = 2, upper)]
-#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]
-pub struct ItemData {
- pub const_data: BoundedVec<u8, CustomDataLimit>,
-
- #[version(..2)]
- pub variable_data: BoundedVec<u8, CustomDataLimit>,
-}
-
#[frame_support::pallet]
pub mod pallet {
use super::*;
@@ -142,7 +129,6 @@
Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key,
traits::StorageVersion,
};
- use frame_system::pallet_prelude::*;
use up_data_structs::{CollectionId, TokenId};
use super::weights::WeightInfo;
@@ -183,16 +169,6 @@
#[pallet::storage]
pub type TokensBurnt<T: Config> =
StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;
-
- /// Token data, used to partially describe a token.
- // TODO: remove
- #[pallet::storage]
- #[deprecated(since = "0.2.0", note = "ItemData is no more contains usefull data")]
- pub type TokenData<T: Config> = StorageNMap<
- Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),
- Value = ItemData,
- QueryKind = ValueQuery,
- >;
/// Amount of pieces a refungible token is split into.
#[pallet::storage]
@@ -275,20 +251,6 @@
Value = bool,
QueryKind = ValueQuery,
>;
-
- #[pallet::hooks]
- impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {
- fn on_runtime_upgrade() -> Weight {
- let storage_version = StorageVersion::get::<Pallet<T>>();
- if storage_version < StorageVersion::new(2) {
- #[allow(deprecated)]
- let _ = <TokenData<T>>::clear(u32::MAX, None);
- }
- StorageVersion::new(2).put::<Pallet<T>>();
-
- Weight::zero()
- }
- }
}
pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);
pallets/unique/src/lib.rsdiffbeforeafterboth--- a/pallets/unique/src/lib.rs
+++ b/pallets/unique/src/lib.rs
@@ -91,7 +91,7 @@
CreateItemData, CollectionLimits, CollectionPermissions, CollectionId, CollectionMode, TokenId,
CreateCollectionData, CreateItemExData, budget, Property, PropertyKey, PropertyKeyPermission,
};
-use pallet_evm::{account::CrossAccountId};
+use pallet_evm::account::CrossAccountId;
use pallet_common::{
CollectionHandle, Pallet as PalletCommon, CommonWeightInfo, dispatch::dispatch_tx,
dispatch::CollectionDispatch, RefungibleExtensionsWeightInfo,
runtime/common/config/pallets/app_promotion.rsdiffbeforeafterboth--- a/runtime/common/config/pallets/app_promotion.rs
+++ b/runtime/common/config/pallets/app_promotion.rs
@@ -22,7 +22,7 @@
use frame_support::{parameter_types, PalletId};
use sp_arithmetic::Perbill;
use up_common::{
- constants::{UNIQUE, RELAY_DAYS, DAYS},
+ constants::{UNIQUE, DAYS, RELAY_DAYS},
types::Balance,
};
runtime/tests/src/tests.rsdiffbeforeafterboth--- a/runtime/tests/src/tests.rs
+++ b/runtime/tests/src/tests.rs
@@ -294,7 +294,6 @@
let data = default_re_fungible_data();
create_test_item(collection_id, &data.clone().into());
- let item = <pallet_refungible::TokenData<Test>>::get((collection_id, TokenId(1)));
let balance =
<pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1)));
assert_eq!(balance, 1023);
@@ -325,12 +324,11 @@
.collect()
));
for (index, data) in items_data.into_iter().enumerate() {
- let item = <pallet_refungible::TokenData<Test>>::get((
+ let balance = <pallet_refungible::Balance<Test>>::get((
CollectionId(1),
TokenId((index + 1) as u32),
+ account(1),
));
- let balance =
- <pallet_refungible::Balance<Test>>::get((CollectionId(1), TokenId(1), account(1)));
assert_eq!(balance, 1023);
}
});
@@ -442,7 +440,6 @@
// Create RFT 1 in 1023 pieces for account 1
let data = default_re_fungible_data();
create_test_item(collection_id, &data.clone().into());
- let item = <pallet_refungible::TokenData<Test>>::get((collection_id, TokenId(1)));
assert_eq!(
<pallet_refungible::AccountBalance<Test>>::get((collection_id, account(1))),
1
tests/package.jsondiffbeforeafterboth--- a/tests/package.json
+++ b/tests/package.json
@@ -4,7 +4,7 @@
"description": "Unique Chain Tests",
"main": "",
"devDependencies": {
- "@polkadot/typegen": "9.9.4",
+ "@polkadot/typegen": "9.10.2",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-like": "^1.1.1",
@@ -117,7 +117,8 @@
"license": "SEE LICENSE IN ../LICENSE",
"homepage": "",
"dependencies": {
- "@polkadot/api": "9.9.4",
+ "@polkadot/api": "9.10.2",
+ "@polkadot/util": "10.2.1",
"@polkadot/util-crypto": "10.2.1",
"chai-as-promised": "^7.1.1",
"chai-like": "^1.1.1",
@@ -125,5 +126,8 @@
"find-process": "^1.4.7",
"solc": "0.8.17",
"web3": "^1.8.1"
+ },
+ "resolutions": {
+ "decode-uri-component": "^0.2.1"
}
}
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -9,7 +9,7 @@
import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -632,10 +632,6 @@
* Used to enumerate tokens owned by account.
**/
owned: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]>;
- /**
- * Token data, used to partially describe a token.
- **/
- tokenData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<PalletRefungibleItemData>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
/**
* Amount of pieces a refungible token is split into.
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import 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';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, 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';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import 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';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import 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';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import 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, OpaqueMetadata, 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';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import 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';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, 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';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import 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';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountId33: AccountId33;83 AccountIdOf: AccountIdOf;84 AccountIndex: AccountIndex;85 AccountInfo: AccountInfo;86 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87 AccountInfoWithProviders: AccountInfoWithProviders;88 AccountInfoWithRefCount: AccountInfoWithRefCount;89 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91 AccountStatus: AccountStatus;92 AccountValidity: AccountValidity;93 AccountVote: AccountVote;94 AccountVoteSplit: AccountVoteSplit;95 AccountVoteStandard: AccountVoteStandard;96 ActiveEraInfo: ActiveEraInfo;97 ActiveGilt: ActiveGilt;98 ActiveGiltsTotal: ActiveGiltsTotal;99 ActiveIndex: ActiveIndex;100 ActiveRecovery: ActiveRecovery;101 Address: Address;102 AliveContractInfo: AliveContractInfo;103 AllowedSlots: AllowedSlots;104 AnySignature: AnySignature;105 ApiId: ApiId;106 ApplyExtrinsicResult: ApplyExtrinsicResult;107 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108 ApprovalFlag: ApprovalFlag;109 Approvals: Approvals;110 ArithmeticError: ArithmeticError;111 AssetApproval: AssetApproval;112 AssetApprovalKey: AssetApprovalKey;113 AssetBalance: AssetBalance;114 AssetDestroyWitness: AssetDestroyWitness;115 AssetDetails: AssetDetails;116 AssetId: AssetId;117 AssetInstance: AssetInstance;118 AssetInstanceV0: AssetInstanceV0;119 AssetInstanceV1: AssetInstanceV1;120 AssetInstanceV2: AssetInstanceV2;121 AssetMetadata: AssetMetadata;122 AssetOptions: AssetOptions;123 AssignmentId: AssignmentId;124 AssignmentKind: AssignmentKind;125 AttestedCandidate: AttestedCandidate;126 AuctionIndex: AuctionIndex;127 AuthIndex: AuthIndex;128 AuthorityDiscoveryId: AuthorityDiscoveryId;129 AuthorityId: AuthorityId;130 AuthorityIndex: AuthorityIndex;131 AuthorityList: AuthorityList;132 AuthoritySet: AuthoritySet;133 AuthoritySetChange: AuthoritySetChange;134 AuthoritySetChanges: AuthoritySetChanges;135 AuthoritySignature: AuthoritySignature;136 AuthorityWeight: AuthorityWeight;137 AvailabilityBitfield: AvailabilityBitfield;138 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139 BabeAuthorityWeight: BabeAuthorityWeight;140 BabeBlockWeight: BabeBlockWeight;141 BabeEpochConfiguration: BabeEpochConfiguration;142 BabeEquivocationProof: BabeEquivocationProof;143 BabeGenesisConfiguration: BabeGenesisConfiguration;144 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145 BabeWeight: BabeWeight;146 BackedCandidate: BackedCandidate;147 Balance: Balance;148 BalanceLock: BalanceLock;149 BalanceLockTo212: BalanceLockTo212;150 BalanceOf: BalanceOf;151 BalanceStatus: BalanceStatus;152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyCommitment: BeefyCommitment;154 BeefyId: BeefyId;155 BeefyKey: BeefyKey;156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;157 BeefyPayload: BeefyPayload;158 BeefyPayloadId: BeefyPayloadId;159 BeefySignedCommitment: BeefySignedCommitment;160 BenchmarkBatch: BenchmarkBatch;161 BenchmarkConfig: BenchmarkConfig;162 BenchmarkList: BenchmarkList;163 BenchmarkMetadata: BenchmarkMetadata;164 BenchmarkParameter: BenchmarkParameter;165 BenchmarkResult: BenchmarkResult;166 Bid: Bid;167 Bidder: Bidder;168 BidKind: BidKind;169 BitVec: BitVec;170 Block: Block;171 BlockAttestations: BlockAttestations;172 BlockHash: BlockHash;173 BlockLength: BlockLength;174 BlockNumber: BlockNumber;175 BlockNumberFor: BlockNumberFor;176 BlockNumberOf: BlockNumberOf;177 BlockStats: BlockStats;178 BlockTrace: BlockTrace;179 BlockTraceEvent: BlockTraceEvent;180 BlockTraceEventData: BlockTraceEventData;181 BlockTraceSpan: BlockTraceSpan;182 BlockV0: BlockV0;183 BlockV1: BlockV1;184 BlockV2: BlockV2;185 BlockWeights: BlockWeights;186 BodyId: BodyId;187 BodyPart: BodyPart;188 bool: bool;189 Bool: Bool;190 Bounty: Bounty;191 BountyIndex: BountyIndex;192 BountyStatus: BountyStatus;193 BountyStatusActive: BountyStatusActive;194 BountyStatusCuratorProposed: BountyStatusCuratorProposed;195 BountyStatusPendingPayout: BountyStatusPendingPayout;196 BridgedBlockHash: BridgedBlockHash;197 BridgedBlockNumber: BridgedBlockNumber;198 BridgedHeader: BridgedHeader;199 BridgeMessageId: BridgeMessageId;200 BufferedSessionChange: BufferedSessionChange;201 Bytes: Bytes;202 Call: Call;203 CallHash: CallHash;204 CallHashOf: CallHashOf;205 CallIndex: CallIndex;206 CallOrigin: CallOrigin;207 CandidateCommitments: CandidateCommitments;208 CandidateDescriptor: CandidateDescriptor;209 CandidateEvent: CandidateEvent;210 CandidateHash: CandidateHash;211 CandidateInfo: CandidateInfo;212 CandidatePendingAvailability: CandidatePendingAvailability;213 CandidateReceipt: CandidateReceipt;214 ChainId: ChainId;215 ChainProperties: ChainProperties;216 ChainType: ChainType;217 ChangesTrieConfiguration: ChangesTrieConfiguration;218 ChangesTrieSignal: ChangesTrieSignal;219 CheckInherentsResult: CheckInherentsResult;220 ClassDetails: ClassDetails;221 ClassId: ClassId;222 ClassMetadata: ClassMetadata;223 CodecHash: CodecHash;224 CodeHash: CodeHash;225 CodeSource: CodeSource;226 CodeUploadRequest: CodeUploadRequest;227 CodeUploadResult: CodeUploadResult;228 CodeUploadResultValue: CodeUploadResultValue;229 CollationInfo: CollationInfo;230 CollationInfoV1: CollationInfoV1;231 CollatorId: CollatorId;232 CollatorSignature: CollatorSignature;233 CollectiveOrigin: CollectiveOrigin;234 CommittedCandidateReceipt: CommittedCandidateReceipt;235 CompactAssignments: CompactAssignments;236 CompactAssignmentsTo257: CompactAssignmentsTo257;237 CompactAssignmentsTo265: CompactAssignmentsTo265;238 CompactAssignmentsWith16: CompactAssignmentsWith16;239 CompactAssignmentsWith24: CompactAssignmentsWith24;240 CompactScore: CompactScore;241 CompactScoreCompact: CompactScoreCompact;242 ConfigData: ConfigData;243 Consensus: Consensus;244 ConsensusEngineId: ConsensusEngineId;245 ConsumedWeight: ConsumedWeight;246 ContractCallFlags: ContractCallFlags;247 ContractCallRequest: ContractCallRequest;248 ContractConstructorSpecLatest: ContractConstructorSpecLatest;249 ContractConstructorSpecV0: ContractConstructorSpecV0;250 ContractConstructorSpecV1: ContractConstructorSpecV1;251 ContractConstructorSpecV2: ContractConstructorSpecV2;252 ContractConstructorSpecV3: ContractConstructorSpecV3;253 ContractContractSpecV0: ContractContractSpecV0;254 ContractContractSpecV1: ContractContractSpecV1;255 ContractContractSpecV2: ContractContractSpecV2;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;258 ContractCryptoHasher: ContractCryptoHasher;259 ContractDiscriminant: ContractDiscriminant;260 ContractDisplayName: ContractDisplayName;261 ContractEventParamSpecLatest: ContractEventParamSpecLatest;262 ContractEventParamSpecV0: ContractEventParamSpecV0;263 ContractEventParamSpecV2: ContractEventParamSpecV2;264 ContractEventSpecLatest: ContractEventSpecLatest;265 ContractEventSpecV0: ContractEventSpecV0;266 ContractEventSpecV1: ContractEventSpecV1;267 ContractEventSpecV2: ContractEventSpecV2;268 ContractExecResult: ContractExecResult;269 ContractExecResultOk: ContractExecResultOk;270 ContractExecResultResult: ContractExecResultResult;271 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractExecResultU64: ContractExecResultU64;277 ContractInfo: ContractInfo;278 ContractInstantiateResult: ContractInstantiateResult;279 ContractInstantiateResultTo267: ContractInstantiateResultTo267;280 ContractInstantiateResultTo299: ContractInstantiateResultTo299;281 ContractInstantiateResultU64: ContractInstantiateResultU64;282 ContractLayoutArray: ContractLayoutArray;283 ContractLayoutCell: ContractLayoutCell;284 ContractLayoutEnum: ContractLayoutEnum;285 ContractLayoutHash: ContractLayoutHash;286 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;287 ContractLayoutKey: ContractLayoutKey;288 ContractLayoutStruct: ContractLayoutStruct;289 ContractLayoutStructField: ContractLayoutStructField;290 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;291 ContractMessageParamSpecV0: ContractMessageParamSpecV0;292 ContractMessageParamSpecV2: ContractMessageParamSpecV2;293 ContractMessageSpecLatest: ContractMessageSpecLatest;294 ContractMessageSpecV0: ContractMessageSpecV0;295 ContractMessageSpecV1: ContractMessageSpecV1;296 ContractMessageSpecV2: ContractMessageSpecV2;297 ContractMetadata: ContractMetadata;298 ContractMetadataLatest: ContractMetadataLatest;299 ContractMetadataV0: ContractMetadataV0;300 ContractMetadataV1: ContractMetadataV1;301 ContractMetadataV2: ContractMetadataV2;302 ContractMetadataV3: ContractMetadataV3;303 ContractMetadataV4: ContractMetadataV4;304 ContractProject: ContractProject;305 ContractProjectContract: ContractProjectContract;306 ContractProjectInfo: ContractProjectInfo;307 ContractProjectSource: ContractProjectSource;308 ContractProjectV0: ContractProjectV0;309 ContractReturnFlags: ContractReturnFlags;310 ContractSelector: ContractSelector;311 ContractStorageKey: ContractStorageKey;312 ContractStorageLayout: ContractStorageLayout;313 ContractTypeSpec: ContractTypeSpec;314 Conviction: Conviction;315 CoreAssignment: CoreAssignment;316 CoreIndex: CoreIndex;317 CoreOccupied: CoreOccupied;318 CoreState: CoreState;319 CrateVersion: CrateVersion;320 CreatedBlock: CreatedBlock;321 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;322 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;323 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;324 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;325 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;326 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;327 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;328 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;329 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;330 CumulusPalletXcmCall: CumulusPalletXcmCall;331 CumulusPalletXcmError: CumulusPalletXcmError;332 CumulusPalletXcmEvent: CumulusPalletXcmEvent;333 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;334 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;335 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;336 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;337 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;338 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;339 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;340 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;341 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;342 Data: Data;343 DeferredOffenceOf: DeferredOffenceOf;344 DefunctVoter: DefunctVoter;345 DelayKind: DelayKind;346 DelayKindBest: DelayKindBest;347 Delegations: Delegations;348 DeletedContract: DeletedContract;349 DeliveredMessages: DeliveredMessages;350 DepositBalance: DepositBalance;351 DepositBalanceOf: DepositBalanceOf;352 DestroyWitness: DestroyWitness;353 Digest: Digest;354 DigestItem: DigestItem;355 DigestOf: DigestOf;356 DispatchClass: DispatchClass;357 DispatchError: DispatchError;358 DispatchErrorModule: DispatchErrorModule;359 DispatchErrorModulePre6: DispatchErrorModulePre6;360 DispatchErrorModuleU8: DispatchErrorModuleU8;361 DispatchErrorModuleU8a: DispatchErrorModuleU8a;362 DispatchErrorPre6: DispatchErrorPre6;363 DispatchErrorPre6First: DispatchErrorPre6First;364 DispatchErrorTo198: DispatchErrorTo198;365 DispatchFeePayment: DispatchFeePayment;366 DispatchInfo: DispatchInfo;367 DispatchInfoTo190: DispatchInfoTo190;368 DispatchInfoTo244: DispatchInfoTo244;369 DispatchOutcome: DispatchOutcome;370 DispatchOutcomePre6: DispatchOutcomePre6;371 DispatchResult: DispatchResult;372 DispatchResultOf: DispatchResultOf;373 DispatchResultTo198: DispatchResultTo198;374 DisputeLocation: DisputeLocation;375 DisputeResult: DisputeResult;376 DisputeState: DisputeState;377 DisputeStatement: DisputeStatement;378 DisputeStatementSet: DisputeStatementSet;379 DoubleEncodedCall: DoubleEncodedCall;380 DoubleVoteReport: DoubleVoteReport;381 DownwardMessage: DownwardMessage;382 EcdsaSignature: EcdsaSignature;383 Ed25519Signature: Ed25519Signature;384 EIP1559Transaction: EIP1559Transaction;385 EIP2930Transaction: EIP2930Transaction;386 ElectionCompute: ElectionCompute;387 ElectionPhase: ElectionPhase;388 ElectionResult: ElectionResult;389 ElectionScore: ElectionScore;390 ElectionSize: ElectionSize;391 ElectionStatus: ElectionStatus;392 EncodedFinalityProofs: EncodedFinalityProofs;393 EncodedJustification: EncodedJustification;394 Epoch: Epoch;395 EpochAuthorship: EpochAuthorship;396 Era: Era;397 EraIndex: EraIndex;398 EraPoints: EraPoints;399 EraRewardPoints: EraRewardPoints;400 EraRewards: EraRewards;401 ErrorMetadataLatest: ErrorMetadataLatest;402 ErrorMetadataV10: ErrorMetadataV10;403 ErrorMetadataV11: ErrorMetadataV11;404 ErrorMetadataV12: ErrorMetadataV12;405 ErrorMetadataV13: ErrorMetadataV13;406 ErrorMetadataV14: ErrorMetadataV14;407 ErrorMetadataV9: ErrorMetadataV9;408 EthAccessList: EthAccessList;409 EthAccessListItem: EthAccessListItem;410 EthAccount: EthAccount;411 EthAddress: EthAddress;412 EthBlock: EthBlock;413 EthBloom: EthBloom;414 EthbloomBloom: EthbloomBloom;415 EthCallRequest: EthCallRequest;416 EthereumAccountId: EthereumAccountId;417 EthereumAddress: EthereumAddress;418 EthereumBlock: EthereumBlock;419 EthereumHeader: EthereumHeader;420 EthereumLog: EthereumLog;421 EthereumLookupSource: EthereumLookupSource;422 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;423 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;424 EthereumSignature: EthereumSignature;425 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;426 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;427 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;428 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;429 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;430 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;431 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;432 EthereumTypesHashH64: EthereumTypesHashH64;433 EthFeeHistory: EthFeeHistory;434 EthFilter: EthFilter;435 EthFilterAddress: EthFilterAddress;436 EthFilterChanges: EthFilterChanges;437 EthFilterTopic: EthFilterTopic;438 EthFilterTopicEntry: EthFilterTopicEntry;439 EthFilterTopicInner: EthFilterTopicInner;440 EthHeader: EthHeader;441 EthLog: EthLog;442 EthReceipt: EthReceipt;443 EthReceiptV0: EthReceiptV0;444 EthReceiptV3: EthReceiptV3;445 EthRichBlock: EthRichBlock;446 EthRichHeader: EthRichHeader;447 EthStorageProof: EthStorageProof;448 EthSubKind: EthSubKind;449 EthSubParams: EthSubParams;450 EthSubResult: EthSubResult;451 EthSyncInfo: EthSyncInfo;452 EthSyncStatus: EthSyncStatus;453 EthTransaction: EthTransaction;454 EthTransactionAction: EthTransactionAction;455 EthTransactionCondition: EthTransactionCondition;456 EthTransactionRequest: EthTransactionRequest;457 EthTransactionSignature: EthTransactionSignature;458 EthTransactionStatus: EthTransactionStatus;459 EthWork: EthWork;460 Event: Event;461 EventId: EventId;462 EventIndex: EventIndex;463 EventMetadataLatest: EventMetadataLatest;464 EventMetadataV10: EventMetadataV10;465 EventMetadataV11: EventMetadataV11;466 EventMetadataV12: EventMetadataV12;467 EventMetadataV13: EventMetadataV13;468 EventMetadataV14: EventMetadataV14;469 EventMetadataV9: EventMetadataV9;470 EventRecord: EventRecord;471 EvmAccount: EvmAccount;472 EvmCallInfo: EvmCallInfo;473 EvmCoreErrorExitError: EvmCoreErrorExitError;474 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;475 EvmCoreErrorExitReason: EvmCoreErrorExitReason;476 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;477 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;478 EvmCreateInfo: EvmCreateInfo;479 EvmLog: EvmLog;480 EvmVicinity: EvmVicinity;481 ExecReturnValue: ExecReturnValue;482 ExitError: ExitError;483 ExitFatal: ExitFatal;484 ExitReason: ExitReason;485 ExitRevert: ExitRevert;486 ExitSucceed: ExitSucceed;487 ExplicitDisputeStatement: ExplicitDisputeStatement;488 Exposure: Exposure;489 ExtendedBalance: ExtendedBalance;490 Extrinsic: Extrinsic;491 ExtrinsicEra: ExtrinsicEra;492 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;493 ExtrinsicMetadataV11: ExtrinsicMetadataV11;494 ExtrinsicMetadataV12: ExtrinsicMetadataV12;495 ExtrinsicMetadataV13: ExtrinsicMetadataV13;496 ExtrinsicMetadataV14: ExtrinsicMetadataV14;497 ExtrinsicOrHash: ExtrinsicOrHash;498 ExtrinsicPayload: ExtrinsicPayload;499 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;500 ExtrinsicPayloadV4: ExtrinsicPayloadV4;501 ExtrinsicSignature: ExtrinsicSignature;502 ExtrinsicSignatureV4: ExtrinsicSignatureV4;503 ExtrinsicStatus: ExtrinsicStatus;504 ExtrinsicsWeight: ExtrinsicsWeight;505 ExtrinsicUnknown: ExtrinsicUnknown;506 ExtrinsicV4: ExtrinsicV4;507 f32: f32;508 F32: F32;509 f64: f64;510 F64: F64;511 FeeDetails: FeeDetails;512 Fixed128: Fixed128;513 Fixed64: Fixed64;514 FixedI128: FixedI128;515 FixedI64: FixedI64;516 FixedU128: FixedU128;517 FixedU64: FixedU64;518 Forcing: Forcing;519 ForkTreePendingChange: ForkTreePendingChange;520 ForkTreePendingChangeNode: ForkTreePendingChangeNode;521 FpRpcTransactionStatus: FpRpcTransactionStatus;522 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;523 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;524 FrameSupportDispatchPays: FrameSupportDispatchPays;525 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;526 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;527 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;528 FrameSupportPalletId: FrameSupportPalletId;529 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;530 FrameSystemAccountInfo: FrameSystemAccountInfo;531 FrameSystemCall: FrameSystemCall;532 FrameSystemError: FrameSystemError;533 FrameSystemEvent: FrameSystemEvent;534 FrameSystemEventRecord: FrameSystemEventRecord;535 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;536 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;537 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;538 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;539 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;540 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;541 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;542 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;543 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;544 FrameSystemPhase: FrameSystemPhase;545 FullIdentification: FullIdentification;546 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;547 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;548 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;549 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;550 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;551 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;552 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;553 FunctionMetadataLatest: FunctionMetadataLatest;554 FunctionMetadataV10: FunctionMetadataV10;555 FunctionMetadataV11: FunctionMetadataV11;556 FunctionMetadataV12: FunctionMetadataV12;557 FunctionMetadataV13: FunctionMetadataV13;558 FunctionMetadataV14: FunctionMetadataV14;559 FunctionMetadataV9: FunctionMetadataV9;560 FundIndex: FundIndex;561 FundInfo: FundInfo;562 Fungibility: Fungibility;563 FungibilityV0: FungibilityV0;564 FungibilityV1: FungibilityV1;565 FungibilityV2: FungibilityV2;566 Gas: Gas;567 GiltBid: GiltBid;568 GlobalValidationData: GlobalValidationData;569 GlobalValidationSchedule: GlobalValidationSchedule;570 GrandpaCommit: GrandpaCommit;571 GrandpaEquivocation: GrandpaEquivocation;572 GrandpaEquivocationProof: GrandpaEquivocationProof;573 GrandpaEquivocationValue: GrandpaEquivocationValue;574 GrandpaJustification: GrandpaJustification;575 GrandpaPrecommit: GrandpaPrecommit;576 GrandpaPrevote: GrandpaPrevote;577 GrandpaSignedPrecommit: GrandpaSignedPrecommit;578 GroupIndex: GroupIndex;579 GroupRotationInfo: GroupRotationInfo;580 H1024: H1024;581 H128: H128;582 H160: H160;583 H2048: H2048;584 H256: H256;585 H32: H32;586 H512: H512;587 H64: H64;588 Hash: Hash;589 HeadData: HeadData;590 Header: Header;591 HeaderPartial: HeaderPartial;592 Health: Health;593 Heartbeat: Heartbeat;594 HeartbeatTo244: HeartbeatTo244;595 HostConfiguration: HostConfiguration;596 HostFnWeights: HostFnWeights;597 HostFnWeightsTo264: HostFnWeightsTo264;598 HrmpChannel: HrmpChannel;599 HrmpChannelId: HrmpChannelId;600 HrmpOpenChannelRequest: HrmpOpenChannelRequest;601 i128: i128;602 I128: I128;603 i16: i16;604 I16: I16;605 i256: i256;606 I256: I256;607 i32: i32;608 I32: I32;609 I32F32: I32F32;610 i64: i64;611 I64: I64;612 i8: i8;613 I8: I8;614 IdentificationTuple: IdentificationTuple;615 IdentityFields: IdentityFields;616 IdentityInfo: IdentityInfo;617 IdentityInfoAdditional: IdentityInfoAdditional;618 IdentityInfoTo198: IdentityInfoTo198;619 IdentityJudgement: IdentityJudgement;620 ImmortalEra: ImmortalEra;621 ImportedAux: ImportedAux;622 InboundDownwardMessage: InboundDownwardMessage;623 InboundHrmpMessage: InboundHrmpMessage;624 InboundHrmpMessages: InboundHrmpMessages;625 InboundLaneData: InboundLaneData;626 InboundRelayer: InboundRelayer;627 InboundStatus: InboundStatus;628 IncludedBlocks: IncludedBlocks;629 InclusionFee: InclusionFee;630 IncomingParachain: IncomingParachain;631 IncomingParachainDeploy: IncomingParachainDeploy;632 IncomingParachainFixed: IncomingParachainFixed;633 Index: Index;634 IndicesLookupSource: IndicesLookupSource;635 IndividualExposure: IndividualExposure;636 InherentData: InherentData;637 InherentIdentifier: InherentIdentifier;638 InitializationData: InitializationData;639 InstanceDetails: InstanceDetails;640 InstanceId: InstanceId;641 InstanceMetadata: InstanceMetadata;642 InstantiateRequest: InstantiateRequest;643 InstantiateRequestV1: InstantiateRequestV1;644 InstantiateRequestV2: InstantiateRequestV2;645 InstantiateReturnValue: InstantiateReturnValue;646 InstantiateReturnValueOk: InstantiateReturnValueOk;647 InstantiateReturnValueTo267: InstantiateReturnValueTo267;648 InstructionV2: InstructionV2;649 InstructionWeights: InstructionWeights;650 InteriorMultiLocation: InteriorMultiLocation;651 InvalidDisputeStatementKind: InvalidDisputeStatementKind;652 InvalidTransaction: InvalidTransaction;653 Json: Json;654 Junction: Junction;655 Junctions: Junctions;656 JunctionsV1: JunctionsV1;657 JunctionsV2: JunctionsV2;658 JunctionV0: JunctionV0;659 JunctionV1: JunctionV1;660 JunctionV2: JunctionV2;661 Justification: Justification;662 JustificationNotification: JustificationNotification;663 Justifications: Justifications;664 Key: Key;665 KeyOwnerProof: KeyOwnerProof;666 Keys: Keys;667 KeyType: KeyType;668 KeyTypeId: KeyTypeId;669 KeyValue: KeyValue;670 KeyValueOption: KeyValueOption;671 Kind: Kind;672 LaneId: LaneId;673 LastContribution: LastContribution;674 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;675 LeasePeriod: LeasePeriod;676 LeasePeriodOf: LeasePeriodOf;677 LegacyTransaction: LegacyTransaction;678 Limits: Limits;679 LimitsTo264: LimitsTo264;680 LocalValidationData: LocalValidationData;681 LockIdentifier: LockIdentifier;682 LookupSource: LookupSource;683 LookupTarget: LookupTarget;684 LotteryConfig: LotteryConfig;685 MaybeRandomness: MaybeRandomness;686 MaybeVrf: MaybeVrf;687 MemberCount: MemberCount;688 MembershipProof: MembershipProof;689 MessageData: MessageData;690 MessageId: MessageId;691 MessageIngestionType: MessageIngestionType;692 MessageKey: MessageKey;693 MessageNonce: MessageNonce;694 MessageQueueChain: MessageQueueChain;695 MessagesDeliveryProofOf: MessagesDeliveryProofOf;696 MessagesProofOf: MessagesProofOf;697 MessagingStateSnapshot: MessagingStateSnapshot;698 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;699 MetadataAll: MetadataAll;700 MetadataLatest: MetadataLatest;701 MetadataV10: MetadataV10;702 MetadataV11: MetadataV11;703 MetadataV12: MetadataV12;704 MetadataV13: MetadataV13;705 MetadataV14: MetadataV14;706 MetadataV9: MetadataV9;707 MigrationStatusResult: MigrationStatusResult;708 MmrBatchProof: MmrBatchProof;709 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;710 MmrError: MmrError;711 MmrLeafBatchProof: MmrLeafBatchProof;712 MmrLeafIndex: MmrLeafIndex;713 MmrLeafProof: MmrLeafProof;714 MmrNodeIndex: MmrNodeIndex;715 MmrProof: MmrProof;716 MmrRootHash: MmrRootHash;717 ModuleConstantMetadataV10: ModuleConstantMetadataV10;718 ModuleConstantMetadataV11: ModuleConstantMetadataV11;719 ModuleConstantMetadataV12: ModuleConstantMetadataV12;720 ModuleConstantMetadataV13: ModuleConstantMetadataV13;721 ModuleConstantMetadataV9: ModuleConstantMetadataV9;722 ModuleId: ModuleId;723 ModuleMetadataV10: ModuleMetadataV10;724 ModuleMetadataV11: ModuleMetadataV11;725 ModuleMetadataV12: ModuleMetadataV12;726 ModuleMetadataV13: ModuleMetadataV13;727 ModuleMetadataV9: ModuleMetadataV9;728 Moment: Moment;729 MomentOf: MomentOf;730 MoreAttestations: MoreAttestations;731 MortalEra: MortalEra;732 MultiAddress: MultiAddress;733 MultiAsset: MultiAsset;734 MultiAssetFilter: MultiAssetFilter;735 MultiAssetFilterV1: MultiAssetFilterV1;736 MultiAssetFilterV2: MultiAssetFilterV2;737 MultiAssets: MultiAssets;738 MultiAssetsV1: MultiAssetsV1;739 MultiAssetsV2: MultiAssetsV2;740 MultiAssetV0: MultiAssetV0;741 MultiAssetV1: MultiAssetV1;742 MultiAssetV2: MultiAssetV2;743 MultiDisputeStatementSet: MultiDisputeStatementSet;744 MultiLocation: MultiLocation;745 MultiLocationV0: MultiLocationV0;746 MultiLocationV1: MultiLocationV1;747 MultiLocationV2: MultiLocationV2;748 Multiplier: Multiplier;749 Multisig: Multisig;750 MultiSignature: MultiSignature;751 MultiSigner: MultiSigner;752 NetworkId: NetworkId;753 NetworkState: NetworkState;754 NetworkStatePeerset: NetworkStatePeerset;755 NetworkStatePeersetInfo: NetworkStatePeersetInfo;756 NewBidder: NewBidder;757 NextAuthority: NextAuthority;758 NextConfigDescriptor: NextConfigDescriptor;759 NextConfigDescriptorV1: NextConfigDescriptorV1;760 NodeRole: NodeRole;761 Nominations: Nominations;762 NominatorIndex: NominatorIndex;763 NominatorIndexCompact: NominatorIndexCompact;764 NotConnectedPeer: NotConnectedPeer;765 NpApiError: NpApiError;766 Null: Null;767 OccupiedCore: OccupiedCore;768 OccupiedCoreAssumption: OccupiedCoreAssumption;769 OffchainAccuracy: OffchainAccuracy;770 OffchainAccuracyCompact: OffchainAccuracyCompact;771 OffenceDetails: OffenceDetails;772 Offender: Offender;773 OldV1SessionInfo: OldV1SessionInfo;774 OpalRuntimeRuntime: OpalRuntimeRuntime;775 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;776 OpaqueCall: OpaqueCall;777 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;778 OpaqueMetadata: OpaqueMetadata;779 OpaqueMultiaddr: OpaqueMultiaddr;780 OpaqueNetworkState: OpaqueNetworkState;781 OpaquePeerId: OpaquePeerId;782 OpaqueTimeSlot: OpaqueTimeSlot;783 OpenTip: OpenTip;784 OpenTipFinderTo225: OpenTipFinderTo225;785 OpenTipTip: OpenTipTip;786 OpenTipTo225: OpenTipTo225;787 OperatingMode: OperatingMode;788 OptionBool: OptionBool;789 Origin: Origin;790 OriginCaller: OriginCaller;791 OriginKindV0: OriginKindV0;792 OriginKindV1: OriginKindV1;793 OriginKindV2: OriginKindV2;794 OrmlTokensAccountData: OrmlTokensAccountData;795 OrmlTokensBalanceLock: OrmlTokensBalanceLock;796 OrmlTokensModuleCall: OrmlTokensModuleCall;797 OrmlTokensModuleError: OrmlTokensModuleError;798 OrmlTokensModuleEvent: OrmlTokensModuleEvent;799 OrmlTokensReserveData: OrmlTokensReserveData;800 OrmlVestingModuleCall: OrmlVestingModuleCall;801 OrmlVestingModuleError: OrmlVestingModuleError;802 OrmlVestingModuleEvent: OrmlVestingModuleEvent;803 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;804 OrmlXtokensModuleCall: OrmlXtokensModuleCall;805 OrmlXtokensModuleError: OrmlXtokensModuleError;806 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;807 OutboundHrmpMessage: OutboundHrmpMessage;808 OutboundLaneData: OutboundLaneData;809 OutboundMessageFee: OutboundMessageFee;810 OutboundPayload: OutboundPayload;811 OutboundStatus: OutboundStatus;812 Outcome: Outcome;813 OverweightIndex: OverweightIndex;814 Owner: Owner;815 PageCounter: PageCounter;816 PageIndexData: PageIndexData;817 PalletAppPromotionCall: PalletAppPromotionCall;818 PalletAppPromotionError: PalletAppPromotionError;819 PalletAppPromotionEvent: PalletAppPromotionEvent;820 PalletBalancesAccountData: PalletBalancesAccountData;821 PalletBalancesBalanceLock: PalletBalancesBalanceLock;822 PalletBalancesCall: PalletBalancesCall;823 PalletBalancesError: PalletBalancesError;824 PalletBalancesEvent: PalletBalancesEvent;825 PalletBalancesReasons: PalletBalancesReasons;826 PalletBalancesReserveData: PalletBalancesReserveData;827 PalletCallMetadataLatest: PalletCallMetadataLatest;828 PalletCallMetadataV14: PalletCallMetadataV14;829 PalletCommonError: PalletCommonError;830 PalletCommonEvent: PalletCommonEvent;831 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;832 PalletConfigurationCall: PalletConfigurationCall;833 PalletConfigurationError: PalletConfigurationError;834 PalletConstantMetadataLatest: PalletConstantMetadataLatest;835 PalletConstantMetadataV14: PalletConstantMetadataV14;836 PalletErrorMetadataLatest: PalletErrorMetadataLatest;837 PalletErrorMetadataV14: PalletErrorMetadataV14;838 PalletEthereumCall: PalletEthereumCall;839 PalletEthereumError: PalletEthereumError;840 PalletEthereumEvent: PalletEthereumEvent;841 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;842 PalletEventMetadataLatest: PalletEventMetadataLatest;843 PalletEventMetadataV14: PalletEventMetadataV14;844 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;845 PalletEvmCall: PalletEvmCall;846 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;847 PalletEvmContractHelpersError: PalletEvmContractHelpersError;848 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;849 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;850 PalletEvmError: PalletEvmError;851 PalletEvmEvent: PalletEvmEvent;852 PalletEvmMigrationCall: PalletEvmMigrationCall;853 PalletEvmMigrationError: PalletEvmMigrationError;854 PalletEvmMigrationEvent: PalletEvmMigrationEvent;855 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;856 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;857 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;858 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;859 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;860 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;861 PalletFungibleError: PalletFungibleError;862 PalletId: PalletId;863 PalletInflationCall: PalletInflationCall;864 PalletMaintenanceCall: PalletMaintenanceCall;865 PalletMaintenanceError: PalletMaintenanceError;866 PalletMaintenanceEvent: PalletMaintenanceEvent;867 PalletMetadataLatest: PalletMetadataLatest;868 PalletMetadataV14: PalletMetadataV14;869 PalletNonfungibleError: PalletNonfungibleError;870 PalletNonfungibleItemData: PalletNonfungibleItemData;871 PalletRefungibleError: PalletRefungibleError;872 PalletRefungibleItemData: PalletRefungibleItemData;873 PalletRmrkCoreCall: PalletRmrkCoreCall;874 PalletRmrkCoreError: PalletRmrkCoreError;875 PalletRmrkCoreEvent: PalletRmrkCoreEvent;876 PalletRmrkEquipCall: PalletRmrkEquipCall;877 PalletRmrkEquipError: PalletRmrkEquipError;878 PalletRmrkEquipEvent: PalletRmrkEquipEvent;879 PalletsOrigin: PalletsOrigin;880 PalletStorageMetadataLatest: PalletStorageMetadataLatest;881 PalletStorageMetadataV14: PalletStorageMetadataV14;882 PalletStructureCall: PalletStructureCall;883 PalletStructureError: PalletStructureError;884 PalletStructureEvent: PalletStructureEvent;885 PalletSudoCall: PalletSudoCall;886 PalletSudoError: PalletSudoError;887 PalletSudoEvent: PalletSudoEvent;888 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;889 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;890 PalletTestUtilsCall: PalletTestUtilsCall;891 PalletTestUtilsError: PalletTestUtilsError;892 PalletTestUtilsEvent: PalletTestUtilsEvent;893 PalletTimestampCall: PalletTimestampCall;894 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;895 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;896 PalletTreasuryCall: PalletTreasuryCall;897 PalletTreasuryError: PalletTreasuryError;898 PalletTreasuryEvent: PalletTreasuryEvent;899 PalletTreasuryProposal: PalletTreasuryProposal;900 PalletUniqueCall: PalletUniqueCall;901 PalletUniqueError: PalletUniqueError;902 PalletVersion: PalletVersion;903 PalletXcmCall: PalletXcmCall;904 PalletXcmError: PalletXcmError;905 PalletXcmEvent: PalletXcmEvent;906 ParachainDispatchOrigin: ParachainDispatchOrigin;907 ParachainInherentData: ParachainInherentData;908 ParachainProposal: ParachainProposal;909 ParachainsInherentData: ParachainsInherentData;910 ParaGenesisArgs: ParaGenesisArgs;911 ParaId: ParaId;912 ParaInfo: ParaInfo;913 ParaLifecycle: ParaLifecycle;914 Parameter: Parameter;915 ParaPastCodeMeta: ParaPastCodeMeta;916 ParaScheduling: ParaScheduling;917 ParathreadClaim: ParathreadClaim;918 ParathreadClaimQueue: ParathreadClaimQueue;919 ParathreadEntry: ParathreadEntry;920 ParaValidatorIndex: ParaValidatorIndex;921 Pays: Pays;922 Peer: Peer;923 PeerEndpoint: PeerEndpoint;924 PeerEndpointAddr: PeerEndpointAddr;925 PeerInfo: PeerInfo;926 PeerPing: PeerPing;927 PendingChange: PendingChange;928 PendingPause: PendingPause;929 PendingResume: PendingResume;930 Perbill: Perbill;931 Percent: Percent;932 PerDispatchClassU32: PerDispatchClassU32;933 PerDispatchClassWeight: PerDispatchClassWeight;934 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;935 Period: Period;936 Permill: Permill;937 PermissionLatest: PermissionLatest;938 PermissionsV1: PermissionsV1;939 PermissionVersions: PermissionVersions;940 Perquintill: Perquintill;941 PersistedValidationData: PersistedValidationData;942 PerU16: PerU16;943 Phantom: Phantom;944 PhantomData: PhantomData;945 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;946 Phase: Phase;947 PhragmenScore: PhragmenScore;948 Points: Points;949 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;950 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;951 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;952 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;953 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;954 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;955 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;956 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;957 PortableType: PortableType;958 PortableTypeV14: PortableTypeV14;959 Precommits: Precommits;960 PrefabWasmModule: PrefabWasmModule;961 PrefixedStorageKey: PrefixedStorageKey;962 PreimageStatus: PreimageStatus;963 PreimageStatusAvailable: PreimageStatusAvailable;964 PreRuntime: PreRuntime;965 Prevotes: Prevotes;966 Priority: Priority;967 PriorLock: PriorLock;968 PropIndex: PropIndex;969 Proposal: Proposal;970 ProposalIndex: ProposalIndex;971 ProxyAnnouncement: ProxyAnnouncement;972 ProxyDefinition: ProxyDefinition;973 ProxyState: ProxyState;974 ProxyType: ProxyType;975 PvfCheckStatement: PvfCheckStatement;976 QueryId: QueryId;977 QueryStatus: QueryStatus;978 QueueConfigData: QueueConfigData;979 QueuedParathread: QueuedParathread;980 Randomness: Randomness;981 Raw: Raw;982 RawAuraPreDigest: RawAuraPreDigest;983 RawBabePreDigest: RawBabePreDigest;984 RawBabePreDigestCompat: RawBabePreDigestCompat;985 RawBabePreDigestPrimary: RawBabePreDigestPrimary;986 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;987 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;988 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;989 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;990 RawBabePreDigestTo159: RawBabePreDigestTo159;991 RawOrigin: RawOrigin;992 RawSolution: RawSolution;993 RawSolutionTo265: RawSolutionTo265;994 RawSolutionWith16: RawSolutionWith16;995 RawSolutionWith24: RawSolutionWith24;996 RawVRFOutput: RawVRFOutput;997 ReadProof: ReadProof;998 ReadySolution: ReadySolution;999 Reasons: Reasons;1000 RecoveryConfig: RecoveryConfig;1001 RefCount: RefCount;1002 RefCountTo259: RefCountTo259;1003 ReferendumIndex: ReferendumIndex;1004 ReferendumInfo: ReferendumInfo;1005 ReferendumInfoFinished: ReferendumInfoFinished;1006 ReferendumInfoTo239: ReferendumInfoTo239;1007 ReferendumStatus: ReferendumStatus;1008 RegisteredParachainInfo: RegisteredParachainInfo;1009 RegistrarIndex: RegistrarIndex;1010 RegistrarInfo: RegistrarInfo;1011 Registration: Registration;1012 RegistrationJudgement: RegistrationJudgement;1013 RegistrationTo198: RegistrationTo198;1014 RelayBlockNumber: RelayBlockNumber;1015 RelayChainBlockNumber: RelayChainBlockNumber;1016 RelayChainHash: RelayChainHash;1017 RelayerId: RelayerId;1018 RelayHash: RelayHash;1019 Releases: Releases;1020 Remark: Remark;1021 Renouncing: Renouncing;1022 RentProjection: RentProjection;1023 ReplacementTimes: ReplacementTimes;1024 ReportedRoundStates: ReportedRoundStates;1025 Reporter: Reporter;1026 ReportIdOf: ReportIdOf;1027 ReserveData: ReserveData;1028 ReserveIdentifier: ReserveIdentifier;1029 Response: Response;1030 ResponseV0: ResponseV0;1031 ResponseV1: ResponseV1;1032 ResponseV2: ResponseV2;1033 ResponseV2Error: ResponseV2Error;1034 ResponseV2Result: ResponseV2Result;1035 Retriable: Retriable;1036 RewardDestination: RewardDestination;1037 RewardPoint: RewardPoint;1038 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1039 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1040 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1041 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1042 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1043 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1044 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1045 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1046 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1047 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1048 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1049 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1050 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1051 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1052 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1053 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1054 RmrkTraitsTheme: RmrkTraitsTheme;1055 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1056 RoundSnapshot: RoundSnapshot;1057 RoundState: RoundState;1058 RpcMethods: RpcMethods;1059 RuntimeDbWeight: RuntimeDbWeight;1060 RuntimeDispatchInfo: RuntimeDispatchInfo;1061 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1062 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1063 RuntimeVersion: RuntimeVersion;1064 RuntimeVersionApi: RuntimeVersionApi;1065 RuntimeVersionPartial: RuntimeVersionPartial;1066 RuntimeVersionPre3: RuntimeVersionPre3;1067 RuntimeVersionPre4: RuntimeVersionPre4;1068 Schedule: Schedule;1069 Scheduled: Scheduled;1070 ScheduledCore: ScheduledCore;1071 ScheduledTo254: ScheduledTo254;1072 SchedulePeriod: SchedulePeriod;1073 SchedulePriority: SchedulePriority;1074 ScheduleTo212: ScheduleTo212;1075 ScheduleTo258: ScheduleTo258;1076 ScheduleTo264: ScheduleTo264;1077 Scheduling: Scheduling;1078 ScrapedOnChainVotes: ScrapedOnChainVotes;1079 Seal: Seal;1080 SealV0: SealV0;1081 SeatHolder: SeatHolder;1082 SeedOf: SeedOf;1083 ServiceQuality: ServiceQuality;1084 SessionIndex: SessionIndex;1085 SessionInfo: SessionInfo;1086 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1087 SessionKeys1: SessionKeys1;1088 SessionKeys10: SessionKeys10;1089 SessionKeys10B: SessionKeys10B;1090 SessionKeys2: SessionKeys2;1091 SessionKeys3: SessionKeys3;1092 SessionKeys4: SessionKeys4;1093 SessionKeys5: SessionKeys5;1094 SessionKeys6: SessionKeys6;1095 SessionKeys6B: SessionKeys6B;1096 SessionKeys7: SessionKeys7;1097 SessionKeys7B: SessionKeys7B;1098 SessionKeys8: SessionKeys8;1099 SessionKeys8B: SessionKeys8B;1100 SessionKeys9: SessionKeys9;1101 SessionKeys9B: SessionKeys9B;1102 SetId: SetId;1103 SetIndex: SetIndex;1104 Si0Field: Si0Field;1105 Si0LookupTypeId: Si0LookupTypeId;1106 Si0Path: Si0Path;1107 Si0Type: Si0Type;1108 Si0TypeDef: Si0TypeDef;1109 Si0TypeDefArray: Si0TypeDefArray;1110 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1111 Si0TypeDefCompact: Si0TypeDefCompact;1112 Si0TypeDefComposite: Si0TypeDefComposite;1113 Si0TypeDefPhantom: Si0TypeDefPhantom;1114 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1115 Si0TypeDefSequence: Si0TypeDefSequence;1116 Si0TypeDefTuple: Si0TypeDefTuple;1117 Si0TypeDefVariant: Si0TypeDefVariant;1118 Si0TypeParameter: Si0TypeParameter;1119 Si0Variant: Si0Variant;1120 Si1Field: Si1Field;1121 Si1LookupTypeId: Si1LookupTypeId;1122 Si1Path: Si1Path;1123 Si1Type: Si1Type;1124 Si1TypeDef: Si1TypeDef;1125 Si1TypeDefArray: Si1TypeDefArray;1126 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1127 Si1TypeDefCompact: Si1TypeDefCompact;1128 Si1TypeDefComposite: Si1TypeDefComposite;1129 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1130 Si1TypeDefSequence: Si1TypeDefSequence;1131 Si1TypeDefTuple: Si1TypeDefTuple;1132 Si1TypeDefVariant: Si1TypeDefVariant;1133 Si1TypeParameter: Si1TypeParameter;1134 Si1Variant: Si1Variant;1135 SiField: SiField;1136 Signature: Signature;1137 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1138 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1139 SignedBlock: SignedBlock;1140 SignedBlockWithJustification: SignedBlockWithJustification;1141 SignedBlockWithJustifications: SignedBlockWithJustifications;1142 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1143 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1144 SignedSubmission: SignedSubmission;1145 SignedSubmissionOf: SignedSubmissionOf;1146 SignedSubmissionTo276: SignedSubmissionTo276;1147 SignerPayload: SignerPayload;1148 SigningContext: SigningContext;1149 SiLookupTypeId: SiLookupTypeId;1150 SiPath: SiPath;1151 SiType: SiType;1152 SiTypeDef: SiTypeDef;1153 SiTypeDefArray: SiTypeDefArray;1154 SiTypeDefBitSequence: SiTypeDefBitSequence;1155 SiTypeDefCompact: SiTypeDefCompact;1156 SiTypeDefComposite: SiTypeDefComposite;1157 SiTypeDefPrimitive: SiTypeDefPrimitive;1158 SiTypeDefSequence: SiTypeDefSequence;1159 SiTypeDefTuple: SiTypeDefTuple;1160 SiTypeDefVariant: SiTypeDefVariant;1161 SiTypeParameter: SiTypeParameter;1162 SiVariant: SiVariant;1163 SlashingSpans: SlashingSpans;1164 SlashingSpansTo204: SlashingSpansTo204;1165 SlashJournalEntry: SlashJournalEntry;1166 Slot: Slot;1167 SlotDuration: SlotDuration;1168 SlotNumber: SlotNumber;1169 SlotRange: SlotRange;1170 SlotRange10: SlotRange10;1171 SocietyJudgement: SocietyJudgement;1172 SocietyVote: SocietyVote;1173 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1174 SolutionSupport: SolutionSupport;1175 SolutionSupports: SolutionSupports;1176 SpanIndex: SpanIndex;1177 SpanRecord: SpanRecord;1178 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1179 SpCoreEd25519Signature: SpCoreEd25519Signature;1180 SpCoreSr25519Signature: SpCoreSr25519Signature;1181 SpecVersion: SpecVersion;1182 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1183 SpRuntimeDigest: SpRuntimeDigest;1184 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1185 SpRuntimeDispatchError: SpRuntimeDispatchError;1186 SpRuntimeModuleError: SpRuntimeModuleError;1187 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1188 SpRuntimeTokenError: SpRuntimeTokenError;1189 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1190 SpTrieStorageProof: SpTrieStorageProof;1191 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1192 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1193 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1194 Sr25519Signature: Sr25519Signature;1195 StakingLedger: StakingLedger;1196 StakingLedgerTo223: StakingLedgerTo223;1197 StakingLedgerTo240: StakingLedgerTo240;1198 Statement: Statement;1199 StatementKind: StatementKind;1200 StorageChangeSet: StorageChangeSet;1201 StorageData: StorageData;1202 StorageDeposit: StorageDeposit;1203 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1204 StorageEntryMetadataV10: StorageEntryMetadataV10;1205 StorageEntryMetadataV11: StorageEntryMetadataV11;1206 StorageEntryMetadataV12: StorageEntryMetadataV12;1207 StorageEntryMetadataV13: StorageEntryMetadataV13;1208 StorageEntryMetadataV14: StorageEntryMetadataV14;1209 StorageEntryMetadataV9: StorageEntryMetadataV9;1210 StorageEntryModifierLatest: StorageEntryModifierLatest;1211 StorageEntryModifierV10: StorageEntryModifierV10;1212 StorageEntryModifierV11: StorageEntryModifierV11;1213 StorageEntryModifierV12: StorageEntryModifierV12;1214 StorageEntryModifierV13: StorageEntryModifierV13;1215 StorageEntryModifierV14: StorageEntryModifierV14;1216 StorageEntryModifierV9: StorageEntryModifierV9;1217 StorageEntryTypeLatest: StorageEntryTypeLatest;1218 StorageEntryTypeV10: StorageEntryTypeV10;1219 StorageEntryTypeV11: StorageEntryTypeV11;1220 StorageEntryTypeV12: StorageEntryTypeV12;1221 StorageEntryTypeV13: StorageEntryTypeV13;1222 StorageEntryTypeV14: StorageEntryTypeV14;1223 StorageEntryTypeV9: StorageEntryTypeV9;1224 StorageHasher: StorageHasher;1225 StorageHasherV10: StorageHasherV10;1226 StorageHasherV11: StorageHasherV11;1227 StorageHasherV12: StorageHasherV12;1228 StorageHasherV13: StorageHasherV13;1229 StorageHasherV14: StorageHasherV14;1230 StorageHasherV9: StorageHasherV9;1231 StorageInfo: StorageInfo;1232 StorageKey: StorageKey;1233 StorageKind: StorageKind;1234 StorageMetadataV10: StorageMetadataV10;1235 StorageMetadataV11: StorageMetadataV11;1236 StorageMetadataV12: StorageMetadataV12;1237 StorageMetadataV13: StorageMetadataV13;1238 StorageMetadataV9: StorageMetadataV9;1239 StorageProof: StorageProof;1240 StoredPendingChange: StoredPendingChange;1241 StoredState: StoredState;1242 StrikeCount: StrikeCount;1243 SubId: SubId;1244 SubmissionIndicesOf: SubmissionIndicesOf;1245 Supports: Supports;1246 SyncState: SyncState;1247 SystemInherentData: SystemInherentData;1248 SystemOrigin: SystemOrigin;1249 Tally: Tally;1250 TaskAddress: TaskAddress;1251 TAssetBalance: TAssetBalance;1252 TAssetDepositBalance: TAssetDepositBalance;1253 Text: Text;1254 Timepoint: Timepoint;1255 TokenError: TokenError;1256 TombstoneContractInfo: TombstoneContractInfo;1257 TraceBlockResponse: TraceBlockResponse;1258 TraceError: TraceError;1259 TransactionalError: TransactionalError;1260 TransactionInfo: TransactionInfo;1261 TransactionLongevity: TransactionLongevity;1262 TransactionPriority: TransactionPriority;1263 TransactionSource: TransactionSource;1264 TransactionStorageProof: TransactionStorageProof;1265 TransactionTag: TransactionTag;1266 TransactionV0: TransactionV0;1267 TransactionV1: TransactionV1;1268 TransactionV2: TransactionV2;1269 TransactionValidity: TransactionValidity;1270 TransactionValidityError: TransactionValidityError;1271 TransientValidationData: TransientValidationData;1272 TreasuryProposal: TreasuryProposal;1273 TrieId: TrieId;1274 TrieIndex: TrieIndex;1275 Type: Type;1276 u128: u128;1277 U128: U128;1278 u16: u16;1279 U16: U16;1280 u256: u256;1281 U256: U256;1282 u32: u32;1283 U32: U32;1284 U32F32: U32F32;1285 u64: u64;1286 U64: U64;1287 u8: u8;1288 U8: U8;1289 UnappliedSlash: UnappliedSlash;1290 UnappliedSlashOther: UnappliedSlashOther;1291 UncleEntryItem: UncleEntryItem;1292 UnknownTransaction: UnknownTransaction;1293 UnlockChunk: UnlockChunk;1294 UnrewardedRelayer: UnrewardedRelayer;1295 UnrewardedRelayersState: UnrewardedRelayersState;1296 UpDataStructsAccessMode: UpDataStructsAccessMode;1297 UpDataStructsCollection: UpDataStructsCollection;1298 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1299 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1300 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1301 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1302 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1303 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1304 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1305 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1306 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1307 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1308 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1309 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1310 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1311 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1312 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1313 UpDataStructsProperties: UpDataStructsProperties;1314 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1315 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1316 UpDataStructsProperty: UpDataStructsProperty;1317 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1318 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1319 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1320 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1321 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1322 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1323 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1324 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1325 UpDataStructsTokenChild: UpDataStructsTokenChild;1326 UpDataStructsTokenData: UpDataStructsTokenData;1327 UpgradeGoAhead: UpgradeGoAhead;1328 UpgradeRestriction: UpgradeRestriction;1329 UpwardMessage: UpwardMessage;1330 usize: usize;1331 USize: USize;1332 ValidationCode: ValidationCode;1333 ValidationCodeHash: ValidationCodeHash;1334 ValidationData: ValidationData;1335 ValidationDataType: ValidationDataType;1336 ValidationFunctionParams: ValidationFunctionParams;1337 ValidatorCount: ValidatorCount;1338 ValidatorId: ValidatorId;1339 ValidatorIdOf: ValidatorIdOf;1340 ValidatorIndex: ValidatorIndex;1341 ValidatorIndexCompact: ValidatorIndexCompact;1342 ValidatorPrefs: ValidatorPrefs;1343 ValidatorPrefsTo145: ValidatorPrefsTo145;1344 ValidatorPrefsTo196: ValidatorPrefsTo196;1345 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1346 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1347 ValidatorSet: ValidatorSet;1348 ValidatorSetId: ValidatorSetId;1349 ValidatorSignature: ValidatorSignature;1350 ValidDisputeStatementKind: ValidDisputeStatementKind;1351 ValidityAttestation: ValidityAttestation;1352 ValidTransaction: ValidTransaction;1353 VecInboundHrmpMessage: VecInboundHrmpMessage;1354 VersionedMultiAsset: VersionedMultiAsset;1355 VersionedMultiAssets: VersionedMultiAssets;1356 VersionedMultiLocation: VersionedMultiLocation;1357 VersionedResponse: VersionedResponse;1358 VersionedXcm: VersionedXcm;1359 VersionMigrationStage: VersionMigrationStage;1360 VestingInfo: VestingInfo;1361 VestingSchedule: VestingSchedule;1362 Vote: Vote;1363 VoteIndex: VoteIndex;1364 Voter: Voter;1365 VoterInfo: VoterInfo;1366 Votes: Votes;1367 VotesTo230: VotesTo230;1368 VoteThreshold: VoteThreshold;1369 VoteWeight: VoteWeight;1370 Voting: Voting;1371 VotingDelegating: VotingDelegating;1372 VotingDirect: VotingDirect;1373 VotingDirectVote: VotingDirectVote;1374 VouchingStatus: VouchingStatus;1375 VrfData: VrfData;1376 VrfOutput: VrfOutput;1377 VrfProof: VrfProof;1378 Weight: Weight;1379 WeightLimitV2: WeightLimitV2;1380 WeightMultiplier: WeightMultiplier;1381 WeightPerClass: WeightPerClass;1382 WeightToFeeCoefficient: WeightToFeeCoefficient;1383 WeightV1: WeightV1;1384 WeightV2: WeightV2;1385 WildFungibility: WildFungibility;1386 WildFungibilityV0: WildFungibilityV0;1387 WildFungibilityV1: WildFungibilityV1;1388 WildFungibilityV2: WildFungibilityV2;1389 WildMultiAsset: WildMultiAsset;1390 WildMultiAssetV1: WildMultiAssetV1;1391 WildMultiAssetV2: WildMultiAssetV2;1392 WinnersData: WinnersData;1393 WinnersData10: WinnersData10;1394 WinnersDataTuple: WinnersDataTuple;1395 WinnersDataTuple10: WinnersDataTuple10;1396 WinningData: WinningData;1397 WinningData10: WinningData10;1398 WinningDataEntry: WinningDataEntry;1399 WithdrawReasons: WithdrawReasons;1400 Xcm: Xcm;1401 XcmAssetId: XcmAssetId;1402 XcmDoubleEncoded: XcmDoubleEncoded;1403 XcmError: XcmError;1404 XcmErrorV0: XcmErrorV0;1405 XcmErrorV1: XcmErrorV1;1406 XcmErrorV2: XcmErrorV2;1407 XcmOrder: XcmOrder;1408 XcmOrderV0: XcmOrderV0;1409 XcmOrderV1: XcmOrderV1;1410 XcmOrderV2: XcmOrderV2;1411 XcmOrigin: XcmOrigin;1412 XcmOriginKind: XcmOriginKind;1413 XcmpMessageFormat: XcmpMessageFormat;1414 XcmV0: XcmV0;1415 XcmV0Junction: XcmV0Junction;1416 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1417 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1418 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1419 XcmV0MultiAsset: XcmV0MultiAsset;1420 XcmV0MultiLocation: XcmV0MultiLocation;1421 XcmV0Order: XcmV0Order;1422 XcmV0OriginKind: XcmV0OriginKind;1423 XcmV0Response: XcmV0Response;1424 XcmV0Xcm: XcmV0Xcm;1425 XcmV1: XcmV1;1426 XcmV1Junction: XcmV1Junction;1427 XcmV1MultiAsset: XcmV1MultiAsset;1428 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1429 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1430 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1431 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1432 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1433 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1434 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1435 XcmV1MultiLocation: XcmV1MultiLocation;1436 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1437 XcmV1Order: XcmV1Order;1438 XcmV1Response: XcmV1Response;1439 XcmV1Xcm: XcmV1Xcm;1440 XcmV2: XcmV2;1441 XcmV2Instruction: XcmV2Instruction;1442 XcmV2Response: XcmV2Response;1443 XcmV2TraitsError: XcmV2TraitsError;1444 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1445 XcmV2WeightLimit: XcmV2WeightLimit;1446 XcmV2Xcm: XcmV2Xcm;1447 XcmVersion: XcmVersion;1448 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1449 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1450 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1451 XcmVersionedXcm: XcmVersionedXcm;1452 } // InterfaceTypes1453} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import 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';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, 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';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import 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';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import 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';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import 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, OpaqueMetadata, 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';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import 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';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, 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';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import 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';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountId33: AccountId33;83 AccountIdOf: AccountIdOf;84 AccountIndex: AccountIndex;85 AccountInfo: AccountInfo;86 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87 AccountInfoWithProviders: AccountInfoWithProviders;88 AccountInfoWithRefCount: AccountInfoWithRefCount;89 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91 AccountStatus: AccountStatus;92 AccountValidity: AccountValidity;93 AccountVote: AccountVote;94 AccountVoteSplit: AccountVoteSplit;95 AccountVoteStandard: AccountVoteStandard;96 ActiveEraInfo: ActiveEraInfo;97 ActiveGilt: ActiveGilt;98 ActiveGiltsTotal: ActiveGiltsTotal;99 ActiveIndex: ActiveIndex;100 ActiveRecovery: ActiveRecovery;101 Address: Address;102 AliveContractInfo: AliveContractInfo;103 AllowedSlots: AllowedSlots;104 AnySignature: AnySignature;105 ApiId: ApiId;106 ApplyExtrinsicResult: ApplyExtrinsicResult;107 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108 ApprovalFlag: ApprovalFlag;109 Approvals: Approvals;110 ArithmeticError: ArithmeticError;111 AssetApproval: AssetApproval;112 AssetApprovalKey: AssetApprovalKey;113 AssetBalance: AssetBalance;114 AssetDestroyWitness: AssetDestroyWitness;115 AssetDetails: AssetDetails;116 AssetId: AssetId;117 AssetInstance: AssetInstance;118 AssetInstanceV0: AssetInstanceV0;119 AssetInstanceV1: AssetInstanceV1;120 AssetInstanceV2: AssetInstanceV2;121 AssetMetadata: AssetMetadata;122 AssetOptions: AssetOptions;123 AssignmentId: AssignmentId;124 AssignmentKind: AssignmentKind;125 AttestedCandidate: AttestedCandidate;126 AuctionIndex: AuctionIndex;127 AuthIndex: AuthIndex;128 AuthorityDiscoveryId: AuthorityDiscoveryId;129 AuthorityId: AuthorityId;130 AuthorityIndex: AuthorityIndex;131 AuthorityList: AuthorityList;132 AuthoritySet: AuthoritySet;133 AuthoritySetChange: AuthoritySetChange;134 AuthoritySetChanges: AuthoritySetChanges;135 AuthoritySignature: AuthoritySignature;136 AuthorityWeight: AuthorityWeight;137 AvailabilityBitfield: AvailabilityBitfield;138 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139 BabeAuthorityWeight: BabeAuthorityWeight;140 BabeBlockWeight: BabeBlockWeight;141 BabeEpochConfiguration: BabeEpochConfiguration;142 BabeEquivocationProof: BabeEquivocationProof;143 BabeGenesisConfiguration: BabeGenesisConfiguration;144 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145 BabeWeight: BabeWeight;146 BackedCandidate: BackedCandidate;147 Balance: Balance;148 BalanceLock: BalanceLock;149 BalanceLockTo212: BalanceLockTo212;150 BalanceOf: BalanceOf;151 BalanceStatus: BalanceStatus;152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyCommitment: BeefyCommitment;154 BeefyId: BeefyId;155 BeefyKey: BeefyKey;156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;157 BeefyPayload: BeefyPayload;158 BeefyPayloadId: BeefyPayloadId;159 BeefySignedCommitment: BeefySignedCommitment;160 BenchmarkBatch: BenchmarkBatch;161 BenchmarkConfig: BenchmarkConfig;162 BenchmarkList: BenchmarkList;163 BenchmarkMetadata: BenchmarkMetadata;164 BenchmarkParameter: BenchmarkParameter;165 BenchmarkResult: BenchmarkResult;166 Bid: Bid;167 Bidder: Bidder;168 BidKind: BidKind;169 BitVec: BitVec;170 Block: Block;171 BlockAttestations: BlockAttestations;172 BlockHash: BlockHash;173 BlockLength: BlockLength;174 BlockNumber: BlockNumber;175 BlockNumberFor: BlockNumberFor;176 BlockNumberOf: BlockNumberOf;177 BlockStats: BlockStats;178 BlockTrace: BlockTrace;179 BlockTraceEvent: BlockTraceEvent;180 BlockTraceEventData: BlockTraceEventData;181 BlockTraceSpan: BlockTraceSpan;182 BlockV0: BlockV0;183 BlockV1: BlockV1;184 BlockV2: BlockV2;185 BlockWeights: BlockWeights;186 BodyId: BodyId;187 BodyPart: BodyPart;188 bool: bool;189 Bool: Bool;190 Bounty: Bounty;191 BountyIndex: BountyIndex;192 BountyStatus: BountyStatus;193 BountyStatusActive: BountyStatusActive;194 BountyStatusCuratorProposed: BountyStatusCuratorProposed;195 BountyStatusPendingPayout: BountyStatusPendingPayout;196 BridgedBlockHash: BridgedBlockHash;197 BridgedBlockNumber: BridgedBlockNumber;198 BridgedHeader: BridgedHeader;199 BridgeMessageId: BridgeMessageId;200 BufferedSessionChange: BufferedSessionChange;201 Bytes: Bytes;202 Call: Call;203 CallHash: CallHash;204 CallHashOf: CallHashOf;205 CallIndex: CallIndex;206 CallOrigin: CallOrigin;207 CandidateCommitments: CandidateCommitments;208 CandidateDescriptor: CandidateDescriptor;209 CandidateEvent: CandidateEvent;210 CandidateHash: CandidateHash;211 CandidateInfo: CandidateInfo;212 CandidatePendingAvailability: CandidatePendingAvailability;213 CandidateReceipt: CandidateReceipt;214 ChainId: ChainId;215 ChainProperties: ChainProperties;216 ChainType: ChainType;217 ChangesTrieConfiguration: ChangesTrieConfiguration;218 ChangesTrieSignal: ChangesTrieSignal;219 CheckInherentsResult: CheckInherentsResult;220 ClassDetails: ClassDetails;221 ClassId: ClassId;222 ClassMetadata: ClassMetadata;223 CodecHash: CodecHash;224 CodeHash: CodeHash;225 CodeSource: CodeSource;226 CodeUploadRequest: CodeUploadRequest;227 CodeUploadResult: CodeUploadResult;228 CodeUploadResultValue: CodeUploadResultValue;229 CollationInfo: CollationInfo;230 CollationInfoV1: CollationInfoV1;231 CollatorId: CollatorId;232 CollatorSignature: CollatorSignature;233 CollectiveOrigin: CollectiveOrigin;234 CommittedCandidateReceipt: CommittedCandidateReceipt;235 CompactAssignments: CompactAssignments;236 CompactAssignmentsTo257: CompactAssignmentsTo257;237 CompactAssignmentsTo265: CompactAssignmentsTo265;238 CompactAssignmentsWith16: CompactAssignmentsWith16;239 CompactAssignmentsWith24: CompactAssignmentsWith24;240 CompactScore: CompactScore;241 CompactScoreCompact: CompactScoreCompact;242 ConfigData: ConfigData;243 Consensus: Consensus;244 ConsensusEngineId: ConsensusEngineId;245 ConsumedWeight: ConsumedWeight;246 ContractCallFlags: ContractCallFlags;247 ContractCallRequest: ContractCallRequest;248 ContractConstructorSpecLatest: ContractConstructorSpecLatest;249 ContractConstructorSpecV0: ContractConstructorSpecV0;250 ContractConstructorSpecV1: ContractConstructorSpecV1;251 ContractConstructorSpecV2: ContractConstructorSpecV2;252 ContractConstructorSpecV3: ContractConstructorSpecV3;253 ContractContractSpecV0: ContractContractSpecV0;254 ContractContractSpecV1: ContractContractSpecV1;255 ContractContractSpecV2: ContractContractSpecV2;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;258 ContractCryptoHasher: ContractCryptoHasher;259 ContractDiscriminant: ContractDiscriminant;260 ContractDisplayName: ContractDisplayName;261 ContractEventParamSpecLatest: ContractEventParamSpecLatest;262 ContractEventParamSpecV0: ContractEventParamSpecV0;263 ContractEventParamSpecV2: ContractEventParamSpecV2;264 ContractEventSpecLatest: ContractEventSpecLatest;265 ContractEventSpecV0: ContractEventSpecV0;266 ContractEventSpecV1: ContractEventSpecV1;267 ContractEventSpecV2: ContractEventSpecV2;268 ContractExecResult: ContractExecResult;269 ContractExecResultOk: ContractExecResultOk;270 ContractExecResultResult: ContractExecResultResult;271 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractExecResultU64: ContractExecResultU64;277 ContractInfo: ContractInfo;278 ContractInstantiateResult: ContractInstantiateResult;279 ContractInstantiateResultTo267: ContractInstantiateResultTo267;280 ContractInstantiateResultTo299: ContractInstantiateResultTo299;281 ContractInstantiateResultU64: ContractInstantiateResultU64;282 ContractLayoutArray: ContractLayoutArray;283 ContractLayoutCell: ContractLayoutCell;284 ContractLayoutEnum: ContractLayoutEnum;285 ContractLayoutHash: ContractLayoutHash;286 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;287 ContractLayoutKey: ContractLayoutKey;288 ContractLayoutStruct: ContractLayoutStruct;289 ContractLayoutStructField: ContractLayoutStructField;290 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;291 ContractMessageParamSpecV0: ContractMessageParamSpecV0;292 ContractMessageParamSpecV2: ContractMessageParamSpecV2;293 ContractMessageSpecLatest: ContractMessageSpecLatest;294 ContractMessageSpecV0: ContractMessageSpecV0;295 ContractMessageSpecV1: ContractMessageSpecV1;296 ContractMessageSpecV2: ContractMessageSpecV2;297 ContractMetadata: ContractMetadata;298 ContractMetadataLatest: ContractMetadataLatest;299 ContractMetadataV0: ContractMetadataV0;300 ContractMetadataV1: ContractMetadataV1;301 ContractMetadataV2: ContractMetadataV2;302 ContractMetadataV3: ContractMetadataV3;303 ContractMetadataV4: ContractMetadataV4;304 ContractProject: ContractProject;305 ContractProjectContract: ContractProjectContract;306 ContractProjectInfo: ContractProjectInfo;307 ContractProjectSource: ContractProjectSource;308 ContractProjectV0: ContractProjectV0;309 ContractReturnFlags: ContractReturnFlags;310 ContractSelector: ContractSelector;311 ContractStorageKey: ContractStorageKey;312 ContractStorageLayout: ContractStorageLayout;313 ContractTypeSpec: ContractTypeSpec;314 Conviction: Conviction;315 CoreAssignment: CoreAssignment;316 CoreIndex: CoreIndex;317 CoreOccupied: CoreOccupied;318 CoreState: CoreState;319 CrateVersion: CrateVersion;320 CreatedBlock: CreatedBlock;321 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;322 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;323 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;324 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;325 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;326 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;327 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;328 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;329 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;330 CumulusPalletXcmCall: CumulusPalletXcmCall;331 CumulusPalletXcmError: CumulusPalletXcmError;332 CumulusPalletXcmEvent: CumulusPalletXcmEvent;333 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;334 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;335 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;336 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;337 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;338 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;339 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;340 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;341 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;342 Data: Data;343 DeferredOffenceOf: DeferredOffenceOf;344 DefunctVoter: DefunctVoter;345 DelayKind: DelayKind;346 DelayKindBest: DelayKindBest;347 Delegations: Delegations;348 DeletedContract: DeletedContract;349 DeliveredMessages: DeliveredMessages;350 DepositBalance: DepositBalance;351 DepositBalanceOf: DepositBalanceOf;352 DestroyWitness: DestroyWitness;353 Digest: Digest;354 DigestItem: DigestItem;355 DigestOf: DigestOf;356 DispatchClass: DispatchClass;357 DispatchError: DispatchError;358 DispatchErrorModule: DispatchErrorModule;359 DispatchErrorModulePre6: DispatchErrorModulePre6;360 DispatchErrorModuleU8: DispatchErrorModuleU8;361 DispatchErrorModuleU8a: DispatchErrorModuleU8a;362 DispatchErrorPre6: DispatchErrorPre6;363 DispatchErrorPre6First: DispatchErrorPre6First;364 DispatchErrorTo198: DispatchErrorTo198;365 DispatchFeePayment: DispatchFeePayment;366 DispatchInfo: DispatchInfo;367 DispatchInfoTo190: DispatchInfoTo190;368 DispatchInfoTo244: DispatchInfoTo244;369 DispatchOutcome: DispatchOutcome;370 DispatchOutcomePre6: DispatchOutcomePre6;371 DispatchResult: DispatchResult;372 DispatchResultOf: DispatchResultOf;373 DispatchResultTo198: DispatchResultTo198;374 DisputeLocation: DisputeLocation;375 DisputeResult: DisputeResult;376 DisputeState: DisputeState;377 DisputeStatement: DisputeStatement;378 DisputeStatementSet: DisputeStatementSet;379 DoubleEncodedCall: DoubleEncodedCall;380 DoubleVoteReport: DoubleVoteReport;381 DownwardMessage: DownwardMessage;382 EcdsaSignature: EcdsaSignature;383 Ed25519Signature: Ed25519Signature;384 EIP1559Transaction: EIP1559Transaction;385 EIP2930Transaction: EIP2930Transaction;386 ElectionCompute: ElectionCompute;387 ElectionPhase: ElectionPhase;388 ElectionResult: ElectionResult;389 ElectionScore: ElectionScore;390 ElectionSize: ElectionSize;391 ElectionStatus: ElectionStatus;392 EncodedFinalityProofs: EncodedFinalityProofs;393 EncodedJustification: EncodedJustification;394 Epoch: Epoch;395 EpochAuthorship: EpochAuthorship;396 Era: Era;397 EraIndex: EraIndex;398 EraPoints: EraPoints;399 EraRewardPoints: EraRewardPoints;400 EraRewards: EraRewards;401 ErrorMetadataLatest: ErrorMetadataLatest;402 ErrorMetadataV10: ErrorMetadataV10;403 ErrorMetadataV11: ErrorMetadataV11;404 ErrorMetadataV12: ErrorMetadataV12;405 ErrorMetadataV13: ErrorMetadataV13;406 ErrorMetadataV14: ErrorMetadataV14;407 ErrorMetadataV9: ErrorMetadataV9;408 EthAccessList: EthAccessList;409 EthAccessListItem: EthAccessListItem;410 EthAccount: EthAccount;411 EthAddress: EthAddress;412 EthBlock: EthBlock;413 EthBloom: EthBloom;414 EthbloomBloom: EthbloomBloom;415 EthCallRequest: EthCallRequest;416 EthereumAccountId: EthereumAccountId;417 EthereumAddress: EthereumAddress;418 EthereumBlock: EthereumBlock;419 EthereumHeader: EthereumHeader;420 EthereumLog: EthereumLog;421 EthereumLookupSource: EthereumLookupSource;422 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;423 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;424 EthereumSignature: EthereumSignature;425 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;426 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;427 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;428 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;429 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;430 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;431 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;432 EthereumTypesHashH64: EthereumTypesHashH64;433 EthFeeHistory: EthFeeHistory;434 EthFilter: EthFilter;435 EthFilterAddress: EthFilterAddress;436 EthFilterChanges: EthFilterChanges;437 EthFilterTopic: EthFilterTopic;438 EthFilterTopicEntry: EthFilterTopicEntry;439 EthFilterTopicInner: EthFilterTopicInner;440 EthHeader: EthHeader;441 EthLog: EthLog;442 EthReceipt: EthReceipt;443 EthReceiptV0: EthReceiptV0;444 EthReceiptV3: EthReceiptV3;445 EthRichBlock: EthRichBlock;446 EthRichHeader: EthRichHeader;447 EthStorageProof: EthStorageProof;448 EthSubKind: EthSubKind;449 EthSubParams: EthSubParams;450 EthSubResult: EthSubResult;451 EthSyncInfo: EthSyncInfo;452 EthSyncStatus: EthSyncStatus;453 EthTransaction: EthTransaction;454 EthTransactionAction: EthTransactionAction;455 EthTransactionCondition: EthTransactionCondition;456 EthTransactionRequest: EthTransactionRequest;457 EthTransactionSignature: EthTransactionSignature;458 EthTransactionStatus: EthTransactionStatus;459 EthWork: EthWork;460 Event: Event;461 EventId: EventId;462 EventIndex: EventIndex;463 EventMetadataLatest: EventMetadataLatest;464 EventMetadataV10: EventMetadataV10;465 EventMetadataV11: EventMetadataV11;466 EventMetadataV12: EventMetadataV12;467 EventMetadataV13: EventMetadataV13;468 EventMetadataV14: EventMetadataV14;469 EventMetadataV9: EventMetadataV9;470 EventRecord: EventRecord;471 EvmAccount: EvmAccount;472 EvmCallInfo: EvmCallInfo;473 EvmCoreErrorExitError: EvmCoreErrorExitError;474 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;475 EvmCoreErrorExitReason: EvmCoreErrorExitReason;476 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;477 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;478 EvmCreateInfo: EvmCreateInfo;479 EvmLog: EvmLog;480 EvmVicinity: EvmVicinity;481 ExecReturnValue: ExecReturnValue;482 ExitError: ExitError;483 ExitFatal: ExitFatal;484 ExitReason: ExitReason;485 ExitRevert: ExitRevert;486 ExitSucceed: ExitSucceed;487 ExplicitDisputeStatement: ExplicitDisputeStatement;488 Exposure: Exposure;489 ExtendedBalance: ExtendedBalance;490 Extrinsic: Extrinsic;491 ExtrinsicEra: ExtrinsicEra;492 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;493 ExtrinsicMetadataV11: ExtrinsicMetadataV11;494 ExtrinsicMetadataV12: ExtrinsicMetadataV12;495 ExtrinsicMetadataV13: ExtrinsicMetadataV13;496 ExtrinsicMetadataV14: ExtrinsicMetadataV14;497 ExtrinsicOrHash: ExtrinsicOrHash;498 ExtrinsicPayload: ExtrinsicPayload;499 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;500 ExtrinsicPayloadV4: ExtrinsicPayloadV4;501 ExtrinsicSignature: ExtrinsicSignature;502 ExtrinsicSignatureV4: ExtrinsicSignatureV4;503 ExtrinsicStatus: ExtrinsicStatus;504 ExtrinsicsWeight: ExtrinsicsWeight;505 ExtrinsicUnknown: ExtrinsicUnknown;506 ExtrinsicV4: ExtrinsicV4;507 f32: f32;508 F32: F32;509 f64: f64;510 F64: F64;511 FeeDetails: FeeDetails;512 Fixed128: Fixed128;513 Fixed64: Fixed64;514 FixedI128: FixedI128;515 FixedI64: FixedI64;516 FixedU128: FixedU128;517 FixedU64: FixedU64;518 Forcing: Forcing;519 ForkTreePendingChange: ForkTreePendingChange;520 ForkTreePendingChangeNode: ForkTreePendingChangeNode;521 FpRpcTransactionStatus: FpRpcTransactionStatus;522 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;523 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;524 FrameSupportDispatchPays: FrameSupportDispatchPays;525 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;526 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;527 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;528 FrameSupportPalletId: FrameSupportPalletId;529 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;530 FrameSystemAccountInfo: FrameSystemAccountInfo;531 FrameSystemCall: FrameSystemCall;532 FrameSystemError: FrameSystemError;533 FrameSystemEvent: FrameSystemEvent;534 FrameSystemEventRecord: FrameSystemEventRecord;535 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;536 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;537 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;538 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;539 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;540 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;541 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;542 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;543 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;544 FrameSystemPhase: FrameSystemPhase;545 FullIdentification: FullIdentification;546 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;547 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;548 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;549 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;550 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;551 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;552 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;553 FunctionMetadataLatest: FunctionMetadataLatest;554 FunctionMetadataV10: FunctionMetadataV10;555 FunctionMetadataV11: FunctionMetadataV11;556 FunctionMetadataV12: FunctionMetadataV12;557 FunctionMetadataV13: FunctionMetadataV13;558 FunctionMetadataV14: FunctionMetadataV14;559 FunctionMetadataV9: FunctionMetadataV9;560 FundIndex: FundIndex;561 FundInfo: FundInfo;562 Fungibility: Fungibility;563 FungibilityV0: FungibilityV0;564 FungibilityV1: FungibilityV1;565 FungibilityV2: FungibilityV2;566 Gas: Gas;567 GiltBid: GiltBid;568 GlobalValidationData: GlobalValidationData;569 GlobalValidationSchedule: GlobalValidationSchedule;570 GrandpaCommit: GrandpaCommit;571 GrandpaEquivocation: GrandpaEquivocation;572 GrandpaEquivocationProof: GrandpaEquivocationProof;573 GrandpaEquivocationValue: GrandpaEquivocationValue;574 GrandpaJustification: GrandpaJustification;575 GrandpaPrecommit: GrandpaPrecommit;576 GrandpaPrevote: GrandpaPrevote;577 GrandpaSignedPrecommit: GrandpaSignedPrecommit;578 GroupIndex: GroupIndex;579 GroupRotationInfo: GroupRotationInfo;580 H1024: H1024;581 H128: H128;582 H160: H160;583 H2048: H2048;584 H256: H256;585 H32: H32;586 H512: H512;587 H64: H64;588 Hash: Hash;589 HeadData: HeadData;590 Header: Header;591 HeaderPartial: HeaderPartial;592 Health: Health;593 Heartbeat: Heartbeat;594 HeartbeatTo244: HeartbeatTo244;595 HostConfiguration: HostConfiguration;596 HostFnWeights: HostFnWeights;597 HostFnWeightsTo264: HostFnWeightsTo264;598 HrmpChannel: HrmpChannel;599 HrmpChannelId: HrmpChannelId;600 HrmpOpenChannelRequest: HrmpOpenChannelRequest;601 i128: i128;602 I128: I128;603 i16: i16;604 I16: I16;605 i256: i256;606 I256: I256;607 i32: i32;608 I32: I32;609 I32F32: I32F32;610 i64: i64;611 I64: I64;612 i8: i8;613 I8: I8;614 IdentificationTuple: IdentificationTuple;615 IdentityFields: IdentityFields;616 IdentityInfo: IdentityInfo;617 IdentityInfoAdditional: IdentityInfoAdditional;618 IdentityInfoTo198: IdentityInfoTo198;619 IdentityJudgement: IdentityJudgement;620 ImmortalEra: ImmortalEra;621 ImportedAux: ImportedAux;622 InboundDownwardMessage: InboundDownwardMessage;623 InboundHrmpMessage: InboundHrmpMessage;624 InboundHrmpMessages: InboundHrmpMessages;625 InboundLaneData: InboundLaneData;626 InboundRelayer: InboundRelayer;627 InboundStatus: InboundStatus;628 IncludedBlocks: IncludedBlocks;629 InclusionFee: InclusionFee;630 IncomingParachain: IncomingParachain;631 IncomingParachainDeploy: IncomingParachainDeploy;632 IncomingParachainFixed: IncomingParachainFixed;633 Index: Index;634 IndicesLookupSource: IndicesLookupSource;635 IndividualExposure: IndividualExposure;636 InherentData: InherentData;637 InherentIdentifier: InherentIdentifier;638 InitializationData: InitializationData;639 InstanceDetails: InstanceDetails;640 InstanceId: InstanceId;641 InstanceMetadata: InstanceMetadata;642 InstantiateRequest: InstantiateRequest;643 InstantiateRequestV1: InstantiateRequestV1;644 InstantiateRequestV2: InstantiateRequestV2;645 InstantiateReturnValue: InstantiateReturnValue;646 InstantiateReturnValueOk: InstantiateReturnValueOk;647 InstantiateReturnValueTo267: InstantiateReturnValueTo267;648 InstructionV2: InstructionV2;649 InstructionWeights: InstructionWeights;650 InteriorMultiLocation: InteriorMultiLocation;651 InvalidDisputeStatementKind: InvalidDisputeStatementKind;652 InvalidTransaction: InvalidTransaction;653 Json: Json;654 Junction: Junction;655 Junctions: Junctions;656 JunctionsV1: JunctionsV1;657 JunctionsV2: JunctionsV2;658 JunctionV0: JunctionV0;659 JunctionV1: JunctionV1;660 JunctionV2: JunctionV2;661 Justification: Justification;662 JustificationNotification: JustificationNotification;663 Justifications: Justifications;664 Key: Key;665 KeyOwnerProof: KeyOwnerProof;666 Keys: Keys;667 KeyType: KeyType;668 KeyTypeId: KeyTypeId;669 KeyValue: KeyValue;670 KeyValueOption: KeyValueOption;671 Kind: Kind;672 LaneId: LaneId;673 LastContribution: LastContribution;674 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;675 LeasePeriod: LeasePeriod;676 LeasePeriodOf: LeasePeriodOf;677 LegacyTransaction: LegacyTransaction;678 Limits: Limits;679 LimitsTo264: LimitsTo264;680 LocalValidationData: LocalValidationData;681 LockIdentifier: LockIdentifier;682 LookupSource: LookupSource;683 LookupTarget: LookupTarget;684 LotteryConfig: LotteryConfig;685 MaybeRandomness: MaybeRandomness;686 MaybeVrf: MaybeVrf;687 MemberCount: MemberCount;688 MembershipProof: MembershipProof;689 MessageData: MessageData;690 MessageId: MessageId;691 MessageIngestionType: MessageIngestionType;692 MessageKey: MessageKey;693 MessageNonce: MessageNonce;694 MessageQueueChain: MessageQueueChain;695 MessagesDeliveryProofOf: MessagesDeliveryProofOf;696 MessagesProofOf: MessagesProofOf;697 MessagingStateSnapshot: MessagingStateSnapshot;698 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;699 MetadataAll: MetadataAll;700 MetadataLatest: MetadataLatest;701 MetadataV10: MetadataV10;702 MetadataV11: MetadataV11;703 MetadataV12: MetadataV12;704 MetadataV13: MetadataV13;705 MetadataV14: MetadataV14;706 MetadataV9: MetadataV9;707 MigrationStatusResult: MigrationStatusResult;708 MmrBatchProof: MmrBatchProof;709 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;710 MmrError: MmrError;711 MmrLeafBatchProof: MmrLeafBatchProof;712 MmrLeafIndex: MmrLeafIndex;713 MmrLeafProof: MmrLeafProof;714 MmrNodeIndex: MmrNodeIndex;715 MmrProof: MmrProof;716 MmrRootHash: MmrRootHash;717 ModuleConstantMetadataV10: ModuleConstantMetadataV10;718 ModuleConstantMetadataV11: ModuleConstantMetadataV11;719 ModuleConstantMetadataV12: ModuleConstantMetadataV12;720 ModuleConstantMetadataV13: ModuleConstantMetadataV13;721 ModuleConstantMetadataV9: ModuleConstantMetadataV9;722 ModuleId: ModuleId;723 ModuleMetadataV10: ModuleMetadataV10;724 ModuleMetadataV11: ModuleMetadataV11;725 ModuleMetadataV12: ModuleMetadataV12;726 ModuleMetadataV13: ModuleMetadataV13;727 ModuleMetadataV9: ModuleMetadataV9;728 Moment: Moment;729 MomentOf: MomentOf;730 MoreAttestations: MoreAttestations;731 MortalEra: MortalEra;732 MultiAddress: MultiAddress;733 MultiAsset: MultiAsset;734 MultiAssetFilter: MultiAssetFilter;735 MultiAssetFilterV1: MultiAssetFilterV1;736 MultiAssetFilterV2: MultiAssetFilterV2;737 MultiAssets: MultiAssets;738 MultiAssetsV1: MultiAssetsV1;739 MultiAssetsV2: MultiAssetsV2;740 MultiAssetV0: MultiAssetV0;741 MultiAssetV1: MultiAssetV1;742 MultiAssetV2: MultiAssetV2;743 MultiDisputeStatementSet: MultiDisputeStatementSet;744 MultiLocation: MultiLocation;745 MultiLocationV0: MultiLocationV0;746 MultiLocationV1: MultiLocationV1;747 MultiLocationV2: MultiLocationV2;748 Multiplier: Multiplier;749 Multisig: Multisig;750 MultiSignature: MultiSignature;751 MultiSigner: MultiSigner;752 NetworkId: NetworkId;753 NetworkState: NetworkState;754 NetworkStatePeerset: NetworkStatePeerset;755 NetworkStatePeersetInfo: NetworkStatePeersetInfo;756 NewBidder: NewBidder;757 NextAuthority: NextAuthority;758 NextConfigDescriptor: NextConfigDescriptor;759 NextConfigDescriptorV1: NextConfigDescriptorV1;760 NodeRole: NodeRole;761 Nominations: Nominations;762 NominatorIndex: NominatorIndex;763 NominatorIndexCompact: NominatorIndexCompact;764 NotConnectedPeer: NotConnectedPeer;765 NpApiError: NpApiError;766 Null: Null;767 OccupiedCore: OccupiedCore;768 OccupiedCoreAssumption: OccupiedCoreAssumption;769 OffchainAccuracy: OffchainAccuracy;770 OffchainAccuracyCompact: OffchainAccuracyCompact;771 OffenceDetails: OffenceDetails;772 Offender: Offender;773 OldV1SessionInfo: OldV1SessionInfo;774 OpalRuntimeRuntime: OpalRuntimeRuntime;775 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;776 OpaqueCall: OpaqueCall;777 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;778 OpaqueMetadata: OpaqueMetadata;779 OpaqueMultiaddr: OpaqueMultiaddr;780 OpaqueNetworkState: OpaqueNetworkState;781 OpaquePeerId: OpaquePeerId;782 OpaqueTimeSlot: OpaqueTimeSlot;783 OpenTip: OpenTip;784 OpenTipFinderTo225: OpenTipFinderTo225;785 OpenTipTip: OpenTipTip;786 OpenTipTo225: OpenTipTo225;787 OperatingMode: OperatingMode;788 OptionBool: OptionBool;789 Origin: Origin;790 OriginCaller: OriginCaller;791 OriginKindV0: OriginKindV0;792 OriginKindV1: OriginKindV1;793 OriginKindV2: OriginKindV2;794 OrmlTokensAccountData: OrmlTokensAccountData;795 OrmlTokensBalanceLock: OrmlTokensBalanceLock;796 OrmlTokensModuleCall: OrmlTokensModuleCall;797 OrmlTokensModuleError: OrmlTokensModuleError;798 OrmlTokensModuleEvent: OrmlTokensModuleEvent;799 OrmlTokensReserveData: OrmlTokensReserveData;800 OrmlVestingModuleCall: OrmlVestingModuleCall;801 OrmlVestingModuleError: OrmlVestingModuleError;802 OrmlVestingModuleEvent: OrmlVestingModuleEvent;803 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;804 OrmlXtokensModuleCall: OrmlXtokensModuleCall;805 OrmlXtokensModuleError: OrmlXtokensModuleError;806 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;807 OutboundHrmpMessage: OutboundHrmpMessage;808 OutboundLaneData: OutboundLaneData;809 OutboundMessageFee: OutboundMessageFee;810 OutboundPayload: OutboundPayload;811 OutboundStatus: OutboundStatus;812 Outcome: Outcome;813 OverweightIndex: OverweightIndex;814 Owner: Owner;815 PageCounter: PageCounter;816 PageIndexData: PageIndexData;817 PalletAppPromotionCall: PalletAppPromotionCall;818 PalletAppPromotionError: PalletAppPromotionError;819 PalletAppPromotionEvent: PalletAppPromotionEvent;820 PalletBalancesAccountData: PalletBalancesAccountData;821 PalletBalancesBalanceLock: PalletBalancesBalanceLock;822 PalletBalancesCall: PalletBalancesCall;823 PalletBalancesError: PalletBalancesError;824 PalletBalancesEvent: PalletBalancesEvent;825 PalletBalancesReasons: PalletBalancesReasons;826 PalletBalancesReserveData: PalletBalancesReserveData;827 PalletCallMetadataLatest: PalletCallMetadataLatest;828 PalletCallMetadataV14: PalletCallMetadataV14;829 PalletCommonError: PalletCommonError;830 PalletCommonEvent: PalletCommonEvent;831 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;832 PalletConfigurationCall: PalletConfigurationCall;833 PalletConfigurationError: PalletConfigurationError;834 PalletConstantMetadataLatest: PalletConstantMetadataLatest;835 PalletConstantMetadataV14: PalletConstantMetadataV14;836 PalletErrorMetadataLatest: PalletErrorMetadataLatest;837 PalletErrorMetadataV14: PalletErrorMetadataV14;838 PalletEthereumCall: PalletEthereumCall;839 PalletEthereumError: PalletEthereumError;840 PalletEthereumEvent: PalletEthereumEvent;841 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;842 PalletEventMetadataLatest: PalletEventMetadataLatest;843 PalletEventMetadataV14: PalletEventMetadataV14;844 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;845 PalletEvmCall: PalletEvmCall;846 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;847 PalletEvmContractHelpersError: PalletEvmContractHelpersError;848 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;849 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;850 PalletEvmError: PalletEvmError;851 PalletEvmEvent: PalletEvmEvent;852 PalletEvmMigrationCall: PalletEvmMigrationCall;853 PalletEvmMigrationError: PalletEvmMigrationError;854 PalletEvmMigrationEvent: PalletEvmMigrationEvent;855 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;856 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;857 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;858 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;859 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;860 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;861 PalletFungibleError: PalletFungibleError;862 PalletId: PalletId;863 PalletInflationCall: PalletInflationCall;864 PalletMaintenanceCall: PalletMaintenanceCall;865 PalletMaintenanceError: PalletMaintenanceError;866 PalletMaintenanceEvent: PalletMaintenanceEvent;867 PalletMetadataLatest: PalletMetadataLatest;868 PalletMetadataV14: PalletMetadataV14;869 PalletNonfungibleError: PalletNonfungibleError;870 PalletNonfungibleItemData: PalletNonfungibleItemData;871 PalletRefungibleError: PalletRefungibleError;872 PalletRmrkCoreCall: PalletRmrkCoreCall;873 PalletRmrkCoreError: PalletRmrkCoreError;874 PalletRmrkCoreEvent: PalletRmrkCoreEvent;875 PalletRmrkEquipCall: PalletRmrkEquipCall;876 PalletRmrkEquipError: PalletRmrkEquipError;877 PalletRmrkEquipEvent: PalletRmrkEquipEvent;878 PalletsOrigin: PalletsOrigin;879 PalletStorageMetadataLatest: PalletStorageMetadataLatest;880 PalletStorageMetadataV14: PalletStorageMetadataV14;881 PalletStructureCall: PalletStructureCall;882 PalletStructureError: PalletStructureError;883 PalletStructureEvent: PalletStructureEvent;884 PalletSudoCall: PalletSudoCall;885 PalletSudoError: PalletSudoError;886 PalletSudoEvent: PalletSudoEvent;887 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;888 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;889 PalletTestUtilsCall: PalletTestUtilsCall;890 PalletTestUtilsError: PalletTestUtilsError;891 PalletTestUtilsEvent: PalletTestUtilsEvent;892 PalletTimestampCall: PalletTimestampCall;893 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;894 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;895 PalletTreasuryCall: PalletTreasuryCall;896 PalletTreasuryError: PalletTreasuryError;897 PalletTreasuryEvent: PalletTreasuryEvent;898 PalletTreasuryProposal: PalletTreasuryProposal;899 PalletUniqueCall: PalletUniqueCall;900 PalletUniqueError: PalletUniqueError;901 PalletVersion: PalletVersion;902 PalletXcmCall: PalletXcmCall;903 PalletXcmError: PalletXcmError;904 PalletXcmEvent: PalletXcmEvent;905 ParachainDispatchOrigin: ParachainDispatchOrigin;906 ParachainInherentData: ParachainInherentData;907 ParachainProposal: ParachainProposal;908 ParachainsInherentData: ParachainsInherentData;909 ParaGenesisArgs: ParaGenesisArgs;910 ParaId: ParaId;911 ParaInfo: ParaInfo;912 ParaLifecycle: ParaLifecycle;913 Parameter: Parameter;914 ParaPastCodeMeta: ParaPastCodeMeta;915 ParaScheduling: ParaScheduling;916 ParathreadClaim: ParathreadClaim;917 ParathreadClaimQueue: ParathreadClaimQueue;918 ParathreadEntry: ParathreadEntry;919 ParaValidatorIndex: ParaValidatorIndex;920 Pays: Pays;921 Peer: Peer;922 PeerEndpoint: PeerEndpoint;923 PeerEndpointAddr: PeerEndpointAddr;924 PeerInfo: PeerInfo;925 PeerPing: PeerPing;926 PendingChange: PendingChange;927 PendingPause: PendingPause;928 PendingResume: PendingResume;929 Perbill: Perbill;930 Percent: Percent;931 PerDispatchClassU32: PerDispatchClassU32;932 PerDispatchClassWeight: PerDispatchClassWeight;933 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;934 Period: Period;935 Permill: Permill;936 PermissionLatest: PermissionLatest;937 PermissionsV1: PermissionsV1;938 PermissionVersions: PermissionVersions;939 Perquintill: Perquintill;940 PersistedValidationData: PersistedValidationData;941 PerU16: PerU16;942 Phantom: Phantom;943 PhantomData: PhantomData;944 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;945 Phase: Phase;946 PhragmenScore: PhragmenScore;947 Points: Points;948 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;949 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;950 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;951 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;952 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;953 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;954 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;955 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;956 PortableType: PortableType;957 PortableTypeV14: PortableTypeV14;958 Precommits: Precommits;959 PrefabWasmModule: PrefabWasmModule;960 PrefixedStorageKey: PrefixedStorageKey;961 PreimageStatus: PreimageStatus;962 PreimageStatusAvailable: PreimageStatusAvailable;963 PreRuntime: PreRuntime;964 Prevotes: Prevotes;965 Priority: Priority;966 PriorLock: PriorLock;967 PropIndex: PropIndex;968 Proposal: Proposal;969 ProposalIndex: ProposalIndex;970 ProxyAnnouncement: ProxyAnnouncement;971 ProxyDefinition: ProxyDefinition;972 ProxyState: ProxyState;973 ProxyType: ProxyType;974 PvfCheckStatement: PvfCheckStatement;975 QueryId: QueryId;976 QueryStatus: QueryStatus;977 QueueConfigData: QueueConfigData;978 QueuedParathread: QueuedParathread;979 Randomness: Randomness;980 Raw: Raw;981 RawAuraPreDigest: RawAuraPreDigest;982 RawBabePreDigest: RawBabePreDigest;983 RawBabePreDigestCompat: RawBabePreDigestCompat;984 RawBabePreDigestPrimary: RawBabePreDigestPrimary;985 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;986 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;987 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;988 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;989 RawBabePreDigestTo159: RawBabePreDigestTo159;990 RawOrigin: RawOrigin;991 RawSolution: RawSolution;992 RawSolutionTo265: RawSolutionTo265;993 RawSolutionWith16: RawSolutionWith16;994 RawSolutionWith24: RawSolutionWith24;995 RawVRFOutput: RawVRFOutput;996 ReadProof: ReadProof;997 ReadySolution: ReadySolution;998 Reasons: Reasons;999 RecoveryConfig: RecoveryConfig;1000 RefCount: RefCount;1001 RefCountTo259: RefCountTo259;1002 ReferendumIndex: ReferendumIndex;1003 ReferendumInfo: ReferendumInfo;1004 ReferendumInfoFinished: ReferendumInfoFinished;1005 ReferendumInfoTo239: ReferendumInfoTo239;1006 ReferendumStatus: ReferendumStatus;1007 RegisteredParachainInfo: RegisteredParachainInfo;1008 RegistrarIndex: RegistrarIndex;1009 RegistrarInfo: RegistrarInfo;1010 Registration: Registration;1011 RegistrationJudgement: RegistrationJudgement;1012 RegistrationTo198: RegistrationTo198;1013 RelayBlockNumber: RelayBlockNumber;1014 RelayChainBlockNumber: RelayChainBlockNumber;1015 RelayChainHash: RelayChainHash;1016 RelayerId: RelayerId;1017 RelayHash: RelayHash;1018 Releases: Releases;1019 Remark: Remark;1020 Renouncing: Renouncing;1021 RentProjection: RentProjection;1022 ReplacementTimes: ReplacementTimes;1023 ReportedRoundStates: ReportedRoundStates;1024 Reporter: Reporter;1025 ReportIdOf: ReportIdOf;1026 ReserveData: ReserveData;1027 ReserveIdentifier: ReserveIdentifier;1028 Response: Response;1029 ResponseV0: ResponseV0;1030 ResponseV1: ResponseV1;1031 ResponseV2: ResponseV2;1032 ResponseV2Error: ResponseV2Error;1033 ResponseV2Result: ResponseV2Result;1034 Retriable: Retriable;1035 RewardDestination: RewardDestination;1036 RewardPoint: RewardPoint;1037 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1038 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1039 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1040 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1041 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1042 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1043 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1044 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1045 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1046 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1047 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1048 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1049 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1050 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1051 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1052 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1053 RmrkTraitsTheme: RmrkTraitsTheme;1054 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1055 RoundSnapshot: RoundSnapshot;1056 RoundState: RoundState;1057 RpcMethods: RpcMethods;1058 RuntimeDbWeight: RuntimeDbWeight;1059 RuntimeDispatchInfo: RuntimeDispatchInfo;1060 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1061 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1062 RuntimeVersion: RuntimeVersion;1063 RuntimeVersionApi: RuntimeVersionApi;1064 RuntimeVersionPartial: RuntimeVersionPartial;1065 RuntimeVersionPre3: RuntimeVersionPre3;1066 RuntimeVersionPre4: RuntimeVersionPre4;1067 Schedule: Schedule;1068 Scheduled: Scheduled;1069 ScheduledCore: ScheduledCore;1070 ScheduledTo254: ScheduledTo254;1071 SchedulePeriod: SchedulePeriod;1072 SchedulePriority: SchedulePriority;1073 ScheduleTo212: ScheduleTo212;1074 ScheduleTo258: ScheduleTo258;1075 ScheduleTo264: ScheduleTo264;1076 Scheduling: Scheduling;1077 ScrapedOnChainVotes: ScrapedOnChainVotes;1078 Seal: Seal;1079 SealV0: SealV0;1080 SeatHolder: SeatHolder;1081 SeedOf: SeedOf;1082 ServiceQuality: ServiceQuality;1083 SessionIndex: SessionIndex;1084 SessionInfo: SessionInfo;1085 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1086 SessionKeys1: SessionKeys1;1087 SessionKeys10: SessionKeys10;1088 SessionKeys10B: SessionKeys10B;1089 SessionKeys2: SessionKeys2;1090 SessionKeys3: SessionKeys3;1091 SessionKeys4: SessionKeys4;1092 SessionKeys5: SessionKeys5;1093 SessionKeys6: SessionKeys6;1094 SessionKeys6B: SessionKeys6B;1095 SessionKeys7: SessionKeys7;1096 SessionKeys7B: SessionKeys7B;1097 SessionKeys8: SessionKeys8;1098 SessionKeys8B: SessionKeys8B;1099 SessionKeys9: SessionKeys9;1100 SessionKeys9B: SessionKeys9B;1101 SetId: SetId;1102 SetIndex: SetIndex;1103 Si0Field: Si0Field;1104 Si0LookupTypeId: Si0LookupTypeId;1105 Si0Path: Si0Path;1106 Si0Type: Si0Type;1107 Si0TypeDef: Si0TypeDef;1108 Si0TypeDefArray: Si0TypeDefArray;1109 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1110 Si0TypeDefCompact: Si0TypeDefCompact;1111 Si0TypeDefComposite: Si0TypeDefComposite;1112 Si0TypeDefPhantom: Si0TypeDefPhantom;1113 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1114 Si0TypeDefSequence: Si0TypeDefSequence;1115 Si0TypeDefTuple: Si0TypeDefTuple;1116 Si0TypeDefVariant: Si0TypeDefVariant;1117 Si0TypeParameter: Si0TypeParameter;1118 Si0Variant: Si0Variant;1119 Si1Field: Si1Field;1120 Si1LookupTypeId: Si1LookupTypeId;1121 Si1Path: Si1Path;1122 Si1Type: Si1Type;1123 Si1TypeDef: Si1TypeDef;1124 Si1TypeDefArray: Si1TypeDefArray;1125 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1126 Si1TypeDefCompact: Si1TypeDefCompact;1127 Si1TypeDefComposite: Si1TypeDefComposite;1128 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1129 Si1TypeDefSequence: Si1TypeDefSequence;1130 Si1TypeDefTuple: Si1TypeDefTuple;1131 Si1TypeDefVariant: Si1TypeDefVariant;1132 Si1TypeParameter: Si1TypeParameter;1133 Si1Variant: Si1Variant;1134 SiField: SiField;1135 Signature: Signature;1136 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1137 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1138 SignedBlock: SignedBlock;1139 SignedBlockWithJustification: SignedBlockWithJustification;1140 SignedBlockWithJustifications: SignedBlockWithJustifications;1141 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1142 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1143 SignedSubmission: SignedSubmission;1144 SignedSubmissionOf: SignedSubmissionOf;1145 SignedSubmissionTo276: SignedSubmissionTo276;1146 SignerPayload: SignerPayload;1147 SigningContext: SigningContext;1148 SiLookupTypeId: SiLookupTypeId;1149 SiPath: SiPath;1150 SiType: SiType;1151 SiTypeDef: SiTypeDef;1152 SiTypeDefArray: SiTypeDefArray;1153 SiTypeDefBitSequence: SiTypeDefBitSequence;1154 SiTypeDefCompact: SiTypeDefCompact;1155 SiTypeDefComposite: SiTypeDefComposite;1156 SiTypeDefPrimitive: SiTypeDefPrimitive;1157 SiTypeDefSequence: SiTypeDefSequence;1158 SiTypeDefTuple: SiTypeDefTuple;1159 SiTypeDefVariant: SiTypeDefVariant;1160 SiTypeParameter: SiTypeParameter;1161 SiVariant: SiVariant;1162 SlashingSpans: SlashingSpans;1163 SlashingSpansTo204: SlashingSpansTo204;1164 SlashJournalEntry: SlashJournalEntry;1165 Slot: Slot;1166 SlotDuration: SlotDuration;1167 SlotNumber: SlotNumber;1168 SlotRange: SlotRange;1169 SlotRange10: SlotRange10;1170 SocietyJudgement: SocietyJudgement;1171 SocietyVote: SocietyVote;1172 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1173 SolutionSupport: SolutionSupport;1174 SolutionSupports: SolutionSupports;1175 SpanIndex: SpanIndex;1176 SpanRecord: SpanRecord;1177 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1178 SpCoreEd25519Signature: SpCoreEd25519Signature;1179 SpCoreSr25519Signature: SpCoreSr25519Signature;1180 SpecVersion: SpecVersion;1181 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1182 SpRuntimeDigest: SpRuntimeDigest;1183 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1184 SpRuntimeDispatchError: SpRuntimeDispatchError;1185 SpRuntimeModuleError: SpRuntimeModuleError;1186 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1187 SpRuntimeTokenError: SpRuntimeTokenError;1188 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1189 SpTrieStorageProof: SpTrieStorageProof;1190 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1191 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1192 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1193 Sr25519Signature: Sr25519Signature;1194 StakingLedger: StakingLedger;1195 StakingLedgerTo223: StakingLedgerTo223;1196 StakingLedgerTo240: StakingLedgerTo240;1197 Statement: Statement;1198 StatementKind: StatementKind;1199 StorageChangeSet: StorageChangeSet;1200 StorageData: StorageData;1201 StorageDeposit: StorageDeposit;1202 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1203 StorageEntryMetadataV10: StorageEntryMetadataV10;1204 StorageEntryMetadataV11: StorageEntryMetadataV11;1205 StorageEntryMetadataV12: StorageEntryMetadataV12;1206 StorageEntryMetadataV13: StorageEntryMetadataV13;1207 StorageEntryMetadataV14: StorageEntryMetadataV14;1208 StorageEntryMetadataV9: StorageEntryMetadataV9;1209 StorageEntryModifierLatest: StorageEntryModifierLatest;1210 StorageEntryModifierV10: StorageEntryModifierV10;1211 StorageEntryModifierV11: StorageEntryModifierV11;1212 StorageEntryModifierV12: StorageEntryModifierV12;1213 StorageEntryModifierV13: StorageEntryModifierV13;1214 StorageEntryModifierV14: StorageEntryModifierV14;1215 StorageEntryModifierV9: StorageEntryModifierV9;1216 StorageEntryTypeLatest: StorageEntryTypeLatest;1217 StorageEntryTypeV10: StorageEntryTypeV10;1218 StorageEntryTypeV11: StorageEntryTypeV11;1219 StorageEntryTypeV12: StorageEntryTypeV12;1220 StorageEntryTypeV13: StorageEntryTypeV13;1221 StorageEntryTypeV14: StorageEntryTypeV14;1222 StorageEntryTypeV9: StorageEntryTypeV9;1223 StorageHasher: StorageHasher;1224 StorageHasherV10: StorageHasherV10;1225 StorageHasherV11: StorageHasherV11;1226 StorageHasherV12: StorageHasherV12;1227 StorageHasherV13: StorageHasherV13;1228 StorageHasherV14: StorageHasherV14;1229 StorageHasherV9: StorageHasherV9;1230 StorageInfo: StorageInfo;1231 StorageKey: StorageKey;1232 StorageKind: StorageKind;1233 StorageMetadataV10: StorageMetadataV10;1234 StorageMetadataV11: StorageMetadataV11;1235 StorageMetadataV12: StorageMetadataV12;1236 StorageMetadataV13: StorageMetadataV13;1237 StorageMetadataV9: StorageMetadataV9;1238 StorageProof: StorageProof;1239 StoredPendingChange: StoredPendingChange;1240 StoredState: StoredState;1241 StrikeCount: StrikeCount;1242 SubId: SubId;1243 SubmissionIndicesOf: SubmissionIndicesOf;1244 Supports: Supports;1245 SyncState: SyncState;1246 SystemInherentData: SystemInherentData;1247 SystemOrigin: SystemOrigin;1248 Tally: Tally;1249 TaskAddress: TaskAddress;1250 TAssetBalance: TAssetBalance;1251 TAssetDepositBalance: TAssetDepositBalance;1252 Text: Text;1253 Timepoint: Timepoint;1254 TokenError: TokenError;1255 TombstoneContractInfo: TombstoneContractInfo;1256 TraceBlockResponse: TraceBlockResponse;1257 TraceError: TraceError;1258 TransactionalError: TransactionalError;1259 TransactionInfo: TransactionInfo;1260 TransactionLongevity: TransactionLongevity;1261 TransactionPriority: TransactionPriority;1262 TransactionSource: TransactionSource;1263 TransactionStorageProof: TransactionStorageProof;1264 TransactionTag: TransactionTag;1265 TransactionV0: TransactionV0;1266 TransactionV1: TransactionV1;1267 TransactionV2: TransactionV2;1268 TransactionValidity: TransactionValidity;1269 TransactionValidityError: TransactionValidityError;1270 TransientValidationData: TransientValidationData;1271 TreasuryProposal: TreasuryProposal;1272 TrieId: TrieId;1273 TrieIndex: TrieIndex;1274 Type: Type;1275 u128: u128;1276 U128: U128;1277 u16: u16;1278 U16: U16;1279 u256: u256;1280 U256: U256;1281 u32: u32;1282 U32: U32;1283 U32F32: U32F32;1284 u64: u64;1285 U64: U64;1286 u8: u8;1287 U8: U8;1288 UnappliedSlash: UnappliedSlash;1289 UnappliedSlashOther: UnappliedSlashOther;1290 UncleEntryItem: UncleEntryItem;1291 UnknownTransaction: UnknownTransaction;1292 UnlockChunk: UnlockChunk;1293 UnrewardedRelayer: UnrewardedRelayer;1294 UnrewardedRelayersState: UnrewardedRelayersState;1295 UpDataStructsAccessMode: UpDataStructsAccessMode;1296 UpDataStructsCollection: UpDataStructsCollection;1297 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1298 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1299 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1300 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1301 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1302 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1303 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1304 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1305 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1306 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1307 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1308 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1309 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1310 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1311 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1312 UpDataStructsProperties: UpDataStructsProperties;1313 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1314 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1315 UpDataStructsProperty: UpDataStructsProperty;1316 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1317 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1318 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1319 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1320 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1321 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1322 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1323 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1324 UpDataStructsTokenChild: UpDataStructsTokenChild;1325 UpDataStructsTokenData: UpDataStructsTokenData;1326 UpgradeGoAhead: UpgradeGoAhead;1327 UpgradeRestriction: UpgradeRestriction;1328 UpwardMessage: UpwardMessage;1329 usize: usize;1330 USize: USize;1331 ValidationCode: ValidationCode;1332 ValidationCodeHash: ValidationCodeHash;1333 ValidationData: ValidationData;1334 ValidationDataType: ValidationDataType;1335 ValidationFunctionParams: ValidationFunctionParams;1336 ValidatorCount: ValidatorCount;1337 ValidatorId: ValidatorId;1338 ValidatorIdOf: ValidatorIdOf;1339 ValidatorIndex: ValidatorIndex;1340 ValidatorIndexCompact: ValidatorIndexCompact;1341 ValidatorPrefs: ValidatorPrefs;1342 ValidatorPrefsTo145: ValidatorPrefsTo145;1343 ValidatorPrefsTo196: ValidatorPrefsTo196;1344 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1345 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1346 ValidatorSet: ValidatorSet;1347 ValidatorSetId: ValidatorSetId;1348 ValidatorSignature: ValidatorSignature;1349 ValidDisputeStatementKind: ValidDisputeStatementKind;1350 ValidityAttestation: ValidityAttestation;1351 ValidTransaction: ValidTransaction;1352 VecInboundHrmpMessage: VecInboundHrmpMessage;1353 VersionedMultiAsset: VersionedMultiAsset;1354 VersionedMultiAssets: VersionedMultiAssets;1355 VersionedMultiLocation: VersionedMultiLocation;1356 VersionedResponse: VersionedResponse;1357 VersionedXcm: VersionedXcm;1358 VersionMigrationStage: VersionMigrationStage;1359 VestingInfo: VestingInfo;1360 VestingSchedule: VestingSchedule;1361 Vote: Vote;1362 VoteIndex: VoteIndex;1363 Voter: Voter;1364 VoterInfo: VoterInfo;1365 Votes: Votes;1366 VotesTo230: VotesTo230;1367 VoteThreshold: VoteThreshold;1368 VoteWeight: VoteWeight;1369 Voting: Voting;1370 VotingDelegating: VotingDelegating;1371 VotingDirect: VotingDirect;1372 VotingDirectVote: VotingDirectVote;1373 VouchingStatus: VouchingStatus;1374 VrfData: VrfData;1375 VrfOutput: VrfOutput;1376 VrfProof: VrfProof;1377 Weight: Weight;1378 WeightLimitV2: WeightLimitV2;1379 WeightMultiplier: WeightMultiplier;1380 WeightPerClass: WeightPerClass;1381 WeightToFeeCoefficient: WeightToFeeCoefficient;1382 WeightV1: WeightV1;1383 WeightV2: WeightV2;1384 WildFungibility: WildFungibility;1385 WildFungibilityV0: WildFungibilityV0;1386 WildFungibilityV1: WildFungibilityV1;1387 WildFungibilityV2: WildFungibilityV2;1388 WildMultiAsset: WildMultiAsset;1389 WildMultiAssetV1: WildMultiAssetV1;1390 WildMultiAssetV2: WildMultiAssetV2;1391 WinnersData: WinnersData;1392 WinnersData10: WinnersData10;1393 WinnersDataTuple: WinnersDataTuple;1394 WinnersDataTuple10: WinnersDataTuple10;1395 WinningData: WinningData;1396 WinningData10: WinningData10;1397 WinningDataEntry: WinningDataEntry;1398 WithdrawReasons: WithdrawReasons;1399 Xcm: Xcm;1400 XcmAssetId: XcmAssetId;1401 XcmDoubleEncoded: XcmDoubleEncoded;1402 XcmError: XcmError;1403 XcmErrorV0: XcmErrorV0;1404 XcmErrorV1: XcmErrorV1;1405 XcmErrorV2: XcmErrorV2;1406 XcmOrder: XcmOrder;1407 XcmOrderV0: XcmOrderV0;1408 XcmOrderV1: XcmOrderV1;1409 XcmOrderV2: XcmOrderV2;1410 XcmOrigin: XcmOrigin;1411 XcmOriginKind: XcmOriginKind;1412 XcmpMessageFormat: XcmpMessageFormat;1413 XcmV0: XcmV0;1414 XcmV0Junction: XcmV0Junction;1415 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1416 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1417 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1418 XcmV0MultiAsset: XcmV0MultiAsset;1419 XcmV0MultiLocation: XcmV0MultiLocation;1420 XcmV0Order: XcmV0Order;1421 XcmV0OriginKind: XcmV0OriginKind;1422 XcmV0Response: XcmV0Response;1423 XcmV0Xcm: XcmV0Xcm;1424 XcmV1: XcmV1;1425 XcmV1Junction: XcmV1Junction;1426 XcmV1MultiAsset: XcmV1MultiAsset;1427 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1428 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1429 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1430 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1431 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1432 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1433 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1434 XcmV1MultiLocation: XcmV1MultiLocation;1435 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1436 XcmV1Order: XcmV1Order;1437 XcmV1Response: XcmV1Response;1438 XcmV1Xcm: XcmV1Xcm;1439 XcmV2: XcmV2;1440 XcmV2Instruction: XcmV2Instruction;1441 XcmV2Response: XcmV2Response;1442 XcmV2TraitsError: XcmV2TraitsError;1443 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1444 XcmV2WeightLimit: XcmV2WeightLimit;1445 XcmV2Xcm: XcmV2Xcm;1446 XcmVersion: XcmVersion;1447 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1448 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1449 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1450 XcmVersionedXcm: XcmVersionedXcm;1451 } // InterfaceTypes1452} // declare moduletests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1654,11 +1654,6 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
-/** @name PalletRefungibleItemData */
-export interface PalletRefungibleItemData extends Struct {
- readonly constData: Bytes;
-}
-
/** @name PalletRmrkCoreCall */
export interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -3210,73 +3210,67 @@
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
},
/**
- * Lookup417: pallet_refungible::ItemData
- **/
- PalletRefungibleItemData: {
- constData: 'Bytes'
- },
- /**
- * Lookup422: pallet_refungible::pallet::Error<T>
+ * Lookup420: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup423: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup421: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup425: up_data_structs::PropertyScope
+ * Lookup423: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup427: pallet_nonfungible::pallet::Error<T>
+ * Lookup426: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup428: pallet_structure::pallet::Error<T>
+ * Lookup427: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup429: pallet_rmrk_core::pallet::Error<T>
+ * Lookup428: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup431: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup430: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup437: pallet_app_promotion::pallet::Error<T>
+ * Lookup436: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup438: pallet_foreign_assets::module::Error<T>
+ * Lookup437: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup440: pallet_evm::pallet::Error<T>
+ * Lookup439: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
},
/**
- * Lookup443: fp_rpc::TransactionStatus
+ * Lookup442: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3288,11 +3282,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup445: ethbloom::Bloom
+ * Lookup444: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup447: ethereum::receipt::ReceiptV3
+ * Lookup446: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3302,7 +3296,7 @@
}
},
/**
- * Lookup448: ethereum::receipt::EIP658ReceiptData
+ * Lookup447: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3311,7 +3305,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup449: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup448: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3319,7 +3313,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup450: ethereum::header::Header
+ * Lookup449: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3339,23 +3333,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup451: ethereum_types::hash::H64
+ * Lookup450: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup456: pallet_ethereum::pallet::Error<T>
+ * Lookup455: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup457: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup456: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup458: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup457: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3365,35 +3359,35 @@
}
},
/**
- * Lookup459: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup458: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup465: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup464: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup466: pallet_evm_migration::pallet::Error<T>
+ * Lookup465: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup467: pallet_maintenance::pallet::Error<T>
+ * Lookup466: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup468: pallet_test_utils::pallet::Error<T>
+ * Lookup467: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup470: sp_runtime::MultiSignature
+ * Lookup469: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3403,51 +3397,51 @@
}
},
/**
- * Lookup471: sp_core::ed25519::Signature
+ * Lookup470: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup473: sp_core::sr25519::Signature
+ * Lookup472: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup474: sp_core::ecdsa::Signature
+ * Lookup473: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup477: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup476: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup478: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup477: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup479: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup478: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup482: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup481: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup483: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup482: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup484: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup483: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup485: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup484: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup486: opal_runtime::Runtime
+ * Lookup485: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup487: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup486: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -132,7 +132,6 @@
PalletNonfungibleError: PalletNonfungibleError;
PalletNonfungibleItemData: PalletNonfungibleItemData;
PalletRefungibleError: PalletRefungibleError;
- PalletRefungibleItemData: PalletRefungibleItemData;
PalletRmrkCoreCall: PalletRmrkCoreCall;
PalletRmrkCoreError: PalletRmrkCoreError;
PalletRmrkCoreEvent: PalletRmrkCoreEvent;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -3515,12 +3515,7 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
- /** @name PalletRefungibleItemData (417) */
- interface PalletRefungibleItemData extends Struct {
- readonly constData: Bytes;
- }
-
- /** @name PalletRefungibleError (422) */
+ /** @name PalletRefungibleError (420) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3530,19 +3525,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (423) */
+ /** @name PalletNonfungibleItemData (421) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (425) */
+ /** @name UpDataStructsPropertyScope (423) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (427) */
+ /** @name PalletNonfungibleError (426) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3550,7 +3545,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (428) */
+ /** @name PalletStructureError (427) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3559,7 +3554,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (429) */
+ /** @name PalletRmrkCoreError (428) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3583,7 +3578,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (431) */
+ /** @name PalletRmrkEquipError (430) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3595,7 +3590,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (437) */
+ /** @name PalletAppPromotionError (436) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3606,7 +3601,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (438) */
+ /** @name PalletForeignAssetsModuleError (437) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3615,7 +3610,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (440) */
+ /** @name PalletEvmError (439) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3631,7 +3626,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
}
- /** @name FpRpcTransactionStatus (443) */
+ /** @name FpRpcTransactionStatus (442) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3642,10 +3637,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (445) */
+ /** @name EthbloomBloom (444) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (447) */
+ /** @name EthereumReceiptReceiptV3 (446) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3656,7 +3651,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (448) */
+ /** @name EthereumReceiptEip658ReceiptData (447) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3664,14 +3659,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (449) */
+ /** @name EthereumBlock (448) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (450) */
+ /** @name EthereumHeader (449) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3690,24 +3685,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (451) */
+ /** @name EthereumTypesHashH64 (450) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (456) */
+ /** @name PalletEthereumError (455) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (457) */
+ /** @name PalletEvmCoderSubstrateError (456) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (458) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (457) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3717,7 +3712,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (459) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (458) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3725,7 +3720,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (465) */
+ /** @name PalletEvmContractHelpersError (464) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3733,7 +3728,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (466) */
+ /** @name PalletEvmMigrationError (465) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3741,17 +3736,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (467) */
+ /** @name PalletMaintenanceError (466) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (468) */
+ /** @name PalletTestUtilsError (467) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (470) */
+ /** @name SpRuntimeMultiSignature (469) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3762,40 +3757,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (471) */
+ /** @name SpCoreEd25519Signature (470) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (473) */
+ /** @name SpCoreSr25519Signature (472) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (474) */
+ /** @name SpCoreEcdsaSignature (473) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (477) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (476) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (478) */
+ /** @name FrameSystemExtensionsCheckTxVersion (477) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (479) */
+ /** @name FrameSystemExtensionsCheckGenesis (478) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (482) */
+ /** @name FrameSystemExtensionsCheckNonce (481) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (483) */
+ /** @name FrameSystemExtensionsCheckWeight (482) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (484) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (483) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (485) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (484) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (486) */
+ /** @name OpalRuntimeRuntime (485) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (487) */
+ /** @name PalletEthereumFakeTransactionFinalizer (486) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module
tests/yarn.lockdiffbeforeafterboth--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -17,49 +17,50 @@
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.20.0":
+"@babel/compat-data@^7.20.5":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
-"@babel/core@^7.20.2":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"
- integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==
+"@babel/core@^7.20.5":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f"
+ integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.5"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-module-transforms" "^7.20.2"
- "@babel/helpers" "^7.20.5"
- "@babel/parser" "^7.20.5"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/generator" "^7.20.7"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-module-transforms" "^7.20.7"
+ "@babel/helpers" "^7.20.7"
+ "@babel/parser" "^7.20.7"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/generator@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95"
- integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==
+"@babel/generator@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
+ integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
dependencies:
- "@babel/types" "^7.20.5"
+ "@babel/types" "^7.20.7"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/helper-compilation-targets@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
- integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
+"@babel/helper-compilation-targets@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
+ integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
dependencies:
- "@babel/compat-data" "^7.20.0"
+ "@babel/compat-data" "^7.20.5"
"@babel/helper-validator-option" "^7.18.6"
browserslist "^4.21.3"
+ lru-cache "^5.1.1"
semver "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
@@ -89,19 +90,19 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-module-transforms@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
- integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
+"@babel/helper-module-transforms@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43"
+ integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@babel/helper-simple-access@^7.20.2":
version "7.20.2"
@@ -132,14 +133,14 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-"@babel/helpers@^7.20.5":
- version "7.20.6"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763"
- integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==
+"@babel/helpers@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
+ integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
dependencies:
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@babel/highlight@^7.18.6":
version "7.18.6"
@@ -150,10 +151,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.18.10", "@babel/parser@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
- integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
+"@babel/parser@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
+ integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
"@babel/register@^7.18.9":
version "7.18.9"
@@ -166,42 +167,42 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6":
- version "7.20.6"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
- integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
+"@babel/runtime@^7.20.6":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
+ integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
dependencies:
regenerator-runtime "^0.13.11"
-"@babel/template@^7.18.10":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
- integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
+"@babel/template@^7.18.10", "@babel/template@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
+ integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.18.10"
- "@babel/types" "^7.18.10"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
-"@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"
- integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==
+"@babel/traverse@^7.20.7":
+ version "7.20.8"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08"
+ integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.5"
+ "@babel/generator" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.5"
- "@babel/types" "^7.20.5"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
- integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
+"@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
+ integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
@@ -214,15 +215,15 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
-"@eslint/eslintrc@^1.3.3":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95"
- integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==
+"@eslint/eslintrc@^1.4.0":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.0.tgz#8ec64e0df3e7a1971ee1ff5158da87389f167a63"
+ integrity sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
espree "^9.4.0"
- globals "^13.15.0"
+ globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.0"
@@ -430,7 +431,7 @@
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
-"@humanwhocodes/config-array@^0.11.6":
+"@humanwhocodes/config-array@^0.11.8":
version "0.11.8"
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
@@ -528,70 +529,70 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@polkadot/api-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.9.4.tgz#cb09d8edfc3a5d61c6519f30a2f02b1bb939c9f6"
- integrity sha512-+T9YWw5kEi7AkSoS2UfE1nrVeJUtD92elQBZ3bMMkfM1geKWhSnvBLyTMn6kFmNXTfK0qt8YKS1pwbux7cC9tg==
+"@polkadot/api-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.10.2.tgz#9d1875bffe9d8677a4f03d53ca6df3d0d7e7f53d"
+ integrity sha512-B0xC7yvPAZqPZpKJzrlFSDfHBawCJISwdV4/nBSs1/AaqQIXVu2ZqPUaSdq7eisZL/EZziptK0SpCtDcb6LpAg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/api-base@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.9.4.tgz#eccc645b60485bfe64a5e6a9ebb3195d2011c0ee"
- integrity sha512-G1DcxcMeGcvaAAA3u5Tbf70zE5aIuAPEAXnptFMF0lvJz4O6CM8k8ZZFTSk25hjsYlnx8WI1FTc97q4/tKie+Q==
+"@polkadot/api-base@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.10.2.tgz#39248e966b468ecff7c0ed00bb61dfca14ca99d4"
+ integrity sha512-M/Yushqk6eEAfbkF90vy3GCVg+a2uVeSXyTBKbmkjZtcE7x39GiXs7LOJuYkIim51hlwcvVSeInX8HufwnTUMw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/util" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/api-derive@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.9.4.tgz#0eedd9c604be2425d8a1adcf048446184a5aaec9"
- integrity sha512-3ka7GzY4QbI3d/DHjQ9SjfDOTDxeU8gM2Dn31BP1oFzGwdFe2GZhDIE//lR5S6UDVxNNlgWz4927AunOQcuAmg==
+"@polkadot/api-derive@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.10.2.tgz#d6b0eb558ee057416b87a304ca2790b19afa4be6"
+ integrity sha512-Ut1aqbGvqAkxXq7M4HgJ7BVhUyfbQigqt5LISmnjWdGkhroBxtIJ24saOUPYNr0O/c3jocJpoWqGK2CuucL81w==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api" "9.9.4"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api" "9.10.2"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/api@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.9.4.tgz#a4899d7497644378a94e0cc6fcbf73a5e2d31b92"
- integrity sha512-ze7W/DXsPHsixrFOACzugDQqezzrUGGX1Z2JOl6z+V8pd+ZKLSecsKJFUzf4yoBT82ArITYPtRVx/Dq9b9K2dA==
+"@polkadot/api@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.10.2.tgz#9a3132f0c8a5de6c2b7d56f9d9e9c9c5ed2bc77e"
+ integrity sha512-5leF7rxwRkkd/g11tGPho/CcbInVX7ZiuyMsLMTwn+2PDX+Ggv/gmxUboa34eyeLp8/AMui5YbqRD4QExLTxqw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/api-base" "9.9.4"
- "@polkadot/api-derive" "9.9.4"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/types-known" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/api-base" "9.10.2"
+ "@polkadot/api-derive" "9.10.2"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/types-known" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
eventemitter3 "^4.0.7"
- rxjs "^7.5.7"
+ rxjs "^7.6.0"
-"@polkadot/keyring@^10.1.14":
+"@polkadot/keyring@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"
integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==
@@ -600,7 +601,7 @@
"@polkadot/util" "10.2.1"
"@polkadot/util-crypto" "10.2.1"
-"@polkadot/networks@10.2.1", "@polkadot/networks@^10.1.14":
+"@polkadot/networks@10.2.1", "@polkadot/networks@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"
integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==
@@ -609,135 +610,135 @@
"@polkadot/util" "10.2.1"
"@substrate/ss58-registry" "^1.35.0"
-"@polkadot/rpc-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.9.4.tgz#82a1473143cb9ec1183e01babcfe7ac396ad456b"
- integrity sha512-67zGQAhJuXd/CZlwDZTgxNt3xGtsDwLvLvyFrHuNjJNM0KGCyt/OpQHVBlyZ6xfII0WZpccASN6P2MxsGTMnKw==
+"@polkadot/rpc-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.10.2.tgz#5650aa118d39d0c4b17425a9b327354f7bbf99e5"
+ integrity sha512-LrGzpSdkqXltZDwuBeBBMev68eVVN1GpgV4auEAytgDYYcjI9XDaeLZm7vUVx9aBO8OYz9hQZeHrWrab/FaKmg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-core" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-core" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/rpc-core@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.9.4.tgz#30cb94dfb9438ef54f6ab9367bc533fa6934dbc5"
- integrity sha512-DxhJcq1GAi+28nLMqhTksNMqTX40bGNhYuyQyy/to39VxizAjx+lyAHAMfzG9lvPnTIi2KzXif2pCdWq3AgJag==
+"@polkadot/rpc-core@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.10.2.tgz#72362d26012c53397c1079912d5d4aacf910a650"
+ integrity sha512-qr+q2R3YeRBC++bYxK292jb6t9/KXeLoRheW5z7LbYyre3J60vZPN7WxPxbwm+iCGk1VtvH80Dv1OSCoVC+7hA==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/util" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/rpc-provider@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.9.4.tgz#dab6d72e83e325dc170e03d0edf5f7bec07c0293"
- integrity sha512-aUkPtlYukAOFX3FkUgLw3MNy+T0mCiCX7va3PIts9ggK4vl14NFZHurCZq+5ANvknRU4WG8P5teurH9Rd9oDjQ==
+"@polkadot/rpc-provider@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.10.2.tgz#83c8e114b3aad75eedaf98a374bc77a2b8cc1dbc"
+ integrity sha512-mm8l1uZ7DOrsMUN+DELS8apyZVVNIy/SrqEBjHZeZ0AA9noAEbH4ubxR375lG/T32+T97mFudv1rxRnEwXqByg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-support" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- "@polkadot/x-fetch" "^10.1.14"
- "@polkadot/x-global" "^10.1.14"
- "@polkadot/x-ws" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-support" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ "@polkadot/x-fetch" "^10.2.1"
+ "@polkadot/x-global" "^10.2.1"
+ "@polkadot/x-ws" "^10.2.1"
"@substrate/connect" "0.7.17"
eventemitter3 "^4.0.7"
mock-socket "^9.1.5"
nock "^13.2.9"
-"@polkadot/typegen@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.9.4.tgz#24ee3122c338a359d5776e1c728160ffaaffe6b9"
- integrity sha512-uIPD3r9QCvTtz5JHQaO5T2q36U9PrmrutHXbHWWzswsWU6lxkGjIiwUOdV+IUemeQx85GVOAPInU+BnwdhPUpA==
+"@polkadot/typegen@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.10.2.tgz#3a206feaa664afe2cdcc42707b4fa8fde49ce0cc"
+ integrity sha512-AyO1f/tx173w6pZrQINPu12sCIH9uvn+yRL2sJuCBS5+aqlnsR1JscBk6HIlR6t6Jctx1QCsHycfvSvin3IVoA==
dependencies:
- "@babel/core" "^7.20.2"
+ "@babel/core" "^7.20.5"
"@babel/register" "^7.18.9"
- "@babel/runtime" "^7.20.1"
- "@polkadot/api" "9.9.4"
- "@polkadot/api-augment" "9.9.4"
- "@polkadot/rpc-augment" "9.9.4"
- "@polkadot/rpc-provider" "9.9.4"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/types-support" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- "@polkadot/x-ws" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/api" "9.10.2"
+ "@polkadot/api-augment" "9.10.2"
+ "@polkadot/rpc-augment" "9.10.2"
+ "@polkadot/rpc-provider" "9.10.2"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/types-support" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ "@polkadot/x-ws" "^10.2.1"
handlebars "^4.7.7"
websocket "^1.0.34"
yargs "^17.6.2"
-"@polkadot/types-augment@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.9.4.tgz#08a2a89c0b8000ef156a0ed41f5eb7aa55cc1bb1"
- integrity sha512-mQNc0kxt3zM6SC+5hJbsg03fxEFpn5nakki+loE2mNsWr1g+rR7LECagAZ4wT2gvdbzWuY/LlRYyDQxe0PwdZg==
+"@polkadot/types-augment@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.10.2.tgz#2dce4ea8a2879d248339ad377ff5479fae884cd5"
+ integrity sha512-z0M3bAwGi0pGS3ieXyiJZLzDEc5yBvlqaZvaAbf2r+vto83SylhbjjG1wX8ARI5hqptBUWqS9BssUFH0q6l4sg==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-codec@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.9.4.tgz#1219a6b453dab8e53a0d376f13394b02964c7665"
- integrity sha512-uSHoQQcj4813c9zNkDDH897K6JB0OznTrH5WeZ1wxpjML7lkuTJ2t/GQE9e4q5Ycl7YePZsvEp2qlc3GwrVm/w==
+"@polkadot/types-codec@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.10.2.tgz#7f0e33c33292bdfcd959945b2427742b941df712"
+ integrity sha512-zQOPzxq2N6PUP6Gkxc3OVT7Ub8AD3qC0PBeCnc/fhKjgX3CoKQK4TC6tDL8pEaaIVFh4LOHlHvhWJhqaUNe95A==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/util" "^10.1.14"
- "@polkadot/x-bigint" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/x-bigint" "^10.2.1"
-"@polkadot/types-create@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.9.4.tgz#d2d3d0e4c3cd4a0a4581dcb418a8f6bec657b986"
- integrity sha512-EOxLryRQ4JVRSRnIMXk3Tjry1tyegNuWK8OUj51A1wHrX76DF9chME27bXUP4d7el1pjqPuQ9/l+/928GG386g==
+"@polkadot/types-create@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.10.2.tgz#eb7dbf5f50eb4d01a965347d324de26a679a25e3"
+ integrity sha512-U6wDaJe8tZmt0WibxWeDFYVKfvOYa2su8xOwg8HTRraijF6k0/OMugb15bpjEkG6RZ1qg1L7oKrKghugVbRDGQ==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-known@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.9.4.tgz#d30fa2c5c964b76b748413004758d05eb8f0e8f9"
- integrity sha512-BaKXkg3yZLDv31g0CZPJsZDXX01VTjkQ0tmW9U6fmccEq3zHlxbUiXf3aKlwKRJyDWiEOxr4cQ4GT8jj6uEIuA==
+"@polkadot/types-known@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.10.2.tgz#d37d984eed6aa17b33603aca9f9d006d6eb468cb"
+ integrity sha512-Kwxoo+xvAAE1w0jZdGqmNoEJHdfJzncO1xrBJ7WjeCuEFoDsWmjP63u/o8VaC1ZNnfrhjRK0vyvquslJ6NQOUA==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/networks" "^10.1.14"
- "@polkadot/types" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/networks" "^10.2.1"
+ "@polkadot/types" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types-support@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.9.4.tgz#3f2eb1097a268bdd280d36fb53b7cdc98a5e238c"
- integrity sha512-vjhdD7B5kdTLhm2iO0QAb7fM4D2ojNUVVocOJotC9NULYtoC+PkPvkvFbw7VQ1H3u7yxyZfWloMtBnCsIp5EAA==
+"@polkadot/types-support@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.10.2.tgz#eff0ef399a3373421a543059f62ca96b85645f0b"
+ integrity sha512-RQSCNNBH8+mzXbErB/LUDU9oMQScv0GZ4UmM2MPDPKBcqXNCdJ4dK+ajNfVbgGTUucYUEebpp2m5Az1usjE4Ew==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/util" "^10.1.14"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/util" "^10.2.1"
-"@polkadot/types@9.9.4":
- version "9.9.4"
- resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.9.4.tgz#a1b38174f5a9e2aa97612157d12faffd905b126e"
- integrity sha512-/LJ029S0AtKzvV9JoQtIIeHRP/Xoq8MZmDfdHUEgThRd+uvtQzFyGmcupe4EzX0p5VAx93DUFQKm8vUdHE39Tw==
+"@polkadot/types@9.10.2":
+ version "9.10.2"
+ resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.10.2.tgz#1f6647445b055856bdbd949106f698c89a125386"
+ integrity sha512-B5Bg/IaAMJEwdWzGp3pil5WBukr5fm9x9NFIMuoCS9TyIqpm9rSHrz2n/408R3B4rwqqtx8RQAxiIETFI+m6Rw==
dependencies:
- "@babel/runtime" "^7.20.1"
- "@polkadot/keyring" "^10.1.14"
- "@polkadot/types-augment" "9.9.4"
- "@polkadot/types-codec" "9.9.4"
- "@polkadot/types-create" "9.9.4"
- "@polkadot/util" "^10.1.14"
- "@polkadot/util-crypto" "^10.1.14"
- rxjs "^7.5.7"
+ "@babel/runtime" "^7.20.6"
+ "@polkadot/keyring" "^10.2.1"
+ "@polkadot/types-augment" "9.10.2"
+ "@polkadot/types-codec" "9.10.2"
+ "@polkadot/types-create" "9.10.2"
+ "@polkadot/util" "^10.2.1"
+ "@polkadot/util-crypto" "^10.2.1"
+ rxjs "^7.6.0"
-"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.1.14":
+"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"
integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==
@@ -754,7 +755,7 @@
ed2curve "^0.3.0"
tweetnacl "^1.0.3"
-"@polkadot/util@10.2.1", "@polkadot/util@^10.1.14":
+"@polkadot/util@10.2.1", "@polkadot/util@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"
integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==
@@ -818,7 +819,7 @@
dependencies:
"@babel/runtime" "^7.20.6"
-"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.1.14":
+"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"
integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==
@@ -826,7 +827,7 @@
"@babel/runtime" "^7.20.6"
"@polkadot/x-global" "10.2.1"
-"@polkadot/x-fetch@^10.1.14":
+"@polkadot/x-fetch@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"
integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==
@@ -836,7 +837,7 @@
"@types/node-fetch" "^2.6.2"
node-fetch "^3.3.0"
-"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.1.14":
+"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"
integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==
@@ -867,7 +868,7 @@
"@babel/runtime" "^7.20.6"
"@polkadot/x-global" "10.2.1"
-"@polkadot/x-ws@^10.1.14":
+"@polkadot/x-ws@^10.2.1":
version "10.2.1"
resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"
integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==
@@ -1022,9 +1023,9 @@
form-data "^3.0.0"
"@types/node@*", "@types/node@^18.11.2":
- version "18.11.15"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.15.tgz#de0e1fbd2b22b962d45971431e2ae696643d3f5d"
- integrity sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==
+ version "18.11.17"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.17.tgz#5c009e1d9c38f4a2a9d45c0b0c493fe6cdb4bcb5"
+ integrity sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==
"@types/node@^12.12.6":
version "12.20.55"
@@ -1555,9 +1556,9 @@
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30001400:
- version "1.0.30001439"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb"
- integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==
+ version "1.0.30001441"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz#987437b266260b640a23cd18fbddb509d7f69f3e"
+ integrity sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==
caseless@~0.12.0:
version "0.12.0"
@@ -1917,7 +1918,7 @@
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
-decode-uri-component@^0.2.0:
+decode-uri-component@^0.2.0, decode-uri-component@^0.2.1:
version "0.2.2"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
@@ -2162,12 +2163,12 @@
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
eslint@^8.25.0:
- version "8.29.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz#d74a88a20fb44d59c51851625bc4ee8d0ec43f87"
- integrity sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==
+ version "8.30.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.30.0.tgz#83a506125d089eef7c5b5910eeea824273a33f50"
+ integrity sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==
dependencies:
- "@eslint/eslintrc" "^1.3.3"
- "@humanwhocodes/config-array" "^0.11.6"
+ "@eslint/eslintrc" "^1.4.0"
+ "@humanwhocodes/config-array" "^0.11.8"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
ajv "^6.10.0"
@@ -2186,7 +2187,7 @@
file-entry-cache "^6.0.1"
find-up "^5.0.0"
glob-parent "^6.0.2"
- globals "^13.15.0"
+ globals "^13.19.0"
grapheme-splitter "^1.0.4"
ignore "^5.2.0"
import-fresh "^3.0.0"
@@ -2703,7 +2704,7 @@
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-globals@^13.15.0:
+globals@^13.19.0:
version "13.19.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
@@ -2926,9 +2927,9 @@
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore@^5.2.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c"
- integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==
+ version "5.2.4"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+ integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
import-fresh@^3.0.0, import-fresh@^3.2.1:
version "3.3.0"
@@ -3136,9 +3137,9 @@
integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
json5@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
- integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab"
+ integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==
jsonfile@^4.0.0:
version "4.0.0"
@@ -3236,6 +3237,13 @@
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2"
integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==
+lru-cache@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ dependencies:
+ yallist "^3.0.2"
+
lru-cache@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
@@ -3572,9 +3580,9 @@
integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
node-releases@^2.0.6:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.7.tgz#593edbc7c22860ee4d32d3933cfebdfab0c0e0e5"
- integrity sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
+ integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
@@ -4033,10 +4041,10 @@
dependencies:
queue-microtask "^1.2.2"
-rxjs@^7.5.7:
- version "7.6.0"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.6.0.tgz#361da5362b6ddaa691a2de0b4f2d32028f1eb5a2"
- integrity sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==
+rxjs@^7.6.0:
+ version "7.8.0"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
+ integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
dependencies:
tslib "^2.1.0"
@@ -4956,7 +4964,7 @@
resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577"
integrity sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==
-yallist@^3.0.0, yallist@^3.1.1:
+yallist@^3.0.0, yallist@^3.0.2, yallist@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==