difftreelog
refactor `app-promotion` configuration pallet
in: master
13 files changed
pallets/app-promotion/CHANGELOG.mddiffbeforeafterboth--- a/pallets/app-promotion/CHANGELOG.md
+++ b/pallets/app-promotion/CHANGELOG.md
@@ -8,4 +8,4 @@
### Added
-- The ability to configure pallet `app-promotion` via the `configuration` palette
+- The ability to configure pallet `app-promotion` via the `configuration` pallet.
pallets/app-promotion/src/types.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/types.rs
+++ b/pallets/app-promotion/src/types.rs
@@ -145,12 +145,20 @@
}
impl<T: crate::Config> PalletConfiguration<T> {
pub fn get() -> Self {
- let config = <AppPromomotionConfigurationOverride<T>>::get().unwrap_or_default();
+ let config = <AppPromomotionConfigurationOverride<T>>::get();
Self {
- recalculation_interval: config.0.unwrap_or(T::RecalculationInterval::get()),
- pending_interval: config.2.unwrap_or(T::PendingInterval::get()),
- interval_income: config.1.unwrap_or(T::IntervalIncome::get()),
- max_stakers_per_calculation: config.3.unwrap_or(MAX_NUMBER_PAYOUTS),
+ recalculation_interval: config
+ .recalculation_interval
+ .unwrap_or_else(|| T::RecalculationInterval::get()),
+ pending_interval: config
+ .pending_interval
+ .unwrap_or_else(|| T::PendingInterval::get()),
+ interval_income: config
+ .interval_income
+ .unwrap_or_else(|| T::IntervalIncome::get()),
+ max_stakers_per_calculation: config
+ .max_stakers_per_calculation
+ .unwrap_or_else(|| MAX_NUMBER_PAYOUTS),
}
}
-}
+}
pallets/configuration/CHANGELOG.mddiffbeforeafterboth--- a/pallets/configuration/CHANGELOG.md
+++ b/pallets/configuration/CHANGELOG.md
@@ -3,7 +3,7 @@
### Added
-- The ability to configure pallet `app-promotion` via the `configuration` palette
+- The ability to configure pallet `app-promotion` via the `configuration` pallet.
## [v0.1.1] 2022-08-16
pallets/configuration/src/lib.rsdiffbeforeafterboth--- a/pallets/configuration/src/lib.rs
+++ b/pallets/configuration/src/lib.rs
@@ -23,6 +23,8 @@
weights::{WeightToFeePolynomial, WeightToFeeCoefficients, WeightToFeeCoefficient, Weight},
traits::Get,
};
+use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
+use scale_info::TypeInfo;
use sp_arithmetic::traits::{BaseArithmetic, Unsigned};
use smallvec::smallvec;
@@ -57,6 +59,11 @@
type DayRelayBlocks: Get<Self::BlockNumber>;
}
+ #[pallet::error]
+ pub enum Error<T> {
+ InconsistentConfiguration,
+ }
+
#[pallet::storage]
pub type WeightToFeeCoefficientOverride<T: Config> = StorageValue<
Value = u32,
@@ -75,15 +82,8 @@
>;
#[pallet::storage]
- pub type AppPromomotionConfigurationOverride<T: Config> = StorageValue<
- Value = (
- Option<T::BlockNumber>,
- Option<Perbill>,
- Option<T::BlockNumber>,
- Option<u8>,
- ),
- QueryKind = OptionQuery,
- >;
+ pub type AppPromomotionConfigurationOverride<T: Config> =
+ StorageValue<Value = AppPromotionConfiguration<T::BlockNumber>, QueryKind = ValueQuery>;
#[pallet::call]
impl<T: Config> Pallet<T> {
@@ -92,7 +92,7 @@
origin: OriginFor<T>,
coeff: Option<u32>,
) -> DispatchResult {
- let _sender = ensure_root(origin)?;
+ ensure_root(origin)?;
if let Some(coeff) = coeff {
<WeightToFeeCoefficientOverride<T>>::set(coeff);
} else {
@@ -106,7 +106,7 @@
origin: OriginFor<T>,
coeff: Option<u64>,
) -> DispatchResult {
- let _sender = ensure_root(origin)?;
+ ensure_root(origin)?;
if let Some(coeff) = coeff {
<MinGasPriceOverride<T>>::set(coeff);
} else {
@@ -120,7 +120,7 @@
origin: OriginFor<T>,
locations: Option<BoundedVec<MultiLocation, T::MaxOverridedAllowedLocations>>,
) -> DispatchResult {
- let _sender = ensure_root(origin)?;
+ ensure_root(origin)?;
<XcmAllowedLocationsOverride<T>>::set(locations);
Ok(())
}
@@ -128,32 +128,19 @@
#[pallet::weight(T::DbWeight::get().writes(1))]
pub fn set_app_promotion_configuration_override(
origin: OriginFor<T>,
- recalculation_interval: Option<T::BlockNumber>,
- pending_interval: Option<T::BlockNumber>,
- stakers_payout_limit: Option<u8>,
+ mut configuration: AppPromotionConfiguration<T::BlockNumber>,
) -> DispatchResult {
- let _sender = ensure_root(origin)?;
+ ensure_root(origin)?;
+ if configuration.interval_income.is_some() {
+ return Err(<Error<T>>::InconsistentConfiguration.into());
+ }
- if recalculation_interval.is_none()
- && pending_interval.is_none()
- && stakers_payout_limit.is_none()
- {
- <AppPromomotionConfigurationOverride<T>>::kill();
- } else {
- let mut current_config =
- <AppPromomotionConfigurationOverride<T>>::take().unwrap_or_default();
+ configuration.interval_income = configuration.recalculation_interval.map(|b| {
+ Perbill::from_rational(b, T::DayRelayBlocks::get())
+ * T::AppPromotionDailyRate::get()
+ });
- recalculation_interval.map(|b| {
- current_config.0 = Some(b);
- current_config.1 = Some(
- Perbill::from_rational(b, T::DayRelayBlocks::get())
- * T::AppPromotionDailyRate::get(),
- )
- });
- pending_interval.map(|b| current_config.2 = Some(b));
- stakers_payout_limit.map(|p| current_config.3 = Some(p));
- <AppPromomotionConfigurationOverride<T>>::set(Some(current_config));
- }
+ <AppPromomotionConfigurationOverride<T>>::set(configuration);
Ok(())
}
@@ -192,3 +179,15 @@
)
}
}
+
+#[derive(Encode, Decode, Clone, Debug, Default, TypeInfo, MaxEncodedLen, PartialEq, PartialOrd)]
+pub struct AppPromotionConfiguration<BlockNumber> {
+ /// In relay blocks.
+ pub recalculation_interval: Option<BlockNumber>,
+ /// In parachain blocks.
+ pub pending_interval: Option<BlockNumber>,
+ /// Value for `RecalculationInterval` based on 0.05% per 24h.
+ pub interval_income: Option<Perbill>,
+ /// Maximum allowable number of stakers calculated per call of the `app-promotion::PayoutStakers` extrinsic.
+ pub max_stakers_per_calculation: Option<u8>,
+}
tests/src/app-promotion.test.tsdiffbeforeafterboth--- a/tests/src/app-promotion.test.ts
+++ b/tests/src/app-promotion.test.ts
@@ -38,7 +38,7 @@
nominal = helper.balance.getOneTokenNominal();
accounts = await helper.arrange.createCrowd(100, 1000n, donor); // create accounts-pool to speed up tests
const api = helper.getApi();
- await helper.signTransaction(alice, api.tx.sudo.sudo(api.tx.configuration.setAppPromotionConfigurationOverride(LOCKING_PERIOD, UNLOCKING_PERIOD, null)));
+ await helper.executeExtrinsic(alice, 'api.tx.sudo.sudo', [api.tx.configuration.setAppPromotionConfigurationOverride({recalculationInterval: LOCKING_PERIOD, pendingInterval: UNLOCKING_PERIOD})], true);
});
});
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -229,6 +229,13 @@
**/
[key: string]: AugmentedError<ApiType>;
};
+ configuration: {
+ InconsistentConfiguration: AugmentedError<ApiType>;
+ /**
+ * Generic error
+ **/
+ [key: string]: AugmentedError<ApiType>;
+ };
cumulusXcm: {
/**
* Generic error
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -9,12 +9,17 @@
import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
<<<<<<< HEAD
+<<<<<<< HEAD
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, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
=======
import type { AccountId32, H160, H256, Perbill, Weight } 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, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
>>>>>>> added the ability to configure pallet `app-promotion` via the `configuration` palette
+=======
+import type { AccountId32, H160, H256, Weight } 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, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+>>>>>>> refactor: `app-promotion` configuration pallet
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -165,7 +170,7 @@
[key: string]: QueryableStorageEntry<ApiType>;
};
configuration: {
- appPromomotionConfigurationOverride: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[Option<u32>, Option<Perbill>, Option<u32>, Option<u8>]>>>, []> & QueryableStorageEntry<ApiType, []>;
+ appPromomotionConfigurationOverride: AugmentedQuery<ApiType, () => Observable<PalletConfigurationAppPromotionConfiguration>, []> & QueryableStorageEntry<ApiType, []>;
minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -8,8 +8,13 @@
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
+<<<<<<< HEAD
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+=======
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+>>>>>>> refactor: `app-promotion` configuration pallet
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -215,7 +220,7 @@
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
configuration: {
- setAppPromotionConfigurationOverride: AugmentedSubmittable<(recalculationInterval: Option<u32> | null | Uint8Array | u32 | AnyNumber, pendingInterval: Option<u32> | null | Uint8Array | u32 | AnyNumber, stakersPayoutLimit: Option<u8> | null | Uint8Array | u8 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>, Option<u32>, Option<u8>]>;
+ setAppPromotionConfigurationOverride: AugmentedSubmittable<(configuration: PalletConfigurationAppPromotionConfiguration | { recalculationInterval?: any; pendingInterval?: any; intervalIncome?: any; maxStakersPerCalculation?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletConfigurationAppPromotionConfiguration]>;
setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
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, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';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, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, 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 } 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 ContractInfo: ContractInfo;277 ContractInstantiateResult: ContractInstantiateResult;278 ContractInstantiateResultTo267: ContractInstantiateResultTo267;279 ContractInstantiateResultTo299: ContractInstantiateResultTo299;280 ContractLayoutArray: ContractLayoutArray;281 ContractLayoutCell: ContractLayoutCell;282 ContractLayoutEnum: ContractLayoutEnum;283 ContractLayoutHash: ContractLayoutHash;284 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;285 ContractLayoutKey: ContractLayoutKey;286 ContractLayoutStruct: ContractLayoutStruct;287 ContractLayoutStructField: ContractLayoutStructField;288 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;289 ContractMessageParamSpecV0: ContractMessageParamSpecV0;290 ContractMessageParamSpecV2: ContractMessageParamSpecV2;291 ContractMessageSpecLatest: ContractMessageSpecLatest;292 ContractMessageSpecV0: ContractMessageSpecV0;293 ContractMessageSpecV1: ContractMessageSpecV1;294 ContractMessageSpecV2: ContractMessageSpecV2;295 ContractMetadata: ContractMetadata;296 ContractMetadataLatest: ContractMetadataLatest;297 ContractMetadataV0: ContractMetadataV0;298 ContractMetadataV1: ContractMetadataV1;299 ContractMetadataV2: ContractMetadataV2;300 ContractMetadataV3: ContractMetadataV3;301 ContractMetadataV4: ContractMetadataV4;302 ContractProject: ContractProject;303 ContractProjectContract: ContractProjectContract;304 ContractProjectInfo: ContractProjectInfo;305 ContractProjectSource: ContractProjectSource;306 ContractProjectV0: ContractProjectV0;307 ContractReturnFlags: ContractReturnFlags;308 ContractSelector: ContractSelector;309 ContractStorageKey: ContractStorageKey;310 ContractStorageLayout: ContractStorageLayout;311 ContractTypeSpec: ContractTypeSpec;312 Conviction: Conviction;313 CoreAssignment: CoreAssignment;314 CoreIndex: CoreIndex;315 CoreOccupied: CoreOccupied;316 CoreState: CoreState;317 CrateVersion: CrateVersion;318 CreatedBlock: CreatedBlock;319 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;320 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;321 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;322 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;323 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;324 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;325 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;326 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;327 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;328 CumulusPalletXcmCall: CumulusPalletXcmCall;329 CumulusPalletXcmError: CumulusPalletXcmError;330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;331 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;332 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;333 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;334 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;335 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;336 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;337 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;338 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;339 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;340 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;341 Data: Data;342 DeferredOffenceOf: DeferredOffenceOf;343 DefunctVoter: DefunctVoter;344 DelayKind: DelayKind;345 DelayKindBest: DelayKindBest;346 Delegations: Delegations;347 DeletedContract: DeletedContract;348 DeliveredMessages: DeliveredMessages;349 DepositBalance: DepositBalance;350 DepositBalanceOf: DepositBalanceOf;351 DestroyWitness: DestroyWitness;352 Digest: Digest;353 DigestItem: DigestItem;354 DigestOf: DigestOf;355 DispatchClass: DispatchClass;356 DispatchError: DispatchError;357 DispatchErrorModule: DispatchErrorModule;358 DispatchErrorModulePre6: DispatchErrorModulePre6;359 DispatchErrorModuleU8: DispatchErrorModuleU8;360 DispatchErrorModuleU8a: DispatchErrorModuleU8a;361 DispatchErrorPre6: DispatchErrorPre6;362 DispatchErrorPre6First: DispatchErrorPre6First;363 DispatchErrorTo198: DispatchErrorTo198;364 DispatchFeePayment: DispatchFeePayment;365 DispatchInfo: DispatchInfo;366 DispatchInfoTo190: DispatchInfoTo190;367 DispatchInfoTo244: DispatchInfoTo244;368 DispatchOutcome: DispatchOutcome;369 DispatchOutcomePre6: DispatchOutcomePre6;370 DispatchResult: DispatchResult;371 DispatchResultOf: DispatchResultOf;372 DispatchResultTo198: DispatchResultTo198;373 DisputeLocation: DisputeLocation;374 DisputeResult: DisputeResult;375 DisputeState: DisputeState;376 DisputeStatement: DisputeStatement;377 DisputeStatementSet: DisputeStatementSet;378 DoubleEncodedCall: DoubleEncodedCall;379 DoubleVoteReport: DoubleVoteReport;380 DownwardMessage: DownwardMessage;381 EcdsaSignature: EcdsaSignature;382 Ed25519Signature: Ed25519Signature;383 EIP1559Transaction: EIP1559Transaction;384 EIP2930Transaction: EIP2930Transaction;385 ElectionCompute: ElectionCompute;386 ElectionPhase: ElectionPhase;387 ElectionResult: ElectionResult;388 ElectionScore: ElectionScore;389 ElectionSize: ElectionSize;390 ElectionStatus: ElectionStatus;391 EncodedFinalityProofs: EncodedFinalityProofs;392 EncodedJustification: EncodedJustification;393 Epoch: Epoch;394 EpochAuthorship: EpochAuthorship;395 Era: Era;396 EraIndex: EraIndex;397 EraPoints: EraPoints;398 EraRewardPoints: EraRewardPoints;399 EraRewards: EraRewards;400 ErrorMetadataLatest: ErrorMetadataLatest;401 ErrorMetadataV10: ErrorMetadataV10;402 ErrorMetadataV11: ErrorMetadataV11;403 ErrorMetadataV12: ErrorMetadataV12;404 ErrorMetadataV13: ErrorMetadataV13;405 ErrorMetadataV14: ErrorMetadataV14;406 ErrorMetadataV9: ErrorMetadataV9;407 EthAccessList: EthAccessList;408 EthAccessListItem: EthAccessListItem;409 EthAccount: EthAccount;410 EthAddress: EthAddress;411 EthBlock: EthBlock;412 EthBloom: EthBloom;413 EthbloomBloom: EthbloomBloom;414 EthCallRequest: EthCallRequest;415 EthereumAccountId: EthereumAccountId;416 EthereumAddress: EthereumAddress;417 EthereumBlock: EthereumBlock;418 EthereumHeader: EthereumHeader;419 EthereumLog: EthereumLog;420 EthereumLookupSource: EthereumLookupSource;421 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;422 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;423 EthereumSignature: EthereumSignature;424 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;425 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;426 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;427 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;428 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;429 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;430 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;431 EthereumTypesHashH64: EthereumTypesHashH64;432 EthFeeHistory: EthFeeHistory;433 EthFilter: EthFilter;434 EthFilterAddress: EthFilterAddress;435 EthFilterChanges: EthFilterChanges;436 EthFilterTopic: EthFilterTopic;437 EthFilterTopicEntry: EthFilterTopicEntry;438 EthFilterTopicInner: EthFilterTopicInner;439 EthHeader: EthHeader;440 EthLog: EthLog;441 EthReceipt: EthReceipt;442 EthReceiptV0: EthReceiptV0;443 EthReceiptV3: EthReceiptV3;444 EthRichBlock: EthRichBlock;445 EthRichHeader: EthRichHeader;446 EthStorageProof: EthStorageProof;447 EthSubKind: EthSubKind;448 EthSubParams: EthSubParams;449 EthSubResult: EthSubResult;450 EthSyncInfo: EthSyncInfo;451 EthSyncStatus: EthSyncStatus;452 EthTransaction: EthTransaction;453 EthTransactionAction: EthTransactionAction;454 EthTransactionCondition: EthTransactionCondition;455 EthTransactionRequest: EthTransactionRequest;456 EthTransactionSignature: EthTransactionSignature;457 EthTransactionStatus: EthTransactionStatus;458 EthWork: EthWork;459 Event: Event;460 EventId: EventId;461 EventIndex: EventIndex;462 EventMetadataLatest: EventMetadataLatest;463 EventMetadataV10: EventMetadataV10;464 EventMetadataV11: EventMetadataV11;465 EventMetadataV12: EventMetadataV12;466 EventMetadataV13: EventMetadataV13;467 EventMetadataV14: EventMetadataV14;468 EventMetadataV9: EventMetadataV9;469 EventRecord: EventRecord;470 EvmAccount: EvmAccount;471 EvmCallInfo: EvmCallInfo;472 EvmCoreErrorExitError: EvmCoreErrorExitError;473 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;474 EvmCoreErrorExitReason: EvmCoreErrorExitReason;475 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;476 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;477 EvmCreateInfo: EvmCreateInfo;478 EvmLog: EvmLog;479 EvmVicinity: EvmVicinity;480 ExecReturnValue: ExecReturnValue;481 ExitError: ExitError;482 ExitFatal: ExitFatal;483 ExitReason: ExitReason;484 ExitRevert: ExitRevert;485 ExitSucceed: ExitSucceed;486 ExplicitDisputeStatement: ExplicitDisputeStatement;487 Exposure: Exposure;488 ExtendedBalance: ExtendedBalance;489 Extrinsic: Extrinsic;490 ExtrinsicEra: ExtrinsicEra;491 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;492 ExtrinsicMetadataV11: ExtrinsicMetadataV11;493 ExtrinsicMetadataV12: ExtrinsicMetadataV12;494 ExtrinsicMetadataV13: ExtrinsicMetadataV13;495 ExtrinsicMetadataV14: ExtrinsicMetadataV14;496 ExtrinsicOrHash: ExtrinsicOrHash;497 ExtrinsicPayload: ExtrinsicPayload;498 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;499 ExtrinsicPayloadV4: ExtrinsicPayloadV4;500 ExtrinsicSignature: ExtrinsicSignature;501 ExtrinsicSignatureV4: ExtrinsicSignatureV4;502 ExtrinsicStatus: ExtrinsicStatus;503 ExtrinsicsWeight: ExtrinsicsWeight;504 ExtrinsicUnknown: ExtrinsicUnknown;505 ExtrinsicV4: ExtrinsicV4;506 f32: f32;507 F32: F32;508 f64: f64;509 F64: F64;510 FeeDetails: FeeDetails;511 Fixed128: Fixed128;512 Fixed64: Fixed64;513 FixedI128: FixedI128;514 FixedI64: FixedI64;515 FixedU128: FixedU128;516 FixedU64: FixedU64;517 Forcing: Forcing;518 ForkTreePendingChange: ForkTreePendingChange;519 ForkTreePendingChangeNode: ForkTreePendingChangeNode;520 FpRpcTransactionStatus: FpRpcTransactionStatus;521 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;522 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;523 FrameSupportDispatchPays: FrameSupportDispatchPays;524 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;525 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;526 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;527 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;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 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;775 OpalRuntimeRuntime: OpalRuntimeRuntime;776 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;777 OpaqueCall: OpaqueCall;778 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;779 OpaqueMetadata: OpaqueMetadata;780 OpaqueMultiaddr: OpaqueMultiaddr;781 OpaqueNetworkState: OpaqueNetworkState;782 OpaquePeerId: OpaquePeerId;783 OpaqueTimeSlot: OpaqueTimeSlot;784 OpenTip: OpenTip;785 OpenTipFinderTo225: OpenTipFinderTo225;786 OpenTipTip: OpenTipTip;787 OpenTipTo225: OpenTipTo225;788 OperatingMode: OperatingMode;789 OptionBool: OptionBool;790 Origin: Origin;791 OriginCaller: OriginCaller;792 OriginKindV0: OriginKindV0;793 OriginKindV1: OriginKindV1;794 OriginKindV2: OriginKindV2;795 OrmlTokensAccountData: OrmlTokensAccountData;796 OrmlTokensBalanceLock: OrmlTokensBalanceLock;797 OrmlTokensModuleCall: OrmlTokensModuleCall;798 OrmlTokensModuleError: OrmlTokensModuleError;799 OrmlTokensModuleEvent: OrmlTokensModuleEvent;800 OrmlTokensReserveData: OrmlTokensReserveData;801 OrmlVestingModuleCall: OrmlVestingModuleCall;802 OrmlVestingModuleError: OrmlVestingModuleError;803 OrmlVestingModuleEvent: OrmlVestingModuleEvent;804 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;805 OrmlXtokensModuleCall: OrmlXtokensModuleCall;806 OrmlXtokensModuleError: OrmlXtokensModuleError;807 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;808 OutboundHrmpMessage: OutboundHrmpMessage;809 OutboundLaneData: OutboundLaneData;810 OutboundMessageFee: OutboundMessageFee;811 OutboundPayload: OutboundPayload;812 OutboundStatus: OutboundStatus;813 Outcome: Outcome;814 OverweightIndex: OverweightIndex;815 Owner: Owner;816 PageCounter: PageCounter;817 PageIndexData: PageIndexData;818 PalletAppPromotionCall: PalletAppPromotionCall;819 PalletAppPromotionError: PalletAppPromotionError;820 PalletAppPromotionEvent: PalletAppPromotionEvent;821 PalletBalancesAccountData: PalletBalancesAccountData;822 PalletBalancesBalanceLock: PalletBalancesBalanceLock;823 PalletBalancesCall: PalletBalancesCall;824 PalletBalancesError: PalletBalancesError;825 PalletBalancesEvent: PalletBalancesEvent;826 PalletBalancesReasons: PalletBalancesReasons;827 PalletBalancesReleases: PalletBalancesReleases;828 PalletBalancesReserveData: PalletBalancesReserveData;829 PalletCallMetadataLatest: PalletCallMetadataLatest;830 PalletCallMetadataV14: PalletCallMetadataV14;831 PalletCommonError: PalletCommonError;832 PalletCommonEvent: PalletCommonEvent;833 PalletConfigurationCall: PalletConfigurationCall;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 PalletEthereumRawOrigin: PalletEthereumRawOrigin;843 PalletEventMetadataLatest: PalletEventMetadataLatest;844 PalletEventMetadataV14: PalletEventMetadataV14;845 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;846 PalletEvmCall: PalletEvmCall;847 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;848 PalletEvmContractHelpersError: PalletEvmContractHelpersError;849 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;850 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;851 PalletEvmError: PalletEvmError;852 PalletEvmEvent: PalletEvmEvent;853 PalletEvmMigrationCall: PalletEvmMigrationCall;854 PalletEvmMigrationError: PalletEvmMigrationError;855 PalletEvmMigrationEvent: PalletEvmMigrationEvent;856 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;857 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;858 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;859 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;860 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;861 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;862 PalletFungibleError: PalletFungibleError;863 PalletId: PalletId;864 PalletInflationCall: PalletInflationCall;865 PalletMaintenanceCall: PalletMaintenanceCall;866 PalletMaintenanceError: PalletMaintenanceError;867 PalletMaintenanceEvent: PalletMaintenanceEvent;868 PalletMetadataLatest: PalletMetadataLatest;869 PalletMetadataV14: PalletMetadataV14;870 PalletNonfungibleError: PalletNonfungibleError;871 PalletNonfungibleItemData: PalletNonfungibleItemData;872 PalletRefungibleError: PalletRefungibleError;873 PalletRefungibleItemData: PalletRefungibleItemData;874 PalletRmrkCoreCall: PalletRmrkCoreCall;875 PalletRmrkCoreError: PalletRmrkCoreError;876 PalletRmrkCoreEvent: PalletRmrkCoreEvent;877 PalletRmrkEquipCall: PalletRmrkEquipCall;878 PalletRmrkEquipError: PalletRmrkEquipError;879 PalletRmrkEquipEvent: PalletRmrkEquipEvent;880 PalletsOrigin: PalletsOrigin;881 PalletStorageMetadataLatest: PalletStorageMetadataLatest;882 PalletStorageMetadataV14: PalletStorageMetadataV14;883 PalletStructureCall: PalletStructureCall;884 PalletStructureError: PalletStructureError;885 PalletStructureEvent: PalletStructureEvent;886 PalletSudoCall: PalletSudoCall;887 PalletSudoError: PalletSudoError;888 PalletSudoEvent: PalletSudoEvent;889 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;890 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;891 PalletTestUtilsCall: PalletTestUtilsCall;892 PalletTestUtilsError: PalletTestUtilsError;893 PalletTestUtilsEvent: PalletTestUtilsEvent;894 PalletTimestampCall: PalletTimestampCall;895 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;896 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;897 PalletTreasuryCall: PalletTreasuryCall;898 PalletTreasuryError: PalletTreasuryError;899 PalletTreasuryEvent: PalletTreasuryEvent;900 PalletTreasuryProposal: PalletTreasuryProposal;901 PalletUniqueCall: PalletUniqueCall;902 PalletUniqueError: PalletUniqueError;903 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;904 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;905 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;906 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;907 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;908 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;909 PalletVersion: PalletVersion;910 PalletXcmCall: PalletXcmCall;911 PalletXcmError: PalletXcmError;912 PalletXcmEvent: PalletXcmEvent;913 PalletXcmOrigin: PalletXcmOrigin;914 ParachainDispatchOrigin: ParachainDispatchOrigin;915 ParachainInherentData: ParachainInherentData;916 ParachainProposal: ParachainProposal;917 ParachainsInherentData: ParachainsInherentData;918 ParaGenesisArgs: ParaGenesisArgs;919 ParaId: ParaId;920 ParaInfo: ParaInfo;921 ParaLifecycle: ParaLifecycle;922 Parameter: Parameter;923 ParaPastCodeMeta: ParaPastCodeMeta;924 ParaScheduling: ParaScheduling;925 ParathreadClaim: ParathreadClaim;926 ParathreadClaimQueue: ParathreadClaimQueue;927 ParathreadEntry: ParathreadEntry;928 ParaValidatorIndex: ParaValidatorIndex;929 Pays: Pays;930 Peer: Peer;931 PeerEndpoint: PeerEndpoint;932 PeerEndpointAddr: PeerEndpointAddr;933 PeerInfo: PeerInfo;934 PeerPing: PeerPing;935 PendingChange: PendingChange;936 PendingPause: PendingPause;937 PendingResume: PendingResume;938 Perbill: Perbill;939 Percent: Percent;940 PerDispatchClassU32: PerDispatchClassU32;941 PerDispatchClassWeight: PerDispatchClassWeight;942 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;943 Period: Period;944 Permill: Permill;945 PermissionLatest: PermissionLatest;946 PermissionsV1: PermissionsV1;947 PermissionVersions: PermissionVersions;948 Perquintill: Perquintill;949 PersistedValidationData: PersistedValidationData;950 PerU16: PerU16;951 Phantom: Phantom;952 PhantomData: PhantomData;953 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;954 Phase: Phase;955 PhragmenScore: PhragmenScore;956 Points: Points;957 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;958 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;959 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;960 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;961 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;962 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;963 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;964 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;965 PortableType: PortableType;966 PortableTypeV14: PortableTypeV14;967 Precommits: Precommits;968 PrefabWasmModule: PrefabWasmModule;969 PrefixedStorageKey: PrefixedStorageKey;970 PreimageStatus: PreimageStatus;971 PreimageStatusAvailable: PreimageStatusAvailable;972 PreRuntime: PreRuntime;973 Prevotes: Prevotes;974 Priority: Priority;975 PriorLock: PriorLock;976 PropIndex: PropIndex;977 Proposal: Proposal;978 ProposalIndex: ProposalIndex;979 ProxyAnnouncement: ProxyAnnouncement;980 ProxyDefinition: ProxyDefinition;981 ProxyState: ProxyState;982 ProxyType: ProxyType;983 PvfCheckStatement: PvfCheckStatement;984 QueryId: QueryId;985 QueryStatus: QueryStatus;986 QueueConfigData: QueueConfigData;987 QueuedParathread: QueuedParathread;988 Randomness: Randomness;989 Raw: Raw;990 RawAuraPreDigest: RawAuraPreDigest;991 RawBabePreDigest: RawBabePreDigest;992 RawBabePreDigestCompat: RawBabePreDigestCompat;993 RawBabePreDigestPrimary: RawBabePreDigestPrimary;994 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;995 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;996 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;997 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;998 RawBabePreDigestTo159: RawBabePreDigestTo159;999 RawOrigin: RawOrigin;1000 RawSolution: RawSolution;1001 RawSolutionTo265: RawSolutionTo265;1002 RawSolutionWith16: RawSolutionWith16;1003 RawSolutionWith24: RawSolutionWith24;1004 RawVRFOutput: RawVRFOutput;1005 ReadProof: ReadProof;1006 ReadySolution: ReadySolution;1007 Reasons: Reasons;1008 RecoveryConfig: RecoveryConfig;1009 RefCount: RefCount;1010 RefCountTo259: RefCountTo259;1011 ReferendumIndex: ReferendumIndex;1012 ReferendumInfo: ReferendumInfo;1013 ReferendumInfoFinished: ReferendumInfoFinished;1014 ReferendumInfoTo239: ReferendumInfoTo239;1015 ReferendumStatus: ReferendumStatus;1016 RegisteredParachainInfo: RegisteredParachainInfo;1017 RegistrarIndex: RegistrarIndex;1018 RegistrarInfo: RegistrarInfo;1019 Registration: Registration;1020 RegistrationJudgement: RegistrationJudgement;1021 RegistrationTo198: RegistrationTo198;1022 RelayBlockNumber: RelayBlockNumber;1023 RelayChainBlockNumber: RelayChainBlockNumber;1024 RelayChainHash: RelayChainHash;1025 RelayerId: RelayerId;1026 RelayHash: RelayHash;1027 Releases: Releases;1028 Remark: Remark;1029 Renouncing: Renouncing;1030 RentProjection: RentProjection;1031 ReplacementTimes: ReplacementTimes;1032 ReportedRoundStates: ReportedRoundStates;1033 Reporter: Reporter;1034 ReportIdOf: ReportIdOf;1035 ReserveData: ReserveData;1036 ReserveIdentifier: ReserveIdentifier;1037 Response: Response;1038 ResponseV0: ResponseV0;1039 ResponseV1: ResponseV1;1040 ResponseV2: ResponseV2;1041 ResponseV2Error: ResponseV2Error;1042 ResponseV2Result: ResponseV2Result;1043 Retriable: Retriable;1044 RewardDestination: RewardDestination;1045 RewardPoint: RewardPoint;1046 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1047 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1048 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1049 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1050 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1051 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1052 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1053 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1054 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1055 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1056 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1057 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1058 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1059 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1060 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1061 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1062 RmrkTraitsTheme: RmrkTraitsTheme;1063 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1064 RoundSnapshot: RoundSnapshot;1065 RoundState: RoundState;1066 RpcMethods: RpcMethods;1067 RuntimeDbWeight: RuntimeDbWeight;1068 RuntimeDispatchInfo: RuntimeDispatchInfo;1069 RuntimeVersion: RuntimeVersion;1070 RuntimeVersionApi: RuntimeVersionApi;1071 RuntimeVersionPartial: RuntimeVersionPartial;1072 RuntimeVersionPre3: RuntimeVersionPre3;1073 RuntimeVersionPre4: RuntimeVersionPre4;1074 Schedule: Schedule;1075 Scheduled: Scheduled;1076 ScheduledCore: ScheduledCore;1077 ScheduledTo254: ScheduledTo254;1078 SchedulePeriod: SchedulePeriod;1079 SchedulePriority: SchedulePriority;1080 ScheduleTo212: ScheduleTo212;1081 ScheduleTo258: ScheduleTo258;1082 ScheduleTo264: ScheduleTo264;1083 Scheduling: Scheduling;1084 ScrapedOnChainVotes: ScrapedOnChainVotes;1085 Seal: Seal;1086 SealV0: SealV0;1087 SeatHolder: SeatHolder;1088 SeedOf: SeedOf;1089 ServiceQuality: ServiceQuality;1090 SessionIndex: SessionIndex;1091 SessionInfo: SessionInfo;1092 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1093 SessionKeys1: SessionKeys1;1094 SessionKeys10: SessionKeys10;1095 SessionKeys10B: SessionKeys10B;1096 SessionKeys2: SessionKeys2;1097 SessionKeys3: SessionKeys3;1098 SessionKeys4: SessionKeys4;1099 SessionKeys5: SessionKeys5;1100 SessionKeys6: SessionKeys6;1101 SessionKeys6B: SessionKeys6B;1102 SessionKeys7: SessionKeys7;1103 SessionKeys7B: SessionKeys7B;1104 SessionKeys8: SessionKeys8;1105 SessionKeys8B: SessionKeys8B;1106 SessionKeys9: SessionKeys9;1107 SessionKeys9B: SessionKeys9B;1108 SetId: SetId;1109 SetIndex: SetIndex;1110 Si0Field: Si0Field;1111 Si0LookupTypeId: Si0LookupTypeId;1112 Si0Path: Si0Path;1113 Si0Type: Si0Type;1114 Si0TypeDef: Si0TypeDef;1115 Si0TypeDefArray: Si0TypeDefArray;1116 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1117 Si0TypeDefCompact: Si0TypeDefCompact;1118 Si0TypeDefComposite: Si0TypeDefComposite;1119 Si0TypeDefPhantom: Si0TypeDefPhantom;1120 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1121 Si0TypeDefSequence: Si0TypeDefSequence;1122 Si0TypeDefTuple: Si0TypeDefTuple;1123 Si0TypeDefVariant: Si0TypeDefVariant;1124 Si0TypeParameter: Si0TypeParameter;1125 Si0Variant: Si0Variant;1126 Si1Field: Si1Field;1127 Si1LookupTypeId: Si1LookupTypeId;1128 Si1Path: Si1Path;1129 Si1Type: Si1Type;1130 Si1TypeDef: Si1TypeDef;1131 Si1TypeDefArray: Si1TypeDefArray;1132 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1133 Si1TypeDefCompact: Si1TypeDefCompact;1134 Si1TypeDefComposite: Si1TypeDefComposite;1135 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1136 Si1TypeDefSequence: Si1TypeDefSequence;1137 Si1TypeDefTuple: Si1TypeDefTuple;1138 Si1TypeDefVariant: Si1TypeDefVariant;1139 Si1TypeParameter: Si1TypeParameter;1140 Si1Variant: Si1Variant;1141 SiField: SiField;1142 Signature: Signature;1143 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1144 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1145 SignedBlock: SignedBlock;1146 SignedBlockWithJustification: SignedBlockWithJustification;1147 SignedBlockWithJustifications: SignedBlockWithJustifications;1148 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1149 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1150 SignedSubmission: SignedSubmission;1151 SignedSubmissionOf: SignedSubmissionOf;1152 SignedSubmissionTo276: SignedSubmissionTo276;1153 SignerPayload: SignerPayload;1154 SigningContext: SigningContext;1155 SiLookupTypeId: SiLookupTypeId;1156 SiPath: SiPath;1157 SiType: SiType;1158 SiTypeDef: SiTypeDef;1159 SiTypeDefArray: SiTypeDefArray;1160 SiTypeDefBitSequence: SiTypeDefBitSequence;1161 SiTypeDefCompact: SiTypeDefCompact;1162 SiTypeDefComposite: SiTypeDefComposite;1163 SiTypeDefPrimitive: SiTypeDefPrimitive;1164 SiTypeDefSequence: SiTypeDefSequence;1165 SiTypeDefTuple: SiTypeDefTuple;1166 SiTypeDefVariant: SiTypeDefVariant;1167 SiTypeParameter: SiTypeParameter;1168 SiVariant: SiVariant;1169 SlashingSpans: SlashingSpans;1170 SlashingSpansTo204: SlashingSpansTo204;1171 SlashJournalEntry: SlashJournalEntry;1172 Slot: Slot;1173 SlotDuration: SlotDuration;1174 SlotNumber: SlotNumber;1175 SlotRange: SlotRange;1176 SlotRange10: SlotRange10;1177 SocietyJudgement: SocietyJudgement;1178 SocietyVote: SocietyVote;1179 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1180 SolutionSupport: SolutionSupport;1181 SolutionSupports: SolutionSupports;1182 SpanIndex: SpanIndex;1183 SpanRecord: SpanRecord;1184 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1185 SpCoreEd25519Signature: SpCoreEd25519Signature;1186 SpCoreSr25519Signature: SpCoreSr25519Signature;1187 SpCoreVoid: SpCoreVoid;1188 SpecVersion: SpecVersion;1189 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1190 SpRuntimeDigest: SpRuntimeDigest;1191 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1192 SpRuntimeDispatchError: SpRuntimeDispatchError;1193 SpRuntimeModuleError: SpRuntimeModuleError;1194 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1195 SpRuntimeTokenError: SpRuntimeTokenError;1196 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1197 SpTrieStorageProof: SpTrieStorageProof;1198 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1199 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1200 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1201 Sr25519Signature: Sr25519Signature;1202 StakingLedger: StakingLedger;1203 StakingLedgerTo223: StakingLedgerTo223;1204 StakingLedgerTo240: StakingLedgerTo240;1205 Statement: Statement;1206 StatementKind: StatementKind;1207 StorageChangeSet: StorageChangeSet;1208 StorageData: StorageData;1209 StorageDeposit: StorageDeposit;1210 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1211 StorageEntryMetadataV10: StorageEntryMetadataV10;1212 StorageEntryMetadataV11: StorageEntryMetadataV11;1213 StorageEntryMetadataV12: StorageEntryMetadataV12;1214 StorageEntryMetadataV13: StorageEntryMetadataV13;1215 StorageEntryMetadataV14: StorageEntryMetadataV14;1216 StorageEntryMetadataV9: StorageEntryMetadataV9;1217 StorageEntryModifierLatest: StorageEntryModifierLatest;1218 StorageEntryModifierV10: StorageEntryModifierV10;1219 StorageEntryModifierV11: StorageEntryModifierV11;1220 StorageEntryModifierV12: StorageEntryModifierV12;1221 StorageEntryModifierV13: StorageEntryModifierV13;1222 StorageEntryModifierV14: StorageEntryModifierV14;1223 StorageEntryModifierV9: StorageEntryModifierV9;1224 StorageEntryTypeLatest: StorageEntryTypeLatest;1225 StorageEntryTypeV10: StorageEntryTypeV10;1226 StorageEntryTypeV11: StorageEntryTypeV11;1227 StorageEntryTypeV12: StorageEntryTypeV12;1228 StorageEntryTypeV13: StorageEntryTypeV13;1229 StorageEntryTypeV14: StorageEntryTypeV14;1230 StorageEntryTypeV9: StorageEntryTypeV9;1231 StorageHasher: StorageHasher;1232 StorageHasherV10: StorageHasherV10;1233 StorageHasherV11: StorageHasherV11;1234 StorageHasherV12: StorageHasherV12;1235 StorageHasherV13: StorageHasherV13;1236 StorageHasherV14: StorageHasherV14;1237 StorageHasherV9: StorageHasherV9;1238 StorageInfo: StorageInfo;1239 StorageKey: StorageKey;1240 StorageKind: StorageKind;1241 StorageMetadataV10: StorageMetadataV10;1242 StorageMetadataV11: StorageMetadataV11;1243 StorageMetadataV12: StorageMetadataV12;1244 StorageMetadataV13: StorageMetadataV13;1245 StorageMetadataV9: StorageMetadataV9;1246 StorageProof: StorageProof;1247 StoredPendingChange: StoredPendingChange;1248 StoredState: StoredState;1249 StrikeCount: StrikeCount;1250 SubId: SubId;1251 SubmissionIndicesOf: SubmissionIndicesOf;1252 Supports: Supports;1253 SyncState: SyncState;1254 SystemInherentData: SystemInherentData;1255 SystemOrigin: SystemOrigin;1256 Tally: Tally;1257 TaskAddress: TaskAddress;1258 TAssetBalance: TAssetBalance;1259 TAssetDepositBalance: TAssetDepositBalance;1260 Text: Text;1261 Timepoint: Timepoint;1262 TokenError: TokenError;1263 TombstoneContractInfo: TombstoneContractInfo;1264 TraceBlockResponse: TraceBlockResponse;1265 TraceError: TraceError;1266 TransactionalError: TransactionalError;1267 TransactionInfo: TransactionInfo;1268 TransactionLongevity: TransactionLongevity;1269 TransactionPriority: TransactionPriority;1270 TransactionSource: TransactionSource;1271 TransactionStorageProof: TransactionStorageProof;1272 TransactionTag: TransactionTag;1273 TransactionV0: TransactionV0;1274 TransactionV1: TransactionV1;1275 TransactionV2: TransactionV2;1276 TransactionValidity: TransactionValidity;1277 TransactionValidityError: TransactionValidityError;1278 TransientValidationData: TransientValidationData;1279 TreasuryProposal: TreasuryProposal;1280 TrieId: TrieId;1281 TrieIndex: TrieIndex;1282 Type: Type;1283 u128: u128;1284 U128: U128;1285 u16: u16;1286 U16: U16;1287 u256: u256;1288 U256: U256;1289 u32: u32;1290 U32: U32;1291 U32F32: U32F32;1292 u64: u64;1293 U64: U64;1294 u8: u8;1295 U8: U8;1296 UnappliedSlash: UnappliedSlash;1297 UnappliedSlashOther: UnappliedSlashOther;1298 UncleEntryItem: UncleEntryItem;1299 UnknownTransaction: UnknownTransaction;1300 UnlockChunk: UnlockChunk;1301 UnrewardedRelayer: UnrewardedRelayer;1302 UnrewardedRelayersState: UnrewardedRelayersState;1303 UpDataStructsAccessMode: UpDataStructsAccessMode;1304 UpDataStructsCollection: UpDataStructsCollection;1305 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1306 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1307 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1308 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1309 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1310 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1311 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1312 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1313 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1314 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1315 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1316 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1317 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1318 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1319 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1320 UpDataStructsProperties: UpDataStructsProperties;1321 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1322 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1323 UpDataStructsProperty: UpDataStructsProperty;1324 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1325 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1326 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1327 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1328 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1329 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1330 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1331 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1332 UpDataStructsTokenChild: UpDataStructsTokenChild;1333 UpDataStructsTokenData: UpDataStructsTokenData;1334 UpgradeGoAhead: UpgradeGoAhead;1335 UpgradeRestriction: UpgradeRestriction;1336 UpwardMessage: UpwardMessage;1337 usize: usize;1338 USize: USize;1339 ValidationCode: ValidationCode;1340 ValidationCodeHash: ValidationCodeHash;1341 ValidationData: ValidationData;1342 ValidationDataType: ValidationDataType;1343 ValidationFunctionParams: ValidationFunctionParams;1344 ValidatorCount: ValidatorCount;1345 ValidatorId: ValidatorId;1346 ValidatorIdOf: ValidatorIdOf;1347 ValidatorIndex: ValidatorIndex;1348 ValidatorIndexCompact: ValidatorIndexCompact;1349 ValidatorPrefs: ValidatorPrefs;1350 ValidatorPrefsTo145: ValidatorPrefsTo145;1351 ValidatorPrefsTo196: ValidatorPrefsTo196;1352 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1353 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1354 ValidatorSet: ValidatorSet;1355 ValidatorSetId: ValidatorSetId;1356 ValidatorSignature: ValidatorSignature;1357 ValidDisputeStatementKind: ValidDisputeStatementKind;1358 ValidityAttestation: ValidityAttestation;1359 ValidTransaction: ValidTransaction;1360 VecInboundHrmpMessage: VecInboundHrmpMessage;1361 VersionedMultiAsset: VersionedMultiAsset;1362 VersionedMultiAssets: VersionedMultiAssets;1363 VersionedMultiLocation: VersionedMultiLocation;1364 VersionedResponse: VersionedResponse;1365 VersionedXcm: VersionedXcm;1366 VersionMigrationStage: VersionMigrationStage;1367 VestingInfo: VestingInfo;1368 VestingSchedule: VestingSchedule;1369 Vote: Vote;1370 VoteIndex: VoteIndex;1371 Voter: Voter;1372 VoterInfo: VoterInfo;1373 Votes: Votes;1374 VotesTo230: VotesTo230;1375 VoteThreshold: VoteThreshold;1376 VoteWeight: VoteWeight;1377 Voting: Voting;1378 VotingDelegating: VotingDelegating;1379 VotingDirect: VotingDirect;1380 VotingDirectVote: VotingDirectVote;1381 VouchingStatus: VouchingStatus;1382 VrfData: VrfData;1383 VrfOutput: VrfOutput;1384 VrfProof: VrfProof;1385 Weight: Weight;1386 WeightLimitV2: WeightLimitV2;1387 WeightMultiplier: WeightMultiplier;1388 WeightPerClass: WeightPerClass;1389 WeightToFeeCoefficient: WeightToFeeCoefficient;1390 WeightV1: WeightV1;1391 WeightV2: WeightV2;1392 WildFungibility: WildFungibility;1393 WildFungibilityV0: WildFungibilityV0;1394 WildFungibilityV1: WildFungibilityV1;1395 WildFungibilityV2: WildFungibilityV2;1396 WildMultiAsset: WildMultiAsset;1397 WildMultiAssetV1: WildMultiAssetV1;1398 WildMultiAssetV2: WildMultiAssetV2;1399 WinnersData: WinnersData;1400 WinnersData10: WinnersData10;1401 WinnersDataTuple: WinnersDataTuple;1402 WinnersDataTuple10: WinnersDataTuple10;1403 WinningData: WinningData;1404 WinningData10: WinningData10;1405 WinningDataEntry: WinningDataEntry;1406 WithdrawReasons: WithdrawReasons;1407 Xcm: Xcm;1408 XcmAssetId: XcmAssetId;1409 XcmDoubleEncoded: XcmDoubleEncoded;1410 XcmError: XcmError;1411 XcmErrorV0: XcmErrorV0;1412 XcmErrorV1: XcmErrorV1;1413 XcmErrorV2: XcmErrorV2;1414 XcmOrder: XcmOrder;1415 XcmOrderV0: XcmOrderV0;1416 XcmOrderV1: XcmOrderV1;1417 XcmOrderV2: XcmOrderV2;1418 XcmOrigin: XcmOrigin;1419 XcmOriginKind: XcmOriginKind;1420 XcmpMessageFormat: XcmpMessageFormat;1421 XcmV0: XcmV0;1422 XcmV0Junction: XcmV0Junction;1423 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1424 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1425 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1426 XcmV0MultiAsset: XcmV0MultiAsset;1427 XcmV0MultiLocation: XcmV0MultiLocation;1428 XcmV0Order: XcmV0Order;1429 XcmV0OriginKind: XcmV0OriginKind;1430 XcmV0Response: XcmV0Response;1431 XcmV0Xcm: XcmV0Xcm;1432 XcmV1: XcmV1;1433 XcmV1Junction: XcmV1Junction;1434 XcmV1MultiAsset: XcmV1MultiAsset;1435 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1436 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1437 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1438 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1439 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1440 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1441 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1442 XcmV1MultiLocation: XcmV1MultiLocation;1443 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1444 XcmV1Order: XcmV1Order;1445 XcmV1Response: XcmV1Response;1446 XcmV1Xcm: XcmV1Xcm;1447 XcmV2: XcmV2;1448 XcmV2Instruction: XcmV2Instruction;1449 XcmV2Response: XcmV2Response;1450 XcmV2TraitsError: XcmV2TraitsError;1451 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1452 XcmV2WeightLimit: XcmV2WeightLimit;1453 XcmV2Xcm: XcmV2Xcm;1454 XcmVersion: XcmVersion;1455 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1456 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1457 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1458 XcmVersionedXcm: XcmVersionedXcm;1459 } // InterfaceTypes1460} // 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';78<<<<<<< HEAD9import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';10=======11<<<<<<< HEAD12import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';13=======14import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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';15>>>>>>> refactor: `app-promotion` configuration pallet16>>>>>>> e2b20310... refactor: `app-promotion` configuration pallet17import type { Data, StorageKey } from '@polkadot/types';18import 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';19import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';20import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';21import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';22import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';23import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';24import 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';25import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';26import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';27import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';28import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';29import 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';30import type { BlockHash } from '@polkadot/types/interfaces/chain';31import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';32import type { StatementKind } from '@polkadot/types/interfaces/claims';33import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';34import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';35import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';36import 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';37import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';38import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';39import 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';40import type { BlockStats } from '@polkadot/types/interfaces/dev';41import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';42import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';43import 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';44import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';45import 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';46import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';47import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';48import 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';49import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';50import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';51import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';52import 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';53import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';54import type { NpApiError } from '@polkadot/types/interfaces/nompools';55import type { StorageKind } from '@polkadot/types/interfaces/offchain';56import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';57import 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';58import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';59import type { Approvals } from '@polkadot/types/interfaces/poll';60import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';61import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';62import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';63import type { RpcMethods } from '@polkadot/types/interfaces/rpc';64import 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';65import 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';66import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';67import 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';68import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';69import 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';70import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';71import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';72import 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';73import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';74import type { Multiplier } from '@polkadot/types/interfaces/txpayment';75import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';76import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';77import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';78import type { VestingInfo } from '@polkadot/types/interfaces/vesting';79import 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';8081declare module '@polkadot/types/types/registry' {82 interface InterfaceTypes {83 AbridgedCandidateReceipt: AbridgedCandidateReceipt;84 AbridgedHostConfiguration: AbridgedHostConfiguration;85 AbridgedHrmpChannel: AbridgedHrmpChannel;86 AccountData: AccountData;87 AccountId: AccountId;88 AccountId20: AccountId20;89 AccountId32: AccountId32;90 AccountId33: AccountId33;91 AccountIdOf: AccountIdOf;92 AccountIndex: AccountIndex;93 AccountInfo: AccountInfo;94 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;95 AccountInfoWithProviders: AccountInfoWithProviders;96 AccountInfoWithRefCount: AccountInfoWithRefCount;97 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;98 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;99 AccountStatus: AccountStatus;100 AccountValidity: AccountValidity;101 AccountVote: AccountVote;102 AccountVoteSplit: AccountVoteSplit;103 AccountVoteStandard: AccountVoteStandard;104 ActiveEraInfo: ActiveEraInfo;105 ActiveGilt: ActiveGilt;106 ActiveGiltsTotal: ActiveGiltsTotal;107 ActiveIndex: ActiveIndex;108 ActiveRecovery: ActiveRecovery;109 Address: Address;110 AliveContractInfo: AliveContractInfo;111 AllowedSlots: AllowedSlots;112 AnySignature: AnySignature;113 ApiId: ApiId;114 ApplyExtrinsicResult: ApplyExtrinsicResult;115 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;116 ApprovalFlag: ApprovalFlag;117 Approvals: Approvals;118 ArithmeticError: ArithmeticError;119 AssetApproval: AssetApproval;120 AssetApprovalKey: AssetApprovalKey;121 AssetBalance: AssetBalance;122 AssetDestroyWitness: AssetDestroyWitness;123 AssetDetails: AssetDetails;124 AssetId: AssetId;125 AssetInstance: AssetInstance;126 AssetInstanceV0: AssetInstanceV0;127 AssetInstanceV1: AssetInstanceV1;128 AssetInstanceV2: AssetInstanceV2;129 AssetMetadata: AssetMetadata;130 AssetOptions: AssetOptions;131 AssignmentId: AssignmentId;132 AssignmentKind: AssignmentKind;133 AttestedCandidate: AttestedCandidate;134 AuctionIndex: AuctionIndex;135 AuthIndex: AuthIndex;136 AuthorityDiscoveryId: AuthorityDiscoveryId;137 AuthorityId: AuthorityId;138 AuthorityIndex: AuthorityIndex;139 AuthorityList: AuthorityList;140 AuthoritySet: AuthoritySet;141 AuthoritySetChange: AuthoritySetChange;142 AuthoritySetChanges: AuthoritySetChanges;143 AuthoritySignature: AuthoritySignature;144 AuthorityWeight: AuthorityWeight;145 AvailabilityBitfield: AvailabilityBitfield;146 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;147 BabeAuthorityWeight: BabeAuthorityWeight;148 BabeBlockWeight: BabeBlockWeight;149 BabeEpochConfiguration: BabeEpochConfiguration;150 BabeEquivocationProof: BabeEquivocationProof;151 BabeGenesisConfiguration: BabeGenesisConfiguration;152 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;153 BabeWeight: BabeWeight;154 BackedCandidate: BackedCandidate;155 Balance: Balance;156 BalanceLock: BalanceLock;157 BalanceLockTo212: BalanceLockTo212;158 BalanceOf: BalanceOf;159 BalanceStatus: BalanceStatus;160 BeefyAuthoritySet: BeefyAuthoritySet;161 BeefyCommitment: BeefyCommitment;162 BeefyId: BeefyId;163 BeefyKey: BeefyKey;164 BeefyNextAuthoritySet: BeefyNextAuthoritySet;165 BeefyPayload: BeefyPayload;166 BeefyPayloadId: BeefyPayloadId;167 BeefySignedCommitment: BeefySignedCommitment;168 BenchmarkBatch: BenchmarkBatch;169 BenchmarkConfig: BenchmarkConfig;170 BenchmarkList: BenchmarkList;171 BenchmarkMetadata: BenchmarkMetadata;172 BenchmarkParameter: BenchmarkParameter;173 BenchmarkResult: BenchmarkResult;174 Bid: Bid;175 Bidder: Bidder;176 BidKind: BidKind;177 BitVec: BitVec;178 Block: Block;179 BlockAttestations: BlockAttestations;180 BlockHash: BlockHash;181 BlockLength: BlockLength;182 BlockNumber: BlockNumber;183 BlockNumberFor: BlockNumberFor;184 BlockNumberOf: BlockNumberOf;185 BlockStats: BlockStats;186 BlockTrace: BlockTrace;187 BlockTraceEvent: BlockTraceEvent;188 BlockTraceEventData: BlockTraceEventData;189 BlockTraceSpan: BlockTraceSpan;190 BlockV0: BlockV0;191 BlockV1: BlockV1;192 BlockV2: BlockV2;193 BlockWeights: BlockWeights;194 BodyId: BodyId;195 BodyPart: BodyPart;196 bool: bool;197 Bool: Bool;198 Bounty: Bounty;199 BountyIndex: BountyIndex;200 BountyStatus: BountyStatus;201 BountyStatusActive: BountyStatusActive;202 BountyStatusCuratorProposed: BountyStatusCuratorProposed;203 BountyStatusPendingPayout: BountyStatusPendingPayout;204 BridgedBlockHash: BridgedBlockHash;205 BridgedBlockNumber: BridgedBlockNumber;206 BridgedHeader: BridgedHeader;207 BridgeMessageId: BridgeMessageId;208 BufferedSessionChange: BufferedSessionChange;209 Bytes: Bytes;210 Call: Call;211 CallHash: CallHash;212 CallHashOf: CallHashOf;213 CallIndex: CallIndex;214 CallOrigin: CallOrigin;215 CandidateCommitments: CandidateCommitments;216 CandidateDescriptor: CandidateDescriptor;217 CandidateEvent: CandidateEvent;218 CandidateHash: CandidateHash;219 CandidateInfo: CandidateInfo;220 CandidatePendingAvailability: CandidatePendingAvailability;221 CandidateReceipt: CandidateReceipt;222 ChainId: ChainId;223 ChainProperties: ChainProperties;224 ChainType: ChainType;225 ChangesTrieConfiguration: ChangesTrieConfiguration;226 ChangesTrieSignal: ChangesTrieSignal;227 CheckInherentsResult: CheckInherentsResult;228 ClassDetails: ClassDetails;229 ClassId: ClassId;230 ClassMetadata: ClassMetadata;231 CodecHash: CodecHash;232 CodeHash: CodeHash;233 CodeSource: CodeSource;234 CodeUploadRequest: CodeUploadRequest;235 CodeUploadResult: CodeUploadResult;236 CodeUploadResultValue: CodeUploadResultValue;237 CollationInfo: CollationInfo;238 CollationInfoV1: CollationInfoV1;239 CollatorId: CollatorId;240 CollatorSignature: CollatorSignature;241 CollectiveOrigin: CollectiveOrigin;242 CommittedCandidateReceipt: CommittedCandidateReceipt;243 CompactAssignments: CompactAssignments;244 CompactAssignmentsTo257: CompactAssignmentsTo257;245 CompactAssignmentsTo265: CompactAssignmentsTo265;246 CompactAssignmentsWith16: CompactAssignmentsWith16;247 CompactAssignmentsWith24: CompactAssignmentsWith24;248 CompactScore: CompactScore;249 CompactScoreCompact: CompactScoreCompact;250 ConfigData: ConfigData;251 Consensus: Consensus;252 ConsensusEngineId: ConsensusEngineId;253 ConsumedWeight: ConsumedWeight;254 ContractCallFlags: ContractCallFlags;255 ContractCallRequest: ContractCallRequest;256 ContractConstructorSpecLatest: ContractConstructorSpecLatest;257 ContractConstructorSpecV0: ContractConstructorSpecV0;258 ContractConstructorSpecV1: ContractConstructorSpecV1;259 ContractConstructorSpecV2: ContractConstructorSpecV2;260 ContractConstructorSpecV3: ContractConstructorSpecV3;261 ContractContractSpecV0: ContractContractSpecV0;262 ContractContractSpecV1: ContractContractSpecV1;263 ContractContractSpecV2: ContractContractSpecV2;264 ContractContractSpecV3: ContractContractSpecV3;265 ContractContractSpecV4: ContractContractSpecV4;266 ContractCryptoHasher: ContractCryptoHasher;267 ContractDiscriminant: ContractDiscriminant;268 ContractDisplayName: ContractDisplayName;269 ContractEventParamSpecLatest: ContractEventParamSpecLatest;270 ContractEventParamSpecV0: ContractEventParamSpecV0;271 ContractEventParamSpecV2: ContractEventParamSpecV2;272 ContractEventSpecLatest: ContractEventSpecLatest;273 ContractEventSpecV0: ContractEventSpecV0;274 ContractEventSpecV1: ContractEventSpecV1;275 ContractEventSpecV2: ContractEventSpecV2;276 ContractExecResult: ContractExecResult;277 ContractExecResultOk: ContractExecResultOk;278 ContractExecResultResult: ContractExecResultResult;279 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;280 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;281 ContractExecResultTo255: ContractExecResultTo255;282 ContractExecResultTo260: ContractExecResultTo260;283 ContractExecResultTo267: ContractExecResultTo267;284 ContractInfo: ContractInfo;285 ContractInstantiateResult: ContractInstantiateResult;286 ContractInstantiateResultTo267: ContractInstantiateResultTo267;287 ContractInstantiateResultTo299: ContractInstantiateResultTo299;288 ContractLayoutArray: ContractLayoutArray;289 ContractLayoutCell: ContractLayoutCell;290 ContractLayoutEnum: ContractLayoutEnum;291 ContractLayoutHash: ContractLayoutHash;292 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;293 ContractLayoutKey: ContractLayoutKey;294 ContractLayoutStruct: ContractLayoutStruct;295 ContractLayoutStructField: ContractLayoutStructField;296 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;297 ContractMessageParamSpecV0: ContractMessageParamSpecV0;298 ContractMessageParamSpecV2: ContractMessageParamSpecV2;299 ContractMessageSpecLatest: ContractMessageSpecLatest;300 ContractMessageSpecV0: ContractMessageSpecV0;301 ContractMessageSpecV1: ContractMessageSpecV1;302 ContractMessageSpecV2: ContractMessageSpecV2;303 ContractMetadata: ContractMetadata;304 ContractMetadataLatest: ContractMetadataLatest;305 ContractMetadataV0: ContractMetadataV0;306 ContractMetadataV1: ContractMetadataV1;307 ContractMetadataV2: ContractMetadataV2;308 ContractMetadataV3: ContractMetadataV3;309 ContractMetadataV4: ContractMetadataV4;310 ContractProject: ContractProject;311 ContractProjectContract: ContractProjectContract;312 ContractProjectInfo: ContractProjectInfo;313 ContractProjectSource: ContractProjectSource;314 ContractProjectV0: ContractProjectV0;315 ContractReturnFlags: ContractReturnFlags;316 ContractSelector: ContractSelector;317 ContractStorageKey: ContractStorageKey;318 ContractStorageLayout: ContractStorageLayout;319 ContractTypeSpec: ContractTypeSpec;320 Conviction: Conviction;321 CoreAssignment: CoreAssignment;322 CoreIndex: CoreIndex;323 CoreOccupied: CoreOccupied;324 CoreState: CoreState;325 CrateVersion: CrateVersion;326 CreatedBlock: CreatedBlock;327 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;328 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;329 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;330 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;331 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;332 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;333 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;334 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;335 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;336 CumulusPalletXcmCall: CumulusPalletXcmCall;337 CumulusPalletXcmError: CumulusPalletXcmError;338 CumulusPalletXcmEvent: CumulusPalletXcmEvent;339 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;340 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;341 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;342 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;343 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;344 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;345 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;346 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;347 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;348 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;349 Data: Data;350 DeferredOffenceOf: DeferredOffenceOf;351 DefunctVoter: DefunctVoter;352 DelayKind: DelayKind;353 DelayKindBest: DelayKindBest;354 Delegations: Delegations;355 DeletedContract: DeletedContract;356 DeliveredMessages: DeliveredMessages;357 DepositBalance: DepositBalance;358 DepositBalanceOf: DepositBalanceOf;359 DestroyWitness: DestroyWitness;360 Digest: Digest;361 DigestItem: DigestItem;362 DigestOf: DigestOf;363 DispatchClass: DispatchClass;364 DispatchError: DispatchError;365 DispatchErrorModule: DispatchErrorModule;366 DispatchErrorModulePre6: DispatchErrorModulePre6;367 DispatchErrorModuleU8: DispatchErrorModuleU8;368 DispatchErrorModuleU8a: DispatchErrorModuleU8a;369 DispatchErrorPre6: DispatchErrorPre6;370 DispatchErrorPre6First: DispatchErrorPre6First;371 DispatchErrorTo198: DispatchErrorTo198;372 DispatchFeePayment: DispatchFeePayment;373 DispatchInfo: DispatchInfo;374 DispatchInfoTo190: DispatchInfoTo190;375 DispatchInfoTo244: DispatchInfoTo244;376 DispatchOutcome: DispatchOutcome;377 DispatchOutcomePre6: DispatchOutcomePre6;378 DispatchResult: DispatchResult;379 DispatchResultOf: DispatchResultOf;380 DispatchResultTo198: DispatchResultTo198;381 DisputeLocation: DisputeLocation;382 DisputeResult: DisputeResult;383 DisputeState: DisputeState;384 DisputeStatement: DisputeStatement;385 DisputeStatementSet: DisputeStatementSet;386 DoubleEncodedCall: DoubleEncodedCall;387 DoubleVoteReport: DoubleVoteReport;388 DownwardMessage: DownwardMessage;389 EcdsaSignature: EcdsaSignature;390 Ed25519Signature: Ed25519Signature;391 EIP1559Transaction: EIP1559Transaction;392 EIP2930Transaction: EIP2930Transaction;393 ElectionCompute: ElectionCompute;394 ElectionPhase: ElectionPhase;395 ElectionResult: ElectionResult;396 ElectionScore: ElectionScore;397 ElectionSize: ElectionSize;398 ElectionStatus: ElectionStatus;399 EncodedFinalityProofs: EncodedFinalityProofs;400 EncodedJustification: EncodedJustification;401 Epoch: Epoch;402 EpochAuthorship: EpochAuthorship;403 Era: Era;404 EraIndex: EraIndex;405 EraPoints: EraPoints;406 EraRewardPoints: EraRewardPoints;407 EraRewards: EraRewards;408 ErrorMetadataLatest: ErrorMetadataLatest;409 ErrorMetadataV10: ErrorMetadataV10;410 ErrorMetadataV11: ErrorMetadataV11;411 ErrorMetadataV12: ErrorMetadataV12;412 ErrorMetadataV13: ErrorMetadataV13;413 ErrorMetadataV14: ErrorMetadataV14;414 ErrorMetadataV9: ErrorMetadataV9;415 EthAccessList: EthAccessList;416 EthAccessListItem: EthAccessListItem;417 EthAccount: EthAccount;418 EthAddress: EthAddress;419 EthBlock: EthBlock;420 EthBloom: EthBloom;421 EthbloomBloom: EthbloomBloom;422 EthCallRequest: EthCallRequest;423 EthereumAccountId: EthereumAccountId;424 EthereumAddress: EthereumAddress;425 EthereumBlock: EthereumBlock;426 EthereumHeader: EthereumHeader;427 EthereumLog: EthereumLog;428 EthereumLookupSource: EthereumLookupSource;429 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;430 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;431 EthereumSignature: EthereumSignature;432 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;433 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;434 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;435 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;436 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;437 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;438 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;439 EthereumTypesHashH64: EthereumTypesHashH64;440 EthFeeHistory: EthFeeHistory;441 EthFilter: EthFilter;442 EthFilterAddress: EthFilterAddress;443 EthFilterChanges: EthFilterChanges;444 EthFilterTopic: EthFilterTopic;445 EthFilterTopicEntry: EthFilterTopicEntry;446 EthFilterTopicInner: EthFilterTopicInner;447 EthHeader: EthHeader;448 EthLog: EthLog;449 EthReceipt: EthReceipt;450 EthReceiptV0: EthReceiptV0;451 EthReceiptV3: EthReceiptV3;452 EthRichBlock: EthRichBlock;453 EthRichHeader: EthRichHeader;454 EthStorageProof: EthStorageProof;455 EthSubKind: EthSubKind;456 EthSubParams: EthSubParams;457 EthSubResult: EthSubResult;458 EthSyncInfo: EthSyncInfo;459 EthSyncStatus: EthSyncStatus;460 EthTransaction: EthTransaction;461 EthTransactionAction: EthTransactionAction;462 EthTransactionCondition: EthTransactionCondition;463 EthTransactionRequest: EthTransactionRequest;464 EthTransactionSignature: EthTransactionSignature;465 EthTransactionStatus: EthTransactionStatus;466 EthWork: EthWork;467 Event: Event;468 EventId: EventId;469 EventIndex: EventIndex;470 EventMetadataLatest: EventMetadataLatest;471 EventMetadataV10: EventMetadataV10;472 EventMetadataV11: EventMetadataV11;473 EventMetadataV12: EventMetadataV12;474 EventMetadataV13: EventMetadataV13;475 EventMetadataV14: EventMetadataV14;476 EventMetadataV9: EventMetadataV9;477 EventRecord: EventRecord;478 EvmAccount: EvmAccount;479 EvmCallInfo: EvmCallInfo;480 EvmCoreErrorExitError: EvmCoreErrorExitError;481 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;482 EvmCoreErrorExitReason: EvmCoreErrorExitReason;483 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;484 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;485 EvmCreateInfo: EvmCreateInfo;486 EvmLog: EvmLog;487 EvmVicinity: EvmVicinity;488 ExecReturnValue: ExecReturnValue;489 ExitError: ExitError;490 ExitFatal: ExitFatal;491 ExitReason: ExitReason;492 ExitRevert: ExitRevert;493 ExitSucceed: ExitSucceed;494 ExplicitDisputeStatement: ExplicitDisputeStatement;495 Exposure: Exposure;496 ExtendedBalance: ExtendedBalance;497 Extrinsic: Extrinsic;498 ExtrinsicEra: ExtrinsicEra;499 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;500 ExtrinsicMetadataV11: ExtrinsicMetadataV11;501 ExtrinsicMetadataV12: ExtrinsicMetadataV12;502 ExtrinsicMetadataV13: ExtrinsicMetadataV13;503 ExtrinsicMetadataV14: ExtrinsicMetadataV14;504 ExtrinsicOrHash: ExtrinsicOrHash;505 ExtrinsicPayload: ExtrinsicPayload;506 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;507 ExtrinsicPayloadV4: ExtrinsicPayloadV4;508 ExtrinsicSignature: ExtrinsicSignature;509 ExtrinsicSignatureV4: ExtrinsicSignatureV4;510 ExtrinsicStatus: ExtrinsicStatus;511 ExtrinsicsWeight: ExtrinsicsWeight;512 ExtrinsicUnknown: ExtrinsicUnknown;513 ExtrinsicV4: ExtrinsicV4;514 f32: f32;515 F32: F32;516 f64: f64;517 F64: F64;518 FeeDetails: FeeDetails;519 Fixed128: Fixed128;520 Fixed64: Fixed64;521 FixedI128: FixedI128;522 FixedI64: FixedI64;523 FixedU128: FixedU128;524 FixedU64: FixedU64;525 Forcing: Forcing;526 ForkTreePendingChange: ForkTreePendingChange;527 ForkTreePendingChangeNode: ForkTreePendingChangeNode;528 FpRpcTransactionStatus: FpRpcTransactionStatus;529 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;530 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;531 FrameSupportDispatchPays: FrameSupportDispatchPays;532 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;533 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;534 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;535 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;536 FrameSupportPalletId: FrameSupportPalletId;537 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;538 FrameSystemAccountInfo: FrameSystemAccountInfo;539 FrameSystemCall: FrameSystemCall;540 FrameSystemError: FrameSystemError;541 FrameSystemEvent: FrameSystemEvent;542 FrameSystemEventRecord: FrameSystemEventRecord;543 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;544 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;545 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;546 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;547 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;548 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;549 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;550 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;551 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;552 FrameSystemPhase: FrameSystemPhase;553 FullIdentification: FullIdentification;554 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;555 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;556 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;557 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;558 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;559 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;560 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;561 FunctionMetadataLatest: FunctionMetadataLatest;562 FunctionMetadataV10: FunctionMetadataV10;563 FunctionMetadataV11: FunctionMetadataV11;564 FunctionMetadataV12: FunctionMetadataV12;565 FunctionMetadataV13: FunctionMetadataV13;566 FunctionMetadataV14: FunctionMetadataV14;567 FunctionMetadataV9: FunctionMetadataV9;568 FundIndex: FundIndex;569 FundInfo: FundInfo;570 Fungibility: Fungibility;571 FungibilityV0: FungibilityV0;572 FungibilityV1: FungibilityV1;573 FungibilityV2: FungibilityV2;574 Gas: Gas;575 GiltBid: GiltBid;576 GlobalValidationData: GlobalValidationData;577 GlobalValidationSchedule: GlobalValidationSchedule;578 GrandpaCommit: GrandpaCommit;579 GrandpaEquivocation: GrandpaEquivocation;580 GrandpaEquivocationProof: GrandpaEquivocationProof;581 GrandpaEquivocationValue: GrandpaEquivocationValue;582 GrandpaJustification: GrandpaJustification;583 GrandpaPrecommit: GrandpaPrecommit;584 GrandpaPrevote: GrandpaPrevote;585 GrandpaSignedPrecommit: GrandpaSignedPrecommit;586 GroupIndex: GroupIndex;587 GroupRotationInfo: GroupRotationInfo;588 H1024: H1024;589 H128: H128;590 H160: H160;591 H2048: H2048;592 H256: H256;593 H32: H32;594 H512: H512;595 H64: H64;596 Hash: Hash;597 HeadData: HeadData;598 Header: Header;599 HeaderPartial: HeaderPartial;600 Health: Health;601 Heartbeat: Heartbeat;602 HeartbeatTo244: HeartbeatTo244;603 HostConfiguration: HostConfiguration;604 HostFnWeights: HostFnWeights;605 HostFnWeightsTo264: HostFnWeightsTo264;606 HrmpChannel: HrmpChannel;607 HrmpChannelId: HrmpChannelId;608 HrmpOpenChannelRequest: HrmpOpenChannelRequest;609 i128: i128;610 I128: I128;611 i16: i16;612 I16: I16;613 i256: i256;614 I256: I256;615 i32: i32;616 I32: I32;617 I32F32: I32F32;618 i64: i64;619 I64: I64;620 i8: i8;621 I8: I8;622 IdentificationTuple: IdentificationTuple;623 IdentityFields: IdentityFields;624 IdentityInfo: IdentityInfo;625 IdentityInfoAdditional: IdentityInfoAdditional;626 IdentityInfoTo198: IdentityInfoTo198;627 IdentityJudgement: IdentityJudgement;628 ImmortalEra: ImmortalEra;629 ImportedAux: ImportedAux;630 InboundDownwardMessage: InboundDownwardMessage;631 InboundHrmpMessage: InboundHrmpMessage;632 InboundHrmpMessages: InboundHrmpMessages;633 InboundLaneData: InboundLaneData;634 InboundRelayer: InboundRelayer;635 InboundStatus: InboundStatus;636 IncludedBlocks: IncludedBlocks;637 InclusionFee: InclusionFee;638 IncomingParachain: IncomingParachain;639 IncomingParachainDeploy: IncomingParachainDeploy;640 IncomingParachainFixed: IncomingParachainFixed;641 Index: Index;642 IndicesLookupSource: IndicesLookupSource;643 IndividualExposure: IndividualExposure;644 InherentData: InherentData;645 InherentIdentifier: InherentIdentifier;646 InitializationData: InitializationData;647 InstanceDetails: InstanceDetails;648 InstanceId: InstanceId;649 InstanceMetadata: InstanceMetadata;650 InstantiateRequest: InstantiateRequest;651 InstantiateRequestV1: InstantiateRequestV1;652 InstantiateRequestV2: InstantiateRequestV2;653 InstantiateReturnValue: InstantiateReturnValue;654 InstantiateReturnValueOk: InstantiateReturnValueOk;655 InstantiateReturnValueTo267: InstantiateReturnValueTo267;656 InstructionV2: InstructionV2;657 InstructionWeights: InstructionWeights;658 InteriorMultiLocation: InteriorMultiLocation;659 InvalidDisputeStatementKind: InvalidDisputeStatementKind;660 InvalidTransaction: InvalidTransaction;661 Json: Json;662 Junction: Junction;663 Junctions: Junctions;664 JunctionsV1: JunctionsV1;665 JunctionsV2: JunctionsV2;666 JunctionV0: JunctionV0;667 JunctionV1: JunctionV1;668 JunctionV2: JunctionV2;669 Justification: Justification;670 JustificationNotification: JustificationNotification;671 Justifications: Justifications;672 Key: Key;673 KeyOwnerProof: KeyOwnerProof;674 Keys: Keys;675 KeyType: KeyType;676 KeyTypeId: KeyTypeId;677 KeyValue: KeyValue;678 KeyValueOption: KeyValueOption;679 Kind: Kind;680 LaneId: LaneId;681 LastContribution: LastContribution;682 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;683 LeasePeriod: LeasePeriod;684 LeasePeriodOf: LeasePeriodOf;685 LegacyTransaction: LegacyTransaction;686 Limits: Limits;687 LimitsTo264: LimitsTo264;688 LocalValidationData: LocalValidationData;689 LockIdentifier: LockIdentifier;690 LookupSource: LookupSource;691 LookupTarget: LookupTarget;692 LotteryConfig: LotteryConfig;693 MaybeRandomness: MaybeRandomness;694 MaybeVrf: MaybeVrf;695 MemberCount: MemberCount;696 MembershipProof: MembershipProof;697 MessageData: MessageData;698 MessageId: MessageId;699 MessageIngestionType: MessageIngestionType;700 MessageKey: MessageKey;701 MessageNonce: MessageNonce;702 MessageQueueChain: MessageQueueChain;703 MessagesDeliveryProofOf: MessagesDeliveryProofOf;704 MessagesProofOf: MessagesProofOf;705 MessagingStateSnapshot: MessagingStateSnapshot;706 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;707 MetadataAll: MetadataAll;708 MetadataLatest: MetadataLatest;709 MetadataV10: MetadataV10;710 MetadataV11: MetadataV11;711 MetadataV12: MetadataV12;712 MetadataV13: MetadataV13;713 MetadataV14: MetadataV14;714 MetadataV9: MetadataV9;715 MigrationStatusResult: MigrationStatusResult;716 MmrBatchProof: MmrBatchProof;717 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;718 MmrError: MmrError;719 MmrLeafBatchProof: MmrLeafBatchProof;720 MmrLeafIndex: MmrLeafIndex;721 MmrLeafProof: MmrLeafProof;722 MmrNodeIndex: MmrNodeIndex;723 MmrProof: MmrProof;724 MmrRootHash: MmrRootHash;725 ModuleConstantMetadataV10: ModuleConstantMetadataV10;726 ModuleConstantMetadataV11: ModuleConstantMetadataV11;727 ModuleConstantMetadataV12: ModuleConstantMetadataV12;728 ModuleConstantMetadataV13: ModuleConstantMetadataV13;729 ModuleConstantMetadataV9: ModuleConstantMetadataV9;730 ModuleId: ModuleId;731 ModuleMetadataV10: ModuleMetadataV10;732 ModuleMetadataV11: ModuleMetadataV11;733 ModuleMetadataV12: ModuleMetadataV12;734 ModuleMetadataV13: ModuleMetadataV13;735 ModuleMetadataV9: ModuleMetadataV9;736 Moment: Moment;737 MomentOf: MomentOf;738 MoreAttestations: MoreAttestations;739 MortalEra: MortalEra;740 MultiAddress: MultiAddress;741 MultiAsset: MultiAsset;742 MultiAssetFilter: MultiAssetFilter;743 MultiAssetFilterV1: MultiAssetFilterV1;744 MultiAssetFilterV2: MultiAssetFilterV2;745 MultiAssets: MultiAssets;746 MultiAssetsV1: MultiAssetsV1;747 MultiAssetsV2: MultiAssetsV2;748 MultiAssetV0: MultiAssetV0;749 MultiAssetV1: MultiAssetV1;750 MultiAssetV2: MultiAssetV2;751 MultiDisputeStatementSet: MultiDisputeStatementSet;752 MultiLocation: MultiLocation;753 MultiLocationV0: MultiLocationV0;754 MultiLocationV1: MultiLocationV1;755 MultiLocationV2: MultiLocationV2;756 Multiplier: Multiplier;757 Multisig: Multisig;758 MultiSignature: MultiSignature;759 MultiSigner: MultiSigner;760 NetworkId: NetworkId;761 NetworkState: NetworkState;762 NetworkStatePeerset: NetworkStatePeerset;763 NetworkStatePeersetInfo: NetworkStatePeersetInfo;764 NewBidder: NewBidder;765 NextAuthority: NextAuthority;766 NextConfigDescriptor: NextConfigDescriptor;767 NextConfigDescriptorV1: NextConfigDescriptorV1;768 NodeRole: NodeRole;769 Nominations: Nominations;770 NominatorIndex: NominatorIndex;771 NominatorIndexCompact: NominatorIndexCompact;772 NotConnectedPeer: NotConnectedPeer;773 NpApiError: NpApiError;774 Null: Null;775 OccupiedCore: OccupiedCore;776 OccupiedCoreAssumption: OccupiedCoreAssumption;777 OffchainAccuracy: OffchainAccuracy;778 OffchainAccuracyCompact: OffchainAccuracyCompact;779 OffenceDetails: OffenceDetails;780 Offender: Offender;781 OldV1SessionInfo: OldV1SessionInfo;782 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;783 OpalRuntimeRuntime: OpalRuntimeRuntime;784 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;785 OpaqueCall: OpaqueCall;786 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;787 OpaqueMetadata: OpaqueMetadata;788 OpaqueMultiaddr: OpaqueMultiaddr;789 OpaqueNetworkState: OpaqueNetworkState;790 OpaquePeerId: OpaquePeerId;791 OpaqueTimeSlot: OpaqueTimeSlot;792 OpenTip: OpenTip;793 OpenTipFinderTo225: OpenTipFinderTo225;794 OpenTipTip: OpenTipTip;795 OpenTipTo225: OpenTipTo225;796 OperatingMode: OperatingMode;797 OptionBool: OptionBool;798 Origin: Origin;799 OriginCaller: OriginCaller;800 OriginKindV0: OriginKindV0;801 OriginKindV1: OriginKindV1;802 OriginKindV2: OriginKindV2;803 OrmlTokensAccountData: OrmlTokensAccountData;804 OrmlTokensBalanceLock: OrmlTokensBalanceLock;805 OrmlTokensModuleCall: OrmlTokensModuleCall;806 OrmlTokensModuleError: OrmlTokensModuleError;807 OrmlTokensModuleEvent: OrmlTokensModuleEvent;808 OrmlTokensReserveData: OrmlTokensReserveData;809 OrmlVestingModuleCall: OrmlVestingModuleCall;810 OrmlVestingModuleError: OrmlVestingModuleError;811 OrmlVestingModuleEvent: OrmlVestingModuleEvent;812 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;813 OrmlXtokensModuleCall: OrmlXtokensModuleCall;814 OrmlXtokensModuleError: OrmlXtokensModuleError;815 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;816 OutboundHrmpMessage: OutboundHrmpMessage;817 OutboundLaneData: OutboundLaneData;818 OutboundMessageFee: OutboundMessageFee;819 OutboundPayload: OutboundPayload;820 OutboundStatus: OutboundStatus;821 Outcome: Outcome;822 OverweightIndex: OverweightIndex;823 Owner: Owner;824 PageCounter: PageCounter;825 PageIndexData: PageIndexData;826 PalletAppPromotionCall: PalletAppPromotionCall;827 PalletAppPromotionError: PalletAppPromotionError;828 PalletAppPromotionEvent: PalletAppPromotionEvent;829 PalletBalancesAccountData: PalletBalancesAccountData;830 PalletBalancesBalanceLock: PalletBalancesBalanceLock;831 PalletBalancesCall: PalletBalancesCall;832 PalletBalancesError: PalletBalancesError;833 PalletBalancesEvent: PalletBalancesEvent;834 PalletBalancesReasons: PalletBalancesReasons;835 PalletBalancesReleases: PalletBalancesReleases;836 PalletBalancesReserveData: PalletBalancesReserveData;837 PalletCallMetadataLatest: PalletCallMetadataLatest;838 PalletCallMetadataV14: PalletCallMetadataV14;839 PalletCommonError: PalletCommonError;840 PalletCommonEvent: PalletCommonEvent;841 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;842 PalletConfigurationCall: PalletConfigurationCall;843 PalletConfigurationError: PalletConfigurationError;844 PalletConstantMetadataLatest: PalletConstantMetadataLatest;845 PalletConstantMetadataV14: PalletConstantMetadataV14;846 PalletErrorMetadataLatest: PalletErrorMetadataLatest;847 PalletErrorMetadataV14: PalletErrorMetadataV14;848 PalletEthereumCall: PalletEthereumCall;849 PalletEthereumError: PalletEthereumError;850 PalletEthereumEvent: PalletEthereumEvent;851 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;852 PalletEthereumRawOrigin: PalletEthereumRawOrigin;853 PalletEventMetadataLatest: PalletEventMetadataLatest;854 PalletEventMetadataV14: PalletEventMetadataV14;855 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;856 PalletEvmCall: PalletEvmCall;857 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;858 PalletEvmContractHelpersError: PalletEvmContractHelpersError;859 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;860 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;861 PalletEvmError: PalletEvmError;862 PalletEvmEvent: PalletEvmEvent;863 PalletEvmMigrationCall: PalletEvmMigrationCall;864 PalletEvmMigrationError: PalletEvmMigrationError;865 PalletEvmMigrationEvent: PalletEvmMigrationEvent;866 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;867 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;868 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;869 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;870 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;871 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;872 PalletFungibleError: PalletFungibleError;873 PalletId: PalletId;874 PalletInflationCall: PalletInflationCall;875 PalletMaintenanceCall: PalletMaintenanceCall;876 PalletMaintenanceError: PalletMaintenanceError;877 PalletMaintenanceEvent: PalletMaintenanceEvent;878 PalletMetadataLatest: PalletMetadataLatest;879 PalletMetadataV14: PalletMetadataV14;880 PalletNonfungibleError: PalletNonfungibleError;881 PalletNonfungibleItemData: PalletNonfungibleItemData;882 PalletRefungibleError: PalletRefungibleError;883 PalletRefungibleItemData: PalletRefungibleItemData;884 PalletRmrkCoreCall: PalletRmrkCoreCall;885 PalletRmrkCoreError: PalletRmrkCoreError;886 PalletRmrkCoreEvent: PalletRmrkCoreEvent;887 PalletRmrkEquipCall: PalletRmrkEquipCall;888 PalletRmrkEquipError: PalletRmrkEquipError;889 PalletRmrkEquipEvent: PalletRmrkEquipEvent;890 PalletsOrigin: PalletsOrigin;891 PalletStorageMetadataLatest: PalletStorageMetadataLatest;892 PalletStorageMetadataV14: PalletStorageMetadataV14;893 PalletStructureCall: PalletStructureCall;894 PalletStructureError: PalletStructureError;895 PalletStructureEvent: PalletStructureEvent;896 PalletSudoCall: PalletSudoCall;897 PalletSudoError: PalletSudoError;898 PalletSudoEvent: PalletSudoEvent;899 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;900 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;901 PalletTestUtilsCall: PalletTestUtilsCall;902 PalletTestUtilsError: PalletTestUtilsError;903 PalletTestUtilsEvent: PalletTestUtilsEvent;904 PalletTimestampCall: PalletTimestampCall;905 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;906 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;907 PalletTreasuryCall: PalletTreasuryCall;908 PalletTreasuryError: PalletTreasuryError;909 PalletTreasuryEvent: PalletTreasuryEvent;910 PalletTreasuryProposal: PalletTreasuryProposal;911 PalletUniqueCall: PalletUniqueCall;912 PalletUniqueError: PalletUniqueError;913 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;914 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;915 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;916 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;917 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;918 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;919 PalletVersion: PalletVersion;920 PalletXcmCall: PalletXcmCall;921 PalletXcmError: PalletXcmError;922 PalletXcmEvent: PalletXcmEvent;923 PalletXcmOrigin: PalletXcmOrigin;924 ParachainDispatchOrigin: ParachainDispatchOrigin;925 ParachainInherentData: ParachainInherentData;926 ParachainProposal: ParachainProposal;927 ParachainsInherentData: ParachainsInherentData;928 ParaGenesisArgs: ParaGenesisArgs;929 ParaId: ParaId;930 ParaInfo: ParaInfo;931 ParaLifecycle: ParaLifecycle;932 Parameter: Parameter;933 ParaPastCodeMeta: ParaPastCodeMeta;934 ParaScheduling: ParaScheduling;935 ParathreadClaim: ParathreadClaim;936 ParathreadClaimQueue: ParathreadClaimQueue;937 ParathreadEntry: ParathreadEntry;938 ParaValidatorIndex: ParaValidatorIndex;939 Pays: Pays;940 Peer: Peer;941 PeerEndpoint: PeerEndpoint;942 PeerEndpointAddr: PeerEndpointAddr;943 PeerInfo: PeerInfo;944 PeerPing: PeerPing;945 PendingChange: PendingChange;946 PendingPause: PendingPause;947 PendingResume: PendingResume;948 Perbill: Perbill;949 Percent: Percent;950 PerDispatchClassU32: PerDispatchClassU32;951 PerDispatchClassWeight: PerDispatchClassWeight;952 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;953 Period: Period;954 Permill: Permill;955 PermissionLatest: PermissionLatest;956 PermissionsV1: PermissionsV1;957 PermissionVersions: PermissionVersions;958 Perquintill: Perquintill;959 PersistedValidationData: PersistedValidationData;960 PerU16: PerU16;961 Phantom: Phantom;962 PhantomData: PhantomData;963 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;964 Phase: Phase;965 PhragmenScore: PhragmenScore;966 Points: Points;967 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;968 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;969 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;970 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;971 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;972 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;973 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;974 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;975 PortableType: PortableType;976 PortableTypeV14: PortableTypeV14;977 Precommits: Precommits;978 PrefabWasmModule: PrefabWasmModule;979 PrefixedStorageKey: PrefixedStorageKey;980 PreimageStatus: PreimageStatus;981 PreimageStatusAvailable: PreimageStatusAvailable;982 PreRuntime: PreRuntime;983 Prevotes: Prevotes;984 Priority: Priority;985 PriorLock: PriorLock;986 PropIndex: PropIndex;987 Proposal: Proposal;988 ProposalIndex: ProposalIndex;989 ProxyAnnouncement: ProxyAnnouncement;990 ProxyDefinition: ProxyDefinition;991 ProxyState: ProxyState;992 ProxyType: ProxyType;993 PvfCheckStatement: PvfCheckStatement;994 QueryId: QueryId;995 QueryStatus: QueryStatus;996 QueueConfigData: QueueConfigData;997 QueuedParathread: QueuedParathread;998 Randomness: Randomness;999 Raw: Raw;1000 RawAuraPreDigest: RawAuraPreDigest;1001 RawBabePreDigest: RawBabePreDigest;1002 RawBabePreDigestCompat: RawBabePreDigestCompat;1003 RawBabePreDigestPrimary: RawBabePreDigestPrimary;1004 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;1005 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;1006 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;1007 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;1008 RawBabePreDigestTo159: RawBabePreDigestTo159;1009 RawOrigin: RawOrigin;1010 RawSolution: RawSolution;1011 RawSolutionTo265: RawSolutionTo265;1012 RawSolutionWith16: RawSolutionWith16;1013 RawSolutionWith24: RawSolutionWith24;1014 RawVRFOutput: RawVRFOutput;1015 ReadProof: ReadProof;1016 ReadySolution: ReadySolution;1017 Reasons: Reasons;1018 RecoveryConfig: RecoveryConfig;1019 RefCount: RefCount;1020 RefCountTo259: RefCountTo259;1021 ReferendumIndex: ReferendumIndex;1022 ReferendumInfo: ReferendumInfo;1023 ReferendumInfoFinished: ReferendumInfoFinished;1024 ReferendumInfoTo239: ReferendumInfoTo239;1025 ReferendumStatus: ReferendumStatus;1026 RegisteredParachainInfo: RegisteredParachainInfo;1027 RegistrarIndex: RegistrarIndex;1028 RegistrarInfo: RegistrarInfo;1029 Registration: Registration;1030 RegistrationJudgement: RegistrationJudgement;1031 RegistrationTo198: RegistrationTo198;1032 RelayBlockNumber: RelayBlockNumber;1033 RelayChainBlockNumber: RelayChainBlockNumber;1034 RelayChainHash: RelayChainHash;1035 RelayerId: RelayerId;1036 RelayHash: RelayHash;1037 Releases: Releases;1038 Remark: Remark;1039 Renouncing: Renouncing;1040 RentProjection: RentProjection;1041 ReplacementTimes: ReplacementTimes;1042 ReportedRoundStates: ReportedRoundStates;1043 Reporter: Reporter;1044 ReportIdOf: ReportIdOf;1045 ReserveData: ReserveData;1046 ReserveIdentifier: ReserveIdentifier;1047 Response: Response;1048 ResponseV0: ResponseV0;1049 ResponseV1: ResponseV1;1050 ResponseV2: ResponseV2;1051 ResponseV2Error: ResponseV2Error;1052 ResponseV2Result: ResponseV2Result;1053 Retriable: Retriable;1054 RewardDestination: RewardDestination;1055 RewardPoint: RewardPoint;1056 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1057 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1058 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1059 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1060 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1061 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1062 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1063 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1064 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1065 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1066 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1067 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1068 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1069 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1070 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1071 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1072 RmrkTraitsTheme: RmrkTraitsTheme;1073 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1074 RoundSnapshot: RoundSnapshot;1075 RoundState: RoundState;1076 RpcMethods: RpcMethods;1077 RuntimeDbWeight: RuntimeDbWeight;1078 RuntimeDispatchInfo: RuntimeDispatchInfo;1079 RuntimeVersion: RuntimeVersion;1080 RuntimeVersionApi: RuntimeVersionApi;1081 RuntimeVersionPartial: RuntimeVersionPartial;1082 RuntimeVersionPre3: RuntimeVersionPre3;1083 RuntimeVersionPre4: RuntimeVersionPre4;1084 Schedule: Schedule;1085 Scheduled: Scheduled;1086 ScheduledCore: ScheduledCore;1087 ScheduledTo254: ScheduledTo254;1088 SchedulePeriod: SchedulePeriod;1089 SchedulePriority: SchedulePriority;1090 ScheduleTo212: ScheduleTo212;1091 ScheduleTo258: ScheduleTo258;1092 ScheduleTo264: ScheduleTo264;1093 Scheduling: Scheduling;1094 ScrapedOnChainVotes: ScrapedOnChainVotes;1095 Seal: Seal;1096 SealV0: SealV0;1097 SeatHolder: SeatHolder;1098 SeedOf: SeedOf;1099 ServiceQuality: ServiceQuality;1100 SessionIndex: SessionIndex;1101 SessionInfo: SessionInfo;1102 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1103 SessionKeys1: SessionKeys1;1104 SessionKeys10: SessionKeys10;1105 SessionKeys10B: SessionKeys10B;1106 SessionKeys2: SessionKeys2;1107 SessionKeys3: SessionKeys3;1108 SessionKeys4: SessionKeys4;1109 SessionKeys5: SessionKeys5;1110 SessionKeys6: SessionKeys6;1111 SessionKeys6B: SessionKeys6B;1112 SessionKeys7: SessionKeys7;1113 SessionKeys7B: SessionKeys7B;1114 SessionKeys8: SessionKeys8;1115 SessionKeys8B: SessionKeys8B;1116 SessionKeys9: SessionKeys9;1117 SessionKeys9B: SessionKeys9B;1118 SetId: SetId;1119 SetIndex: SetIndex;1120 Si0Field: Si0Field;1121 Si0LookupTypeId: Si0LookupTypeId;1122 Si0Path: Si0Path;1123 Si0Type: Si0Type;1124 Si0TypeDef: Si0TypeDef;1125 Si0TypeDefArray: Si0TypeDefArray;1126 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1127 Si0TypeDefCompact: Si0TypeDefCompact;1128 Si0TypeDefComposite: Si0TypeDefComposite;1129 Si0TypeDefPhantom: Si0TypeDefPhantom;1130 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1131 Si0TypeDefSequence: Si0TypeDefSequence;1132 Si0TypeDefTuple: Si0TypeDefTuple;1133 Si0TypeDefVariant: Si0TypeDefVariant;1134 Si0TypeParameter: Si0TypeParameter;1135 Si0Variant: Si0Variant;1136 Si1Field: Si1Field;1137 Si1LookupTypeId: Si1LookupTypeId;1138 Si1Path: Si1Path;1139 Si1Type: Si1Type;1140 Si1TypeDef: Si1TypeDef;1141 Si1TypeDefArray: Si1TypeDefArray;1142 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1143 Si1TypeDefCompact: Si1TypeDefCompact;1144 Si1TypeDefComposite: Si1TypeDefComposite;1145 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1146 Si1TypeDefSequence: Si1TypeDefSequence;1147 Si1TypeDefTuple: Si1TypeDefTuple;1148 Si1TypeDefVariant: Si1TypeDefVariant;1149 Si1TypeParameter: Si1TypeParameter;1150 Si1Variant: Si1Variant;1151 SiField: SiField;1152 Signature: Signature;1153 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1154 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1155 SignedBlock: SignedBlock;1156 SignedBlockWithJustification: SignedBlockWithJustification;1157 SignedBlockWithJustifications: SignedBlockWithJustifications;1158 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1159 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1160 SignedSubmission: SignedSubmission;1161 SignedSubmissionOf: SignedSubmissionOf;1162 SignedSubmissionTo276: SignedSubmissionTo276;1163 SignerPayload: SignerPayload;1164 SigningContext: SigningContext;1165 SiLookupTypeId: SiLookupTypeId;1166 SiPath: SiPath;1167 SiType: SiType;1168 SiTypeDef: SiTypeDef;1169 SiTypeDefArray: SiTypeDefArray;1170 SiTypeDefBitSequence: SiTypeDefBitSequence;1171 SiTypeDefCompact: SiTypeDefCompact;1172 SiTypeDefComposite: SiTypeDefComposite;1173 SiTypeDefPrimitive: SiTypeDefPrimitive;1174 SiTypeDefSequence: SiTypeDefSequence;1175 SiTypeDefTuple: SiTypeDefTuple;1176 SiTypeDefVariant: SiTypeDefVariant;1177 SiTypeParameter: SiTypeParameter;1178 SiVariant: SiVariant;1179 SlashingSpans: SlashingSpans;1180 SlashingSpansTo204: SlashingSpansTo204;1181 SlashJournalEntry: SlashJournalEntry;1182 Slot: Slot;1183 SlotDuration: SlotDuration;1184 SlotNumber: SlotNumber;1185 SlotRange: SlotRange;1186 SlotRange10: SlotRange10;1187 SocietyJudgement: SocietyJudgement;1188 SocietyVote: SocietyVote;1189 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1190 SolutionSupport: SolutionSupport;1191 SolutionSupports: SolutionSupports;1192 SpanIndex: SpanIndex;1193 SpanRecord: SpanRecord;1194 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1195 SpCoreEd25519Signature: SpCoreEd25519Signature;1196 SpCoreSr25519Signature: SpCoreSr25519Signature;1197 SpCoreVoid: SpCoreVoid;1198 SpecVersion: SpecVersion;1199 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1200 SpRuntimeDigest: SpRuntimeDigest;1201 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1202 SpRuntimeDispatchError: SpRuntimeDispatchError;1203 SpRuntimeModuleError: SpRuntimeModuleError;1204 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1205 SpRuntimeTokenError: SpRuntimeTokenError;1206 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1207 SpTrieStorageProof: SpTrieStorageProof;1208 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1209 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1210 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1211 Sr25519Signature: Sr25519Signature;1212 StakingLedger: StakingLedger;1213 StakingLedgerTo223: StakingLedgerTo223;1214 StakingLedgerTo240: StakingLedgerTo240;1215 Statement: Statement;1216 StatementKind: StatementKind;1217 StorageChangeSet: StorageChangeSet;1218 StorageData: StorageData;1219 StorageDeposit: StorageDeposit;1220 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1221 StorageEntryMetadataV10: StorageEntryMetadataV10;1222 StorageEntryMetadataV11: StorageEntryMetadataV11;1223 StorageEntryMetadataV12: StorageEntryMetadataV12;1224 StorageEntryMetadataV13: StorageEntryMetadataV13;1225 StorageEntryMetadataV14: StorageEntryMetadataV14;1226 StorageEntryMetadataV9: StorageEntryMetadataV9;1227 StorageEntryModifierLatest: StorageEntryModifierLatest;1228 StorageEntryModifierV10: StorageEntryModifierV10;1229 StorageEntryModifierV11: StorageEntryModifierV11;1230 StorageEntryModifierV12: StorageEntryModifierV12;1231 StorageEntryModifierV13: StorageEntryModifierV13;1232 StorageEntryModifierV14: StorageEntryModifierV14;1233 StorageEntryModifierV9: StorageEntryModifierV9;1234 StorageEntryTypeLatest: StorageEntryTypeLatest;1235 StorageEntryTypeV10: StorageEntryTypeV10;1236 StorageEntryTypeV11: StorageEntryTypeV11;1237 StorageEntryTypeV12: StorageEntryTypeV12;1238 StorageEntryTypeV13: StorageEntryTypeV13;1239 StorageEntryTypeV14: StorageEntryTypeV14;1240 StorageEntryTypeV9: StorageEntryTypeV9;1241 StorageHasher: StorageHasher;1242 StorageHasherV10: StorageHasherV10;1243 StorageHasherV11: StorageHasherV11;1244 StorageHasherV12: StorageHasherV12;1245 StorageHasherV13: StorageHasherV13;1246 StorageHasherV14: StorageHasherV14;1247 StorageHasherV9: StorageHasherV9;1248 StorageInfo: StorageInfo;1249 StorageKey: StorageKey;1250 StorageKind: StorageKind;1251 StorageMetadataV10: StorageMetadataV10;1252 StorageMetadataV11: StorageMetadataV11;1253 StorageMetadataV12: StorageMetadataV12;1254 StorageMetadataV13: StorageMetadataV13;1255 StorageMetadataV9: StorageMetadataV9;1256 StorageProof: StorageProof;1257 StoredPendingChange: StoredPendingChange;1258 StoredState: StoredState;1259 StrikeCount: StrikeCount;1260 SubId: SubId;1261 SubmissionIndicesOf: SubmissionIndicesOf;1262 Supports: Supports;1263 SyncState: SyncState;1264 SystemInherentData: SystemInherentData;1265 SystemOrigin: SystemOrigin;1266 Tally: Tally;1267 TaskAddress: TaskAddress;1268 TAssetBalance: TAssetBalance;1269 TAssetDepositBalance: TAssetDepositBalance;1270 Text: Text;1271 Timepoint: Timepoint;1272 TokenError: TokenError;1273 TombstoneContractInfo: TombstoneContractInfo;1274 TraceBlockResponse: TraceBlockResponse;1275 TraceError: TraceError;1276 TransactionalError: TransactionalError;1277 TransactionInfo: TransactionInfo;1278 TransactionLongevity: TransactionLongevity;1279 TransactionPriority: TransactionPriority;1280 TransactionSource: TransactionSource;1281 TransactionStorageProof: TransactionStorageProof;1282 TransactionTag: TransactionTag;1283 TransactionV0: TransactionV0;1284 TransactionV1: TransactionV1;1285 TransactionV2: TransactionV2;1286 TransactionValidity: TransactionValidity;1287 TransactionValidityError: TransactionValidityError;1288 TransientValidationData: TransientValidationData;1289 TreasuryProposal: TreasuryProposal;1290 TrieId: TrieId;1291 TrieIndex: TrieIndex;1292 Type: Type;1293 u128: u128;1294 U128: U128;1295 u16: u16;1296 U16: U16;1297 u256: u256;1298 U256: U256;1299 u32: u32;1300 U32: U32;1301 U32F32: U32F32;1302 u64: u64;1303 U64: U64;1304 u8: u8;1305 U8: U8;1306 UnappliedSlash: UnappliedSlash;1307 UnappliedSlashOther: UnappliedSlashOther;1308 UncleEntryItem: UncleEntryItem;1309 UnknownTransaction: UnknownTransaction;1310 UnlockChunk: UnlockChunk;1311 UnrewardedRelayer: UnrewardedRelayer;1312 UnrewardedRelayersState: UnrewardedRelayersState;1313 UpDataStructsAccessMode: UpDataStructsAccessMode;1314 UpDataStructsCollection: UpDataStructsCollection;1315 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1316 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1317 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1318 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1319 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1320 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1321 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1322 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1323 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1324 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1325 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1326 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1327 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1328 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1329 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1330 UpDataStructsProperties: UpDataStructsProperties;1331 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1332 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1333 UpDataStructsProperty: UpDataStructsProperty;1334 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1335 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1336 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1337 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1338 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1339 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1340 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1341 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1342 UpDataStructsTokenChild: UpDataStructsTokenChild;1343 UpDataStructsTokenData: UpDataStructsTokenData;1344 UpgradeGoAhead: UpgradeGoAhead;1345 UpgradeRestriction: UpgradeRestriction;1346 UpwardMessage: UpwardMessage;1347 usize: usize;1348 USize: USize;1349 ValidationCode: ValidationCode;1350 ValidationCodeHash: ValidationCodeHash;1351 ValidationData: ValidationData;1352 ValidationDataType: ValidationDataType;1353 ValidationFunctionParams: ValidationFunctionParams;1354 ValidatorCount: ValidatorCount;1355 ValidatorId: ValidatorId;1356 ValidatorIdOf: ValidatorIdOf;1357 ValidatorIndex: ValidatorIndex;1358 ValidatorIndexCompact: ValidatorIndexCompact;1359 ValidatorPrefs: ValidatorPrefs;1360 ValidatorPrefsTo145: ValidatorPrefsTo145;1361 ValidatorPrefsTo196: ValidatorPrefsTo196;1362 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1363 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1364 ValidatorSet: ValidatorSet;1365 ValidatorSetId: ValidatorSetId;1366 ValidatorSignature: ValidatorSignature;1367 ValidDisputeStatementKind: ValidDisputeStatementKind;1368 ValidityAttestation: ValidityAttestation;1369 ValidTransaction: ValidTransaction;1370 VecInboundHrmpMessage: VecInboundHrmpMessage;1371 VersionedMultiAsset: VersionedMultiAsset;1372 VersionedMultiAssets: VersionedMultiAssets;1373 VersionedMultiLocation: VersionedMultiLocation;1374 VersionedResponse: VersionedResponse;1375 VersionedXcm: VersionedXcm;1376 VersionMigrationStage: VersionMigrationStage;1377 VestingInfo: VestingInfo;1378 VestingSchedule: VestingSchedule;1379 Vote: Vote;1380 VoteIndex: VoteIndex;1381 Voter: Voter;1382 VoterInfo: VoterInfo;1383 Votes: Votes;1384 VotesTo230: VotesTo230;1385 VoteThreshold: VoteThreshold;1386 VoteWeight: VoteWeight;1387 Voting: Voting;1388 VotingDelegating: VotingDelegating;1389 VotingDirect: VotingDirect;1390 VotingDirectVote: VotingDirectVote;1391 VouchingStatus: VouchingStatus;1392 VrfData: VrfData;1393 VrfOutput: VrfOutput;1394 VrfProof: VrfProof;1395 Weight: Weight;1396 WeightLimitV2: WeightLimitV2;1397 WeightMultiplier: WeightMultiplier;1398 WeightPerClass: WeightPerClass;1399 WeightToFeeCoefficient: WeightToFeeCoefficient;1400 WeightV1: WeightV1;1401 WeightV2: WeightV2;1402 WildFungibility: WildFungibility;1403 WildFungibilityV0: WildFungibilityV0;1404 WildFungibilityV1: WildFungibilityV1;1405 WildFungibilityV2: WildFungibilityV2;1406 WildMultiAsset: WildMultiAsset;1407 WildMultiAssetV1: WildMultiAssetV1;1408 WildMultiAssetV2: WildMultiAssetV2;1409 WinnersData: WinnersData;1410 WinnersData10: WinnersData10;1411 WinnersDataTuple: WinnersDataTuple;1412 WinnersDataTuple10: WinnersDataTuple10;1413 WinningData: WinningData;1414 WinningData10: WinningData10;1415 WinningDataEntry: WinningDataEntry;1416 WithdrawReasons: WithdrawReasons;1417 Xcm: Xcm;1418 XcmAssetId: XcmAssetId;1419 XcmDoubleEncoded: XcmDoubleEncoded;1420 XcmError: XcmError;1421 XcmErrorV0: XcmErrorV0;1422 XcmErrorV1: XcmErrorV1;1423 XcmErrorV2: XcmErrorV2;1424 XcmOrder: XcmOrder;1425 XcmOrderV0: XcmOrderV0;1426 XcmOrderV1: XcmOrderV1;1427 XcmOrderV2: XcmOrderV2;1428 XcmOrigin: XcmOrigin;1429 XcmOriginKind: XcmOriginKind;1430 XcmpMessageFormat: XcmpMessageFormat;1431 XcmV0: XcmV0;1432 XcmV0Junction: XcmV0Junction;1433 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1434 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1435 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1436 XcmV0MultiAsset: XcmV0MultiAsset;1437 XcmV0MultiLocation: XcmV0MultiLocation;1438 XcmV0Order: XcmV0Order;1439 XcmV0OriginKind: XcmV0OriginKind;1440 XcmV0Response: XcmV0Response;1441 XcmV0Xcm: XcmV0Xcm;1442 XcmV1: XcmV1;1443 XcmV1Junction: XcmV1Junction;1444 XcmV1MultiAsset: XcmV1MultiAsset;1445 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1446 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1447 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1448 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1449 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1450 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1451 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1452 XcmV1MultiLocation: XcmV1MultiLocation;1453 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1454 XcmV1Order: XcmV1Order;1455 XcmV1Response: XcmV1Response;1456 XcmV1Xcm: XcmV1Xcm;1457 XcmV2: XcmV2;1458 XcmV2Instruction: XcmV2Instruction;1459 XcmV2Response: XcmV2Response;1460 XcmV2TraitsError: XcmV2TraitsError;1461 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1462 XcmV2WeightLimit: XcmV2WeightLimit;1463 XcmV2Xcm: XcmV2Xcm;1464 XcmVersion: XcmVersion;1465 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1466 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1467 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1468 XcmVersionedXcm: XcmVersionedXcm;1469 } // InterfaceTypes1470} // declare moduletests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1323,6 +1323,14 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
}
+/** @name PalletConfigurationAppPromotionConfiguration */
+export interface PalletConfigurationAppPromotionConfiguration extends Struct {
+ readonly recalculationInterval: Option<u32>;
+ readonly pendingInterval: Option<u32>;
+ readonly intervalIncome: Option<Perbill>;
+ readonly maxStakersPerCalculation: Option<u8>;
+}
+
/** @name PalletConfigurationCall */
export interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -3300,7 +3300,13 @@
_enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
},
/**
- * Lookup397: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup400: pallet_configuration::pallet::Error<T>
+ **/
+ PalletConfigurationError: {
+ _enum: ['InconsistentConfiguration']
+ },
+ /**
+ * Lookup401: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3314,7 +3320,7 @@
flags: '[u8;1]'
},
/**
- * Lookup398: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup402: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3324,7 +3330,7 @@
}
},
/**
- * Lookup400: up_data_structs::Properties
+ * Lookup404: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3332,15 +3338,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup401: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup405: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup406: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup410: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup413: up_data_structs::CollectionStats
+ * Lookup417: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3348,18 +3354,18 @@
alive: 'u32'
},
/**
- * Lookup414: up_data_structs::TokenChild
+ * Lookup418: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup415: PhantomType::up_data_structs<T>
+ * Lookup419: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup417: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup421: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3367,7 +3373,7 @@
pieces: 'u128'
},
/**
- * Lookup419: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup423: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3384,14 +3390,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup420: up_data_structs::RpcCollectionFlags
+ * Lookup424: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup421: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup425: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3401,7 +3407,7 @@
nftsCount: 'u32'
},
/**
- * Lookup422: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup426: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3411,14 +3417,14 @@
pending: 'bool'
},
/**
- * Lookup424: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup428: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup425: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup429: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3427,14 +3433,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup426: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup430: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup427: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup431: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3442,92 +3448,92 @@
symbol: 'Bytes'
},
/**
- * Lookup428: rmrk_traits::nft::NftChild
+ * Lookup432: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup430: pallet_common::pallet::Error<T>
+ * Lookup434: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
},
/**
- * Lookup432: pallet_fungible::pallet::Error<T>
+ * Lookup436: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
},
/**
- * Lookup433: pallet_refungible::ItemData
+ * Lookup437: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup438: pallet_refungible::pallet::Error<T>
+ * Lookup442: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup439: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup443: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup441: up_data_structs::PropertyScope
+ * Lookup445: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup443: pallet_nonfungible::pallet::Error<T>
+ * Lookup447: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup444: pallet_structure::pallet::Error<T>
+ * Lookup448: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup445: pallet_rmrk_core::pallet::Error<T>
+ * Lookup449: 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']
},
/**
- * Lookup447: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup451: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup453: pallet_app_promotion::pallet::Error<T>
+ * Lookup457: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup454: pallet_foreign_assets::module::Error<T>
+ * Lookup458: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup456: pallet_evm::pallet::Error<T>
+ * Lookup460: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
},
/**
- * Lookup459: fp_rpc::TransactionStatus
+ * Lookup463: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3539,11 +3545,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup461: ethbloom::Bloom
+ * Lookup465: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup463: ethereum::receipt::ReceiptV3
+ * Lookup467: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3553,7 +3559,7 @@
}
},
/**
- * Lookup464: ethereum::receipt::EIP658ReceiptData
+ * Lookup468: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3562,7 +3568,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup465: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup469: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3570,7 +3576,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup466: ethereum::header::Header
+ * Lookup470: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3590,23 +3596,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup467: ethereum_types::hash::H64
+ * Lookup471: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup472: pallet_ethereum::pallet::Error<T>
+ * Lookup476: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup473: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup477: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup474: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup478: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3616,35 +3622,35 @@
}
},
/**
- * Lookup475: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup479: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup481: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup485: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup482: pallet_evm_migration::pallet::Error<T>
+ * Lookup486: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup483: pallet_maintenance::pallet::Error<T>
+ * Lookup487: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup484: pallet_test_utils::pallet::Error<T>
+ * Lookup488: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup486: sp_runtime::MultiSignature
+ * Lookup490: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3654,51 +3660,51 @@
}
},
/**
- * Lookup487: sp_core::ed25519::Signature
+ * Lookup491: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup489: sp_core::sr25519::Signature
+ * Lookup493: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup490: sp_core::ecdsa::Signature
+ * Lookup494: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup497: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup498: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup499: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup502: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup503: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup500: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup504: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup501: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup505: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup502: opal_runtime::Runtime
+ * Lookup506: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup503: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup507: 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,15 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
+<<<<<<< HEAD
import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+=======
+<<<<<<< HEAD
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+=======
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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';
+>>>>>>> refactor: `app-promotion` configuration pallet
+>>>>>>> e2b20310... refactor: `app-promotion` configuration pallet
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -104,7 +112,9 @@
PalletBalancesReserveData: PalletBalancesReserveData;
PalletCommonError: PalletCommonError;
PalletCommonEvent: PalletCommonEvent;
+ PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
PalletConfigurationCall: PalletConfigurationCall;
+ PalletConfigurationError: PalletConfigurationError;
PalletEthereumCall: PalletEthereumCall;
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -3494,7 +3494,13 @@
readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
}
- /** @name UpDataStructsCollection (397) */
+ /** @name PalletConfigurationError (400) */
+ interface PalletConfigurationError extends Enum {
+ readonly isInconsistentConfiguration: boolean;
+ readonly type: 'InconsistentConfiguration';
+ }
+
+ /** @name UpDataStructsCollection (401) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3507,7 +3513,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (398) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (402) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3517,43 +3523,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (400) */
+ /** @name UpDataStructsProperties (404) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (401) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (405) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (406) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (410) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (413) */
+ /** @name UpDataStructsCollectionStats (417) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (414) */
+ /** @name UpDataStructsTokenChild (418) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (415) */
+ /** @name PhantomTypeUpDataStructs (419) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (417) */
+ /** @name UpDataStructsTokenData (421) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (419) */
+ /** @name UpDataStructsRpcCollection (423) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3569,13 +3575,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (420) */
+ /** @name UpDataStructsRpcCollectionFlags (424) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (421) */
+ /** @name RmrkTraitsCollectionCollectionInfo (425) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3584,7 +3590,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (422) */
+ /** @name RmrkTraitsNftNftInfo (426) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3593,13 +3599,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (424) */
+ /** @name RmrkTraitsNftRoyaltyInfo (428) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (425) */
+ /** @name RmrkTraitsResourceResourceInfo (429) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3607,26 +3613,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (426) */
+ /** @name RmrkTraitsPropertyPropertyInfo (430) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (427) */
+ /** @name RmrkTraitsBaseBaseInfo (431) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (428) */
+ /** @name RmrkTraitsNftNftChild (432) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (430) */
+ /** @name PalletCommonError (434) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3667,7 +3673,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (432) */
+ /** @name PalletFungibleError (436) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3678,12 +3684,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
}
- /** @name PalletRefungibleItemData (433) */
+ /** @name PalletRefungibleItemData (437) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (438) */
+ /** @name PalletRefungibleError (442) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3693,19 +3699,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (439) */
+ /** @name PalletNonfungibleItemData (443) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (441) */
+ /** @name UpDataStructsPropertyScope (445) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (443) */
+ /** @name PalletNonfungibleError (447) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3713,7 +3719,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (444) */
+ /** @name PalletStructureError (448) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3722,7 +3728,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (445) */
+ /** @name PalletRmrkCoreError (449) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3746,7 +3752,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (447) */
+ /** @name PalletRmrkEquipError (451) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3758,7 +3764,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (453) */
+ /** @name PalletAppPromotionError (457) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3769,7 +3775,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (454) */
+ /** @name PalletForeignAssetsModuleError (458) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3778,7 +3784,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (456) */
+ /** @name PalletEvmError (460) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3793,7 +3799,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
}
- /** @name FpRpcTransactionStatus (459) */
+ /** @name FpRpcTransactionStatus (463) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3804,10 +3810,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (461) */
+ /** @name EthbloomBloom (465) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (463) */
+ /** @name EthereumReceiptReceiptV3 (467) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3818,7 +3824,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (464) */
+ /** @name EthereumReceiptEip658ReceiptData (468) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3826,14 +3832,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (465) */
+ /** @name EthereumBlock (469) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (466) */
+ /** @name EthereumHeader (470) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3852,24 +3858,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (467) */
+ /** @name EthereumTypesHashH64 (471) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (472) */
+ /** @name PalletEthereumError (476) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (473) */
+ /** @name PalletEvmCoderSubstrateError (477) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (474) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (478) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3879,7 +3885,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (475) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (479) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3887,7 +3893,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (481) */
+ /** @name PalletEvmContractHelpersError (485) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3895,7 +3901,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (482) */
+ /** @name PalletEvmMigrationError (486) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3903,17 +3909,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (483) */
+ /** @name PalletMaintenanceError (487) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (484) */
+ /** @name PalletTestUtilsError (488) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (486) */
+ /** @name SpRuntimeMultiSignature (490) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3924,40 +3930,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (487) */
+ /** @name SpCoreEd25519Signature (491) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (489) */
+ /** @name SpCoreSr25519Signature (493) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (490) */
+ /** @name SpCoreEcdsaSignature (494) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (493) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (497) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (494) */
+ /** @name FrameSystemExtensionsCheckTxVersion (498) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (495) */
+ /** @name FrameSystemExtensionsCheckGenesis (499) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (498) */
+ /** @name FrameSystemExtensionsCheckNonce (502) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (499) */
+ /** @name FrameSystemExtensionsCheckWeight (503) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (500) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (504) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (501) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (505) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (502) */
+ /** @name OpalRuntimeRuntime (506) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (503) */
+ /** @name PalletEthereumFakeTransactionFinalizer (507) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module