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.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.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 './default';
+=======
+<<<<<<< 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 './default';
+=======
+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 './default';
+>>>>>>> refactor: `app-promotion` configuration pallet
+>>>>>>> e2b20310... refactor: `app-promotion` configuration pallet
import type { Data, StorageKey } from '@polkadot/types';
import 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';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -830,7 +838,9 @@
PalletCallMetadataV14: PalletCallMetadataV14;
PalletCommonError: PalletCommonError;
PalletCommonEvent: PalletCommonEvent;
+ PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
PalletConfigurationCall: PalletConfigurationCall;
+ PalletConfigurationError: PalletConfigurationError;
PalletConstantMetadataLatest: PalletConstantMetadataLatest;
PalletConstantMetadataV14: PalletConstantMetadataV14;
PalletErrorMetadataLatest: PalletErrorMetadataLatest;
tests/src/interfaces/default/types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: SpWeightsWeightV2Weight;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: {35 readonly messageId: U8aFixed;36 } & Struct;37 readonly isUnsupportedVersion: boolean;38 readonly asUnsupportedVersion: {39 readonly messageId: U8aFixed;40 } & Struct;41 readonly isExecutedDownward: boolean;42 readonly asExecutedDownward: {43 readonly messageId: U8aFixed;44 readonly outcome: XcmV2TraitsOutcome;45 } & Struct;46 readonly isWeightExhausted: boolean;47 readonly asWeightExhausted: {48 readonly messageId: U8aFixed;49 readonly remainingWeight: SpWeightsWeightV2Weight;50 readonly requiredWeight: SpWeightsWeightV2Weight;51 } & Struct;52 readonly isOverweightEnqueued: boolean;53 readonly asOverweightEnqueued: {54 readonly messageId: U8aFixed;55 readonly overweightIndex: u64;56 readonly requiredWeight: SpWeightsWeightV2Weight;57 } & Struct;58 readonly isOverweightServiced: boolean;59 readonly asOverweightServiced: {60 readonly overweightIndex: u64;61 readonly weightUsed: SpWeightsWeightV2Weight;62 } & Struct;63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68 readonly beginUsed: u32;69 readonly endUsed: u32;70 readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75 readonly isSetValidationData: boolean;76 readonly asSetValidationData: {77 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78 } & Struct;79 readonly isSudoSendUpwardMessage: boolean;80 readonly asSudoSendUpwardMessage: {81 readonly message: Bytes;82 } & Struct;83 readonly isAuthorizeUpgrade: boolean;84 readonly asAuthorizeUpgrade: {85 readonly codeHash: H256;86 } & Struct;87 readonly isEnactAuthorizedUpgrade: boolean;88 readonly asEnactAuthorizedUpgrade: {89 readonly code: Bytes;90 } & Struct;91 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96 readonly isOverlappingUpgrades: boolean;97 readonly isProhibitedByPolkadot: boolean;98 readonly isTooBig: boolean;99 readonly isValidationDataNotAvailable: boolean;100 readonly isHostConfigurationNotAvailable: boolean;101 readonly isNotScheduled: boolean;102 readonly isNothingAuthorized: boolean;103 readonly isUnauthorized: boolean;104 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: {112 readonly relayChainBlockNum: u32;113 } & Struct;114 readonly isValidationFunctionDiscarded: boolean;115 readonly isUpgradeAuthorized: boolean;116 readonly asUpgradeAuthorized: {117 readonly codeHash: H256;118 } & Struct;119 readonly isDownwardMessagesReceived: boolean;120 readonly asDownwardMessagesReceived: {121 readonly count: u32;122 } & Struct;123 readonly isDownwardMessagesProcessed: boolean;124 readonly asDownwardMessagesProcessed: {125 readonly weightUsed: SpWeightsWeightV2Weight;126 readonly dmqHead: H256;127 } & Struct;128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133 readonly dmqMqcHead: H256;134 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147 readonly isInvalidFormat: boolean;148 readonly asInvalidFormat: U8aFixed;149 readonly isUnsupportedVersion: boolean;150 readonly asUnsupportedVersion: U8aFixed;151 readonly isExecutedDownward: boolean;152 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmOrigin */157export interface CumulusPalletXcmOrigin extends Enum {158 readonly isRelay: boolean;159 readonly isSiblingParachain: boolean;160 readonly asSiblingParachain: u32;161 readonly type: 'Relay' | 'SiblingParachain';162}163164/** @name CumulusPalletXcmpQueueCall */165export interface CumulusPalletXcmpQueueCall extends Enum {166 readonly isServiceOverweight: boolean;167 readonly asServiceOverweight: {168 readonly index: u64;169 readonly weightLimit: u64;170 } & Struct;171 readonly isSuspendXcmExecution: boolean;172 readonly isResumeXcmExecution: boolean;173 readonly isUpdateSuspendThreshold: boolean;174 readonly asUpdateSuspendThreshold: {175 readonly new_: u32;176 } & Struct;177 readonly isUpdateDropThreshold: boolean;178 readonly asUpdateDropThreshold: {179 readonly new_: u32;180 } & Struct;181 readonly isUpdateResumeThreshold: boolean;182 readonly asUpdateResumeThreshold: {183 readonly new_: u32;184 } & Struct;185 readonly isUpdateThresholdWeight: boolean;186 readonly asUpdateThresholdWeight: {187 readonly new_: u64;188 } & Struct;189 readonly isUpdateWeightRestrictDecay: boolean;190 readonly asUpdateWeightRestrictDecay: {191 readonly new_: u64;192 } & Struct;193 readonly isUpdateXcmpMaxIndividualWeight: boolean;194 readonly asUpdateXcmpMaxIndividualWeight: {195 readonly new_: u64;196 } & Struct;197 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198}199200/** @name CumulusPalletXcmpQueueError */201export interface CumulusPalletXcmpQueueError extends Enum {202 readonly isFailedToSend: boolean;203 readonly isBadXcmOrigin: boolean;204 readonly isBadXcm: boolean;205 readonly isBadOverweightIndex: boolean;206 readonly isWeightOverLimit: boolean;207 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';208}209210/** @name CumulusPalletXcmpQueueEvent */211export interface CumulusPalletXcmpQueueEvent extends Enum {212 readonly isSuccess: boolean;213 readonly asSuccess: {214 readonly messageHash: Option<H256>;215 readonly weight: SpWeightsWeightV2Weight;216 } & Struct;217 readonly isFail: boolean;218 readonly asFail: {219 readonly messageHash: Option<H256>;220 readonly error: XcmV2TraitsError;221 readonly weight: SpWeightsWeightV2Weight;222 } & Struct;223 readonly isBadVersion: boolean;224 readonly asBadVersion: {225 readonly messageHash: Option<H256>;226 } & Struct;227 readonly isBadFormat: boolean;228 readonly asBadFormat: {229 readonly messageHash: Option<H256>;230 } & Struct;231 readonly isUpwardMessageSent: boolean;232 readonly asUpwardMessageSent: {233 readonly messageHash: Option<H256>;234 } & Struct;235 readonly isXcmpMessageSent: boolean;236 readonly asXcmpMessageSent: {237 readonly messageHash: Option<H256>;238 } & Struct;239 readonly isOverweightEnqueued: boolean;240 readonly asOverweightEnqueued: {241 readonly sender: u32;242 readonly sentAt: u32;243 readonly index: u64;244 readonly required: SpWeightsWeightV2Weight;245 } & Struct;246 readonly isOverweightServiced: boolean;247 readonly asOverweightServiced: {248 readonly index: u64;249 readonly used: SpWeightsWeightV2Weight;250 } & Struct;251 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';252}253254/** @name CumulusPalletXcmpQueueInboundChannelDetails */255export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {256 readonly sender: u32;257 readonly state: CumulusPalletXcmpQueueInboundState;258 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;259}260261/** @name CumulusPalletXcmpQueueInboundState */262export interface CumulusPalletXcmpQueueInboundState extends Enum {263 readonly isOk: boolean;264 readonly isSuspended: boolean;265 readonly type: 'Ok' | 'Suspended';266}267268/** @name CumulusPalletXcmpQueueOutboundChannelDetails */269export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {270 readonly recipient: u32;271 readonly state: CumulusPalletXcmpQueueOutboundState;272 readonly signalsExist: bool;273 readonly firstIndex: u16;274 readonly lastIndex: u16;275}276277/** @name CumulusPalletXcmpQueueOutboundState */278export interface CumulusPalletXcmpQueueOutboundState extends Enum {279 readonly isOk: boolean;280 readonly isSuspended: boolean;281 readonly type: 'Ok' | 'Suspended';282}283284/** @name CumulusPalletXcmpQueueQueueConfigData */285export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {286 readonly suspendThreshold: u32;287 readonly dropThreshold: u32;288 readonly resumeThreshold: u32;289 readonly thresholdWeight: SpWeightsWeightV2Weight;290 readonly weightRestrictDecay: SpWeightsWeightV2Weight;291 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;292}293294/** @name CumulusPrimitivesParachainInherentParachainInherentData */295export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {296 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;297 readonly relayChainState: SpTrieStorageProof;298 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;299 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;300}301302/** @name EthbloomBloom */303export interface EthbloomBloom extends U8aFixed {}304305/** @name EthereumBlock */306export interface EthereumBlock extends Struct {307 readonly header: EthereumHeader;308 readonly transactions: Vec<EthereumTransactionTransactionV2>;309 readonly ommers: Vec<EthereumHeader>;310}311312/** @name EthereumHeader */313export interface EthereumHeader extends Struct {314 readonly parentHash: H256;315 readonly ommersHash: H256;316 readonly beneficiary: H160;317 readonly stateRoot: H256;318 readonly transactionsRoot: H256;319 readonly receiptsRoot: H256;320 readonly logsBloom: EthbloomBloom;321 readonly difficulty: U256;322 readonly number: U256;323 readonly gasLimit: U256;324 readonly gasUsed: U256;325 readonly timestamp: u64;326 readonly extraData: Bytes;327 readonly mixHash: H256;328 readonly nonce: EthereumTypesHashH64;329}330331/** @name EthereumLog */332export interface EthereumLog extends Struct {333 readonly address: H160;334 readonly topics: Vec<H256>;335 readonly data: Bytes;336}337338/** @name EthereumReceiptEip658ReceiptData */339export interface EthereumReceiptEip658ReceiptData extends Struct {340 readonly statusCode: u8;341 readonly usedGas: U256;342 readonly logsBloom: EthbloomBloom;343 readonly logs: Vec<EthereumLog>;344}345346/** @name EthereumReceiptReceiptV3 */347export interface EthereumReceiptReceiptV3 extends Enum {348 readonly isLegacy: boolean;349 readonly asLegacy: EthereumReceiptEip658ReceiptData;350 readonly isEip2930: boolean;351 readonly asEip2930: EthereumReceiptEip658ReceiptData;352 readonly isEip1559: boolean;353 readonly asEip1559: EthereumReceiptEip658ReceiptData;354 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';355}356357/** @name EthereumTransactionAccessListItem */358export interface EthereumTransactionAccessListItem extends Struct {359 readonly address: H160;360 readonly storageKeys: Vec<H256>;361}362363/** @name EthereumTransactionEip1559Transaction */364export interface EthereumTransactionEip1559Transaction extends Struct {365 readonly chainId: u64;366 readonly nonce: U256;367 readonly maxPriorityFeePerGas: U256;368 readonly maxFeePerGas: U256;369 readonly gasLimit: U256;370 readonly action: EthereumTransactionTransactionAction;371 readonly value: U256;372 readonly input: Bytes;373 readonly accessList: Vec<EthereumTransactionAccessListItem>;374 readonly oddYParity: bool;375 readonly r: H256;376 readonly s: H256;377}378379/** @name EthereumTransactionEip2930Transaction */380export interface EthereumTransactionEip2930Transaction extends Struct {381 readonly chainId: u64;382 readonly nonce: U256;383 readonly gasPrice: U256;384 readonly gasLimit: U256;385 readonly action: EthereumTransactionTransactionAction;386 readonly value: U256;387 readonly input: Bytes;388 readonly accessList: Vec<EthereumTransactionAccessListItem>;389 readonly oddYParity: bool;390 readonly r: H256;391 readonly s: H256;392}393394/** @name EthereumTransactionLegacyTransaction */395export interface EthereumTransactionLegacyTransaction extends Struct {396 readonly nonce: U256;397 readonly gasPrice: U256;398 readonly gasLimit: U256;399 readonly action: EthereumTransactionTransactionAction;400 readonly value: U256;401 readonly input: Bytes;402 readonly signature: EthereumTransactionTransactionSignature;403}404405/** @name EthereumTransactionTransactionAction */406export interface EthereumTransactionTransactionAction extends Enum {407 readonly isCall: boolean;408 readonly asCall: H160;409 readonly isCreate: boolean;410 readonly type: 'Call' | 'Create';411}412413/** @name EthereumTransactionTransactionSignature */414export interface EthereumTransactionTransactionSignature extends Struct {415 readonly v: u64;416 readonly r: H256;417 readonly s: H256;418}419420/** @name EthereumTransactionTransactionV2 */421export interface EthereumTransactionTransactionV2 extends Enum {422 readonly isLegacy: boolean;423 readonly asLegacy: EthereumTransactionLegacyTransaction;424 readonly isEip2930: boolean;425 readonly asEip2930: EthereumTransactionEip2930Transaction;426 readonly isEip1559: boolean;427 readonly asEip1559: EthereumTransactionEip1559Transaction;428 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';429}430431/** @name EthereumTypesHashH64 */432export interface EthereumTypesHashH64 extends U8aFixed {}433434/** @name EvmCoreErrorExitError */435export interface EvmCoreErrorExitError extends Enum {436 readonly isStackUnderflow: boolean;437 readonly isStackOverflow: boolean;438 readonly isInvalidJump: boolean;439 readonly isInvalidRange: boolean;440 readonly isDesignatedInvalid: boolean;441 readonly isCallTooDeep: boolean;442 readonly isCreateCollision: boolean;443 readonly isCreateContractLimit: boolean;444 readonly isOutOfOffset: boolean;445 readonly isOutOfGas: boolean;446 readonly isOutOfFund: boolean;447 readonly isPcUnderflow: boolean;448 readonly isCreateEmpty: boolean;449 readonly isOther: boolean;450 readonly asOther: Text;451 readonly isInvalidCode: boolean;452 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';453}454455/** @name EvmCoreErrorExitFatal */456export interface EvmCoreErrorExitFatal extends Enum {457 readonly isNotSupported: boolean;458 readonly isUnhandledInterrupt: boolean;459 readonly isCallErrorAsFatal: boolean;460 readonly asCallErrorAsFatal: EvmCoreErrorExitError;461 readonly isOther: boolean;462 readonly asOther: Text;463 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';464}465466/** @name EvmCoreErrorExitReason */467export interface EvmCoreErrorExitReason extends Enum {468 readonly isSucceed: boolean;469 readonly asSucceed: EvmCoreErrorExitSucceed;470 readonly isError: boolean;471 readonly asError: EvmCoreErrorExitError;472 readonly isRevert: boolean;473 readonly asRevert: EvmCoreErrorExitRevert;474 readonly isFatal: boolean;475 readonly asFatal: EvmCoreErrorExitFatal;476 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';477}478479/** @name EvmCoreErrorExitRevert */480export interface EvmCoreErrorExitRevert extends Enum {481 readonly isReverted: boolean;482 readonly type: 'Reverted';483}484485/** @name EvmCoreErrorExitSucceed */486export interface EvmCoreErrorExitSucceed extends Enum {487 readonly isStopped: boolean;488 readonly isReturned: boolean;489 readonly isSuicided: boolean;490 readonly type: 'Stopped' | 'Returned' | 'Suicided';491}492493/** @name FpRpcTransactionStatus */494export interface FpRpcTransactionStatus extends Struct {495 readonly transactionHash: H256;496 readonly transactionIndex: u32;497 readonly from: H160;498 readonly to: Option<H160>;499 readonly contractAddress: Option<H160>;500 readonly logs: Vec<EthereumLog>;501 readonly logsBloom: EthbloomBloom;502}503504/** @name FrameSupportDispatchDispatchClass */505export interface FrameSupportDispatchDispatchClass extends Enum {506 readonly isNormal: boolean;507 readonly isOperational: boolean;508 readonly isMandatory: boolean;509 readonly type: 'Normal' | 'Operational' | 'Mandatory';510}511512/** @name FrameSupportDispatchDispatchInfo */513export interface FrameSupportDispatchDispatchInfo extends Struct {514 readonly weight: SpWeightsWeightV2Weight;515 readonly class: FrameSupportDispatchDispatchClass;516 readonly paysFee: FrameSupportDispatchPays;517}518519/** @name FrameSupportDispatchPays */520export interface FrameSupportDispatchPays extends Enum {521 readonly isYes: boolean;522 readonly isNo: boolean;523 readonly type: 'Yes' | 'No';524}525526/** @name FrameSupportDispatchPerDispatchClassU32 */527export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {528 readonly normal: u32;529 readonly operational: u32;530 readonly mandatory: u32;531}532533/** @name FrameSupportDispatchPerDispatchClassWeight */534export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {535 readonly normal: SpWeightsWeightV2Weight;536 readonly operational: SpWeightsWeightV2Weight;537 readonly mandatory: SpWeightsWeightV2Weight;538}539540/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */541export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {542 readonly normal: FrameSystemLimitsWeightsPerClass;543 readonly operational: FrameSystemLimitsWeightsPerClass;544 readonly mandatory: FrameSystemLimitsWeightsPerClass;545}546547/** @name FrameSupportDispatchRawOrigin */548export interface FrameSupportDispatchRawOrigin extends Enum {549 readonly isRoot: boolean;550 readonly isSigned: boolean;551 readonly asSigned: AccountId32;552 readonly isNone: boolean;553 readonly type: 'Root' | 'Signed' | 'None';554}555556/** @name FrameSupportPalletId */557export interface FrameSupportPalletId extends U8aFixed {}558559/** @name FrameSupportTokensMiscBalanceStatus */560export interface FrameSupportTokensMiscBalanceStatus extends Enum {561 readonly isFree: boolean;562 readonly isReserved: boolean;563 readonly type: 'Free' | 'Reserved';564}565566/** @name FrameSystemAccountInfo */567export interface FrameSystemAccountInfo extends Struct {568 readonly nonce: u32;569 readonly consumers: u32;570 readonly providers: u32;571 readonly sufficients: u32;572 readonly data: PalletBalancesAccountData;573}574575/** @name FrameSystemCall */576export interface FrameSystemCall extends Enum {577 readonly isFillBlock: boolean;578 readonly asFillBlock: {579 readonly ratio: Perbill;580 } & Struct;581 readonly isRemark: boolean;582 readonly asRemark: {583 readonly remark: Bytes;584 } & Struct;585 readonly isSetHeapPages: boolean;586 readonly asSetHeapPages: {587 readonly pages: u64;588 } & Struct;589 readonly isSetCode: boolean;590 readonly asSetCode: {591 readonly code: Bytes;592 } & Struct;593 readonly isSetCodeWithoutChecks: boolean;594 readonly asSetCodeWithoutChecks: {595 readonly code: Bytes;596 } & Struct;597 readonly isSetStorage: boolean;598 readonly asSetStorage: {599 readonly items: Vec<ITuple<[Bytes, Bytes]>>;600 } & Struct;601 readonly isKillStorage: boolean;602 readonly asKillStorage: {603 readonly keys_: Vec<Bytes>;604 } & Struct;605 readonly isKillPrefix: boolean;606 readonly asKillPrefix: {607 readonly prefix: Bytes;608 readonly subkeys: u32;609 } & Struct;610 readonly isRemarkWithEvent: boolean;611 readonly asRemarkWithEvent: {612 readonly remark: Bytes;613 } & Struct;614 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';615}616617/** @name FrameSystemError */618export interface FrameSystemError extends Enum {619 readonly isInvalidSpecName: boolean;620 readonly isSpecVersionNeedsToIncrease: boolean;621 readonly isFailedToExtractRuntimeVersion: boolean;622 readonly isNonDefaultComposite: boolean;623 readonly isNonZeroRefCount: boolean;624 readonly isCallFiltered: boolean;625 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';626}627628/** @name FrameSystemEvent */629export interface FrameSystemEvent extends Enum {630 readonly isExtrinsicSuccess: boolean;631 readonly asExtrinsicSuccess: {632 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;633 } & Struct;634 readonly isExtrinsicFailed: boolean;635 readonly asExtrinsicFailed: {636 readonly dispatchError: SpRuntimeDispatchError;637 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;638 } & Struct;639 readonly isCodeUpdated: boolean;640 readonly isNewAccount: boolean;641 readonly asNewAccount: {642 readonly account: AccountId32;643 } & Struct;644 readonly isKilledAccount: boolean;645 readonly asKilledAccount: {646 readonly account: AccountId32;647 } & Struct;648 readonly isRemarked: boolean;649 readonly asRemarked: {650 readonly sender: AccountId32;651 readonly hash_: H256;652 } & Struct;653 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';654}655656/** @name FrameSystemEventRecord */657export interface FrameSystemEventRecord extends Struct {658 readonly phase: FrameSystemPhase;659 readonly event: Event;660 readonly topics: Vec<H256>;661}662663/** @name FrameSystemExtensionsCheckGenesis */664export interface FrameSystemExtensionsCheckGenesis extends Null {}665666/** @name FrameSystemExtensionsCheckNonce */667export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}668669/** @name FrameSystemExtensionsCheckSpecVersion */670export interface FrameSystemExtensionsCheckSpecVersion extends Null {}671672/** @name FrameSystemExtensionsCheckTxVersion */673export interface FrameSystemExtensionsCheckTxVersion extends Null {}674675/** @name FrameSystemExtensionsCheckWeight */676export interface FrameSystemExtensionsCheckWeight extends Null {}677678/** @name FrameSystemLastRuntimeUpgradeInfo */679export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {680 readonly specVersion: Compact<u32>;681 readonly specName: Text;682}683684/** @name FrameSystemLimitsBlockLength */685export interface FrameSystemLimitsBlockLength extends Struct {686 readonly max: FrameSupportDispatchPerDispatchClassU32;687}688689/** @name FrameSystemLimitsBlockWeights */690export interface FrameSystemLimitsBlockWeights extends Struct {691 readonly baseBlock: SpWeightsWeightV2Weight;692 readonly maxBlock: SpWeightsWeightV2Weight;693 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;694}695696/** @name FrameSystemLimitsWeightsPerClass */697export interface FrameSystemLimitsWeightsPerClass extends Struct {698 readonly baseExtrinsic: SpWeightsWeightV2Weight;699 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;700 readonly maxTotal: Option<SpWeightsWeightV2Weight>;701 readonly reserved: Option<SpWeightsWeightV2Weight>;702}703704/** @name FrameSystemPhase */705export interface FrameSystemPhase extends Enum {706 readonly isApplyExtrinsic: boolean;707 readonly asApplyExtrinsic: u32;708 readonly isFinalization: boolean;709 readonly isInitialization: boolean;710 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';711}712713/** @name OpalRuntimeOriginCaller */714export interface OpalRuntimeOriginCaller extends Enum {715 readonly isSystem: boolean;716 readonly asSystem: FrameSupportDispatchRawOrigin;717 readonly isVoid: boolean;718 readonly asVoid: SpCoreVoid;719 readonly isPolkadotXcm: boolean;720 readonly asPolkadotXcm: PalletXcmOrigin;721 readonly isCumulusXcm: boolean;722 readonly asCumulusXcm: CumulusPalletXcmOrigin;723 readonly isEthereum: boolean;724 readonly asEthereum: PalletEthereumRawOrigin;725 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';726}727728/** @name OpalRuntimeRuntime */729export interface OpalRuntimeRuntime extends Null {}730731/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */732export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}733734/** @name OrmlTokensAccountData */735export interface OrmlTokensAccountData extends Struct {736 readonly free: u128;737 readonly reserved: u128;738 readonly frozen: u128;739}740741/** @name OrmlTokensBalanceLock */742export interface OrmlTokensBalanceLock extends Struct {743 readonly id: U8aFixed;744 readonly amount: u128;745}746747/** @name OrmlTokensModuleCall */748export interface OrmlTokensModuleCall extends Enum {749 readonly isTransfer: boolean;750 readonly asTransfer: {751 readonly dest: MultiAddress;752 readonly currencyId: PalletForeignAssetsAssetIds;753 readonly amount: Compact<u128>;754 } & Struct;755 readonly isTransferAll: boolean;756 readonly asTransferAll: {757 readonly dest: MultiAddress;758 readonly currencyId: PalletForeignAssetsAssetIds;759 readonly keepAlive: bool;760 } & Struct;761 readonly isTransferKeepAlive: boolean;762 readonly asTransferKeepAlive: {763 readonly dest: MultiAddress;764 readonly currencyId: PalletForeignAssetsAssetIds;765 readonly amount: Compact<u128>;766 } & Struct;767 readonly isForceTransfer: boolean;768 readonly asForceTransfer: {769 readonly source: MultiAddress;770 readonly dest: MultiAddress;771 readonly currencyId: PalletForeignAssetsAssetIds;772 readonly amount: Compact<u128>;773 } & Struct;774 readonly isSetBalance: boolean;775 readonly asSetBalance: {776 readonly who: MultiAddress;777 readonly currencyId: PalletForeignAssetsAssetIds;778 readonly newFree: Compact<u128>;779 readonly newReserved: Compact<u128>;780 } & Struct;781 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';782}783784/** @name OrmlTokensModuleError */785export interface OrmlTokensModuleError extends Enum {786 readonly isBalanceTooLow: boolean;787 readonly isAmountIntoBalanceFailed: boolean;788 readonly isLiquidityRestrictions: boolean;789 readonly isMaxLocksExceeded: boolean;790 readonly isKeepAlive: boolean;791 readonly isExistentialDeposit: boolean;792 readonly isDeadAccount: boolean;793 readonly isTooManyReserves: boolean;794 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';795}796797/** @name OrmlTokensModuleEvent */798export interface OrmlTokensModuleEvent extends Enum {799 readonly isEndowed: boolean;800 readonly asEndowed: {801 readonly currencyId: PalletForeignAssetsAssetIds;802 readonly who: AccountId32;803 readonly amount: u128;804 } & Struct;805 readonly isDustLost: boolean;806 readonly asDustLost: {807 readonly currencyId: PalletForeignAssetsAssetIds;808 readonly who: AccountId32;809 readonly amount: u128;810 } & Struct;811 readonly isTransfer: boolean;812 readonly asTransfer: {813 readonly currencyId: PalletForeignAssetsAssetIds;814 readonly from: AccountId32;815 readonly to: AccountId32;816 readonly amount: u128;817 } & Struct;818 readonly isReserved: boolean;819 readonly asReserved: {820 readonly currencyId: PalletForeignAssetsAssetIds;821 readonly who: AccountId32;822 readonly amount: u128;823 } & Struct;824 readonly isUnreserved: boolean;825 readonly asUnreserved: {826 readonly currencyId: PalletForeignAssetsAssetIds;827 readonly who: AccountId32;828 readonly amount: u128;829 } & Struct;830 readonly isReserveRepatriated: boolean;831 readonly asReserveRepatriated: {832 readonly currencyId: PalletForeignAssetsAssetIds;833 readonly from: AccountId32;834 readonly to: AccountId32;835 readonly amount: u128;836 readonly status: FrameSupportTokensMiscBalanceStatus;837 } & Struct;838 readonly isBalanceSet: boolean;839 readonly asBalanceSet: {840 readonly currencyId: PalletForeignAssetsAssetIds;841 readonly who: AccountId32;842 readonly free: u128;843 readonly reserved: u128;844 } & Struct;845 readonly isTotalIssuanceSet: boolean;846 readonly asTotalIssuanceSet: {847 readonly currencyId: PalletForeignAssetsAssetIds;848 readonly amount: u128;849 } & Struct;850 readonly isWithdrawn: boolean;851 readonly asWithdrawn: {852 readonly currencyId: PalletForeignAssetsAssetIds;853 readonly who: AccountId32;854 readonly amount: u128;855 } & Struct;856 readonly isSlashed: boolean;857 readonly asSlashed: {858 readonly currencyId: PalletForeignAssetsAssetIds;859 readonly who: AccountId32;860 readonly freeAmount: u128;861 readonly reservedAmount: u128;862 } & Struct;863 readonly isDeposited: boolean;864 readonly asDeposited: {865 readonly currencyId: PalletForeignAssetsAssetIds;866 readonly who: AccountId32;867 readonly amount: u128;868 } & Struct;869 readonly isLockSet: boolean;870 readonly asLockSet: {871 readonly lockId: U8aFixed;872 readonly currencyId: PalletForeignAssetsAssetIds;873 readonly who: AccountId32;874 readonly amount: u128;875 } & Struct;876 readonly isLockRemoved: boolean;877 readonly asLockRemoved: {878 readonly lockId: U8aFixed;879 readonly currencyId: PalletForeignAssetsAssetIds;880 readonly who: AccountId32;881 } & Struct;882 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';883}884885/** @name OrmlTokensReserveData */886export interface OrmlTokensReserveData extends Struct {887 readonly id: Null;888 readonly amount: u128;889}890891/** @name OrmlVestingModuleCall */892export interface OrmlVestingModuleCall extends Enum {893 readonly isClaim: boolean;894 readonly isVestedTransfer: boolean;895 readonly asVestedTransfer: {896 readonly dest: MultiAddress;897 readonly schedule: OrmlVestingVestingSchedule;898 } & Struct;899 readonly isUpdateVestingSchedules: boolean;900 readonly asUpdateVestingSchedules: {901 readonly who: MultiAddress;902 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;903 } & Struct;904 readonly isClaimFor: boolean;905 readonly asClaimFor: {906 readonly dest: MultiAddress;907 } & Struct;908 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';909}910911/** @name OrmlVestingModuleError */912export interface OrmlVestingModuleError extends Enum {913 readonly isZeroVestingPeriod: boolean;914 readonly isZeroVestingPeriodCount: boolean;915 readonly isInsufficientBalanceToLock: boolean;916 readonly isTooManyVestingSchedules: boolean;917 readonly isAmountLow: boolean;918 readonly isMaxVestingSchedulesExceeded: boolean;919 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';920}921922/** @name OrmlVestingModuleEvent */923export interface OrmlVestingModuleEvent extends Enum {924 readonly isVestingScheduleAdded: boolean;925 readonly asVestingScheduleAdded: {926 readonly from: AccountId32;927 readonly to: AccountId32;928 readonly vestingSchedule: OrmlVestingVestingSchedule;929 } & Struct;930 readonly isClaimed: boolean;931 readonly asClaimed: {932 readonly who: AccountId32;933 readonly amount: u128;934 } & Struct;935 readonly isVestingSchedulesUpdated: boolean;936 readonly asVestingSchedulesUpdated: {937 readonly who: AccountId32;938 } & Struct;939 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';940}941942/** @name OrmlVestingVestingSchedule */943export interface OrmlVestingVestingSchedule extends Struct {944 readonly start: u32;945 readonly period: u32;946 readonly periodCount: u32;947 readonly perPeriod: Compact<u128>;948}949950/** @name OrmlXtokensModuleCall */951export interface OrmlXtokensModuleCall extends Enum {952 readonly isTransfer: boolean;953 readonly asTransfer: {954 readonly currencyId: PalletForeignAssetsAssetIds;955 readonly amount: u128;956 readonly dest: XcmVersionedMultiLocation;957 readonly destWeightLimit: XcmV2WeightLimit;958 } & Struct;959 readonly isTransferMultiasset: boolean;960 readonly asTransferMultiasset: {961 readonly asset: XcmVersionedMultiAsset;962 readonly dest: XcmVersionedMultiLocation;963 readonly destWeightLimit: XcmV2WeightLimit;964 } & Struct;965 readonly isTransferWithFee: boolean;966 readonly asTransferWithFee: {967 readonly currencyId: PalletForeignAssetsAssetIds;968 readonly amount: u128;969 readonly fee: u128;970 readonly dest: XcmVersionedMultiLocation;971 readonly destWeightLimit: XcmV2WeightLimit;972 } & Struct;973 readonly isTransferMultiassetWithFee: boolean;974 readonly asTransferMultiassetWithFee: {975 readonly asset: XcmVersionedMultiAsset;976 readonly fee: XcmVersionedMultiAsset;977 readonly dest: XcmVersionedMultiLocation;978 readonly destWeightLimit: XcmV2WeightLimit;979 } & Struct;980 readonly isTransferMulticurrencies: boolean;981 readonly asTransferMulticurrencies: {982 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;983 readonly feeItem: u32;984 readonly dest: XcmVersionedMultiLocation;985 readonly destWeightLimit: XcmV2WeightLimit;986 } & Struct;987 readonly isTransferMultiassets: boolean;988 readonly asTransferMultiassets: {989 readonly assets: XcmVersionedMultiAssets;990 readonly feeItem: u32;991 readonly dest: XcmVersionedMultiLocation;992 readonly destWeightLimit: XcmV2WeightLimit;993 } & Struct;994 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';995}996997/** @name OrmlXtokensModuleError */998export interface OrmlXtokensModuleError extends Enum {999 readonly isAssetHasNoReserve: boolean;1000 readonly isNotCrossChainTransfer: boolean;1001 readonly isInvalidDest: boolean;1002 readonly isNotCrossChainTransferableCurrency: boolean;1003 readonly isUnweighableMessage: boolean;1004 readonly isXcmExecutionFailed: boolean;1005 readonly isCannotReanchor: boolean;1006 readonly isInvalidAncestry: boolean;1007 readonly isInvalidAsset: boolean;1008 readonly isDestinationNotInvertible: boolean;1009 readonly isBadVersion: boolean;1010 readonly isDistinctReserveForAssetAndFee: boolean;1011 readonly isZeroFee: boolean;1012 readonly isZeroAmount: boolean;1013 readonly isTooManyAssetsBeingSent: boolean;1014 readonly isAssetIndexNonExistent: boolean;1015 readonly isFeeNotEnough: boolean;1016 readonly isNotSupportedMultiLocation: boolean;1017 readonly isMinXcmFeeNotDefined: boolean;1018 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';1019}10201021/** @name OrmlXtokensModuleEvent */1022export interface OrmlXtokensModuleEvent extends Enum {1023 readonly isTransferredMultiAssets: boolean;1024 readonly asTransferredMultiAssets: {1025 readonly sender: AccountId32;1026 readonly assets: XcmV1MultiassetMultiAssets;1027 readonly fee: XcmV1MultiAsset;1028 readonly dest: XcmV1MultiLocation;1029 } & Struct;1030 readonly type: 'TransferredMultiAssets';1031}10321033/** @name PalletAppPromotionCall */1034export interface PalletAppPromotionCall extends Enum {1035 readonly isSetAdminAddress: boolean;1036 readonly asSetAdminAddress: {1037 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1038 } & Struct;1039 readonly isStake: boolean;1040 readonly asStake: {1041 readonly amount: u128;1042 } & Struct;1043 readonly isUnstake: boolean;1044 readonly isSponsorCollection: boolean;1045 readonly asSponsorCollection: {1046 readonly collectionId: u32;1047 } & Struct;1048 readonly isStopSponsoringCollection: boolean;1049 readonly asStopSponsoringCollection: {1050 readonly collectionId: u32;1051 } & Struct;1052 readonly isSponsorContract: boolean;1053 readonly asSponsorContract: {1054 readonly contractId: H160;1055 } & Struct;1056 readonly isStopSponsoringContract: boolean;1057 readonly asStopSponsoringContract: {1058 readonly contractId: H160;1059 } & Struct;1060 readonly isPayoutStakers: boolean;1061 readonly asPayoutStakers: {1062 readonly stakersNumber: Option<u8>;1063 } & Struct;1064 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';1065}10661067/** @name PalletAppPromotionError */1068export interface PalletAppPromotionError extends Enum {1069 readonly isAdminNotSet: boolean;1070 readonly isNoPermission: boolean;1071 readonly isNotSufficientFunds: boolean;1072 readonly isPendingForBlockOverflow: boolean;1073 readonly isSponsorNotSet: boolean;1074 readonly isIncorrectLockedBalanceOperation: boolean;1075 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';1076}10771078/** @name PalletAppPromotionEvent */1079export interface PalletAppPromotionEvent extends Enum {1080 readonly isStakingRecalculation: boolean;1081 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1082 readonly isStake: boolean;1083 readonly asStake: ITuple<[AccountId32, u128]>;1084 readonly isUnstake: boolean;1085 readonly asUnstake: ITuple<[AccountId32, u128]>;1086 readonly isSetAdmin: boolean;1087 readonly asSetAdmin: AccountId32;1088 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1089}10901091/** @name PalletBalancesAccountData */1092export interface PalletBalancesAccountData extends Struct {1093 readonly free: u128;1094 readonly reserved: u128;1095 readonly miscFrozen: u128;1096 readonly feeFrozen: u128;1097}10981099/** @name PalletBalancesBalanceLock */1100export interface PalletBalancesBalanceLock extends Struct {1101 readonly id: U8aFixed;1102 readonly amount: u128;1103 readonly reasons: PalletBalancesReasons;1104}11051106/** @name PalletBalancesCall */1107export interface PalletBalancesCall extends Enum {1108 readonly isTransfer: boolean;1109 readonly asTransfer: {1110 readonly dest: MultiAddress;1111 readonly value: Compact<u128>;1112 } & Struct;1113 readonly isSetBalance: boolean;1114 readonly asSetBalance: {1115 readonly who: MultiAddress;1116 readonly newFree: Compact<u128>;1117 readonly newReserved: Compact<u128>;1118 } & Struct;1119 readonly isForceTransfer: boolean;1120 readonly asForceTransfer: {1121 readonly source: MultiAddress;1122 readonly dest: MultiAddress;1123 readonly value: Compact<u128>;1124 } & Struct;1125 readonly isTransferKeepAlive: boolean;1126 readonly asTransferKeepAlive: {1127 readonly dest: MultiAddress;1128 readonly value: Compact<u128>;1129 } & Struct;1130 readonly isTransferAll: boolean;1131 readonly asTransferAll: {1132 readonly dest: MultiAddress;1133 readonly keepAlive: bool;1134 } & Struct;1135 readonly isForceUnreserve: boolean;1136 readonly asForceUnreserve: {1137 readonly who: MultiAddress;1138 readonly amount: u128;1139 } & Struct;1140 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1141}11421143/** @name PalletBalancesError */1144export interface PalletBalancesError extends Enum {1145 readonly isVestingBalance: boolean;1146 readonly isLiquidityRestrictions: boolean;1147 readonly isInsufficientBalance: boolean;1148 readonly isExistentialDeposit: boolean;1149 readonly isKeepAlive: boolean;1150 readonly isExistingVestingSchedule: boolean;1151 readonly isDeadAccount: boolean;1152 readonly isTooManyReserves: boolean;1153 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1154}11551156/** @name PalletBalancesEvent */1157export interface PalletBalancesEvent extends Enum {1158 readonly isEndowed: boolean;1159 readonly asEndowed: {1160 readonly account: AccountId32;1161 readonly freeBalance: u128;1162 } & Struct;1163 readonly isDustLost: boolean;1164 readonly asDustLost: {1165 readonly account: AccountId32;1166 readonly amount: u128;1167 } & Struct;1168 readonly isTransfer: boolean;1169 readonly asTransfer: {1170 readonly from: AccountId32;1171 readonly to: AccountId32;1172 readonly amount: u128;1173 } & Struct;1174 readonly isBalanceSet: boolean;1175 readonly asBalanceSet: {1176 readonly who: AccountId32;1177 readonly free: u128;1178 readonly reserved: u128;1179 } & Struct;1180 readonly isReserved: boolean;1181 readonly asReserved: {1182 readonly who: AccountId32;1183 readonly amount: u128;1184 } & Struct;1185 readonly isUnreserved: boolean;1186 readonly asUnreserved: {1187 readonly who: AccountId32;1188 readonly amount: u128;1189 } & Struct;1190 readonly isReserveRepatriated: boolean;1191 readonly asReserveRepatriated: {1192 readonly from: AccountId32;1193 readonly to: AccountId32;1194 readonly amount: u128;1195 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1196 } & Struct;1197 readonly isDeposit: boolean;1198 readonly asDeposit: {1199 readonly who: AccountId32;1200 readonly amount: u128;1201 } & Struct;1202 readonly isWithdraw: boolean;1203 readonly asWithdraw: {1204 readonly who: AccountId32;1205 readonly amount: u128;1206 } & Struct;1207 readonly isSlashed: boolean;1208 readonly asSlashed: {1209 readonly who: AccountId32;1210 readonly amount: u128;1211 } & Struct;1212 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1213}12141215/** @name PalletBalancesReasons */1216export interface PalletBalancesReasons extends Enum {1217 readonly isFee: boolean;1218 readonly isMisc: boolean;1219 readonly isAll: boolean;1220 readonly type: 'Fee' | 'Misc' | 'All';1221}12221223/** @name PalletBalancesReleases */1224export interface PalletBalancesReleases extends Enum {1225 readonly isV100: boolean;1226 readonly isV200: boolean;1227 readonly type: 'V100' | 'V200';1228}12291230/** @name PalletBalancesReserveData */1231export interface PalletBalancesReserveData extends Struct {1232 readonly id: U8aFixed;1233 readonly amount: u128;1234}12351236/** @name PalletCommonError */1237export interface PalletCommonError extends Enum {1238 readonly isCollectionNotFound: boolean;1239 readonly isMustBeTokenOwner: boolean;1240 readonly isNoPermission: boolean;1241 readonly isCantDestroyNotEmptyCollection: boolean;1242 readonly isPublicMintingNotAllowed: boolean;1243 readonly isAddressNotInAllowlist: boolean;1244 readonly isCollectionNameLimitExceeded: boolean;1245 readonly isCollectionDescriptionLimitExceeded: boolean;1246 readonly isCollectionTokenPrefixLimitExceeded: boolean;1247 readonly isTotalCollectionsLimitExceeded: boolean;1248 readonly isCollectionAdminCountExceeded: boolean;1249 readonly isCollectionLimitBoundsExceeded: boolean;1250 readonly isOwnerPermissionsCantBeReverted: boolean;1251 readonly isTransferNotAllowed: boolean;1252 readonly isAccountTokenLimitExceeded: boolean;1253 readonly isCollectionTokenLimitExceeded: boolean;1254 readonly isMetadataFlagFrozen: boolean;1255 readonly isTokenNotFound: boolean;1256 readonly isTokenValueTooLow: boolean;1257 readonly isApprovedValueTooLow: boolean;1258 readonly isCantApproveMoreThanOwned: boolean;1259 readonly isAddressIsZero: boolean;1260 readonly isUnsupportedOperation: boolean;1261 readonly isNotSufficientFounds: boolean;1262 readonly isUserIsNotAllowedToNest: boolean;1263 readonly isSourceCollectionIsNotAllowedToNest: boolean;1264 readonly isCollectionFieldSizeExceeded: boolean;1265 readonly isNoSpaceForProperty: boolean;1266 readonly isPropertyLimitReached: boolean;1267 readonly isPropertyKeyIsTooLong: boolean;1268 readonly isInvalidCharacterInPropertyKey: boolean;1269 readonly isEmptyPropertyKey: boolean;1270 readonly isCollectionIsExternal: boolean;1271 readonly isCollectionIsInternal: boolean;1272 readonly isConfirmSponsorshipFail: boolean;1273 readonly isUserIsNotCollectionAdmin: boolean;1274 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';1275}12761277/** @name PalletCommonEvent */1278export interface PalletCommonEvent extends Enum {1279 readonly isCollectionCreated: boolean;1280 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1281 readonly isCollectionDestroyed: boolean;1282 readonly asCollectionDestroyed: u32;1283 readonly isItemCreated: boolean;1284 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1285 readonly isItemDestroyed: boolean;1286 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1287 readonly isTransfer: boolean;1288 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1289 readonly isApproved: boolean;1290 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1291 readonly isApprovedForAll: boolean;1292 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1293 readonly isCollectionPropertySet: boolean;1294 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1295 readonly isCollectionPropertyDeleted: boolean;1296 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1297 readonly isTokenPropertySet: boolean;1298 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1299 readonly isTokenPropertyDeleted: boolean;1300 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1301 readonly isPropertyPermissionSet: boolean;1302 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1303 readonly isAllowListAddressAdded: boolean;1304 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1305 readonly isAllowListAddressRemoved: boolean;1306 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1307 readonly isCollectionAdminAdded: boolean;1308 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1309 readonly isCollectionAdminRemoved: boolean;1310 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1311 readonly isCollectionLimitSet: boolean;1312 readonly asCollectionLimitSet: u32;1313 readonly isCollectionOwnerChanged: boolean;1314 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1315 readonly isCollectionPermissionSet: boolean;1316 readonly asCollectionPermissionSet: u32;1317 readonly isCollectionSponsorSet: boolean;1318 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1319 readonly isSponsorshipConfirmed: boolean;1320 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1321 readonly isCollectionSponsorRemoved: boolean;1322 readonly asCollectionSponsorRemoved: u32;1323 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1324}13251326/** @name PalletConfigurationAppPromotionConfiguration */1327export interface PalletConfigurationAppPromotionConfiguration extends Struct {1328 readonly recalculationInterval: Option<u32>;1329 readonly pendingInterval: Option<u32>;1330 readonly intervalIncome: Option<Perbill>;1331 readonly maxStakersPerCalculation: Option<u8>;1332}13331334/** @name PalletConfigurationCall */1335export interface PalletConfigurationCall extends Enum {1336 readonly isSetWeightToFeeCoefficientOverride: boolean;1337 readonly asSetWeightToFeeCoefficientOverride: {1338 readonly coeff: Option<u32>;1339 } & Struct;1340 readonly isSetMinGasPriceOverride: boolean;1341 readonly asSetMinGasPriceOverride: {1342 readonly coeff: Option<u64>;1343 } & Struct;1344 readonly isSetXcmAllowedLocations: boolean;1345 readonly asSetXcmAllowedLocations: {1346 readonly locations: Option<Vec<XcmV1MultiLocation>>;1347 } & Struct;1348 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';1349}13501351/** @name PalletEthereumCall */1352export interface PalletEthereumCall extends Enum {1353 readonly isTransact: boolean;1354 readonly asTransact: {1355 readonly transaction: EthereumTransactionTransactionV2;1356 } & Struct;1357 readonly type: 'Transact';1358}13591360/** @name PalletEthereumError */1361export interface PalletEthereumError extends Enum {1362 readonly isInvalidSignature: boolean;1363 readonly isPreLogExists: boolean;1364 readonly type: 'InvalidSignature' | 'PreLogExists';1365}13661367/** @name PalletEthereumEvent */1368export interface PalletEthereumEvent extends Enum {1369 readonly isExecuted: boolean;1370 readonly asExecuted: {1371 readonly from: H160;1372 readonly to: H160;1373 readonly transactionHash: H256;1374 readonly exitReason: EvmCoreErrorExitReason;1375 } & Struct;1376 readonly type: 'Executed';1377}13781379/** @name PalletEthereumFakeTransactionFinalizer */1380export interface PalletEthereumFakeTransactionFinalizer extends Null {}13811382/** @name PalletEthereumRawOrigin */1383export interface PalletEthereumRawOrigin extends Enum {1384 readonly isEthereumTransaction: boolean;1385 readonly asEthereumTransaction: H160;1386 readonly type: 'EthereumTransaction';1387}13881389/** @name PalletEvmAccountBasicCrossAccountIdRepr */1390export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1391 readonly isSubstrate: boolean;1392 readonly asSubstrate: AccountId32;1393 readonly isEthereum: boolean;1394 readonly asEthereum: H160;1395 readonly type: 'Substrate' | 'Ethereum';1396}13971398/** @name PalletEvmCall */1399export interface PalletEvmCall extends Enum {1400 readonly isWithdraw: boolean;1401 readonly asWithdraw: {1402 readonly address: H160;1403 readonly value: u128;1404 } & Struct;1405 readonly isCall: boolean;1406 readonly asCall: {1407 readonly source: H160;1408 readonly target: H160;1409 readonly input: Bytes;1410 readonly value: U256;1411 readonly gasLimit: u64;1412 readonly maxFeePerGas: U256;1413 readonly maxPriorityFeePerGas: Option<U256>;1414 readonly nonce: Option<U256>;1415 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1416 } & Struct;1417 readonly isCreate: boolean;1418 readonly asCreate: {1419 readonly source: H160;1420 readonly init: Bytes;1421 readonly value: U256;1422 readonly gasLimit: u64;1423 readonly maxFeePerGas: U256;1424 readonly maxPriorityFeePerGas: Option<U256>;1425 readonly nonce: Option<U256>;1426 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1427 } & Struct;1428 readonly isCreate2: boolean;1429 readonly asCreate2: {1430 readonly source: H160;1431 readonly init: Bytes;1432 readonly salt: H256;1433 readonly value: U256;1434 readonly gasLimit: u64;1435 readonly maxFeePerGas: U256;1436 readonly maxPriorityFeePerGas: Option<U256>;1437 readonly nonce: Option<U256>;1438 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1439 } & Struct;1440 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1441}14421443/** @name PalletEvmCoderSubstrateError */1444export interface PalletEvmCoderSubstrateError extends Enum {1445 readonly isOutOfGas: boolean;1446 readonly isOutOfFund: boolean;1447 readonly type: 'OutOfGas' | 'OutOfFund';1448}14491450/** @name PalletEvmContractHelpersError */1451export interface PalletEvmContractHelpersError extends Enum {1452 readonly isNoPermission: boolean;1453 readonly isNoPendingSponsor: boolean;1454 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1455 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1456}14571458/** @name PalletEvmContractHelpersEvent */1459export interface PalletEvmContractHelpersEvent extends Enum {1460 readonly isContractSponsorSet: boolean;1461 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1462 readonly isContractSponsorshipConfirmed: boolean;1463 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1464 readonly isContractSponsorRemoved: boolean;1465 readonly asContractSponsorRemoved: H160;1466 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1467}14681469/** @name PalletEvmContractHelpersSponsoringModeT */1470export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1471 readonly isDisabled: boolean;1472 readonly isAllowlisted: boolean;1473 readonly isGenerous: boolean;1474 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1475}14761477/** @name PalletEvmError */1478export interface PalletEvmError extends Enum {1479 readonly isBalanceLow: boolean;1480 readonly isFeeOverflow: boolean;1481 readonly isPaymentOverflow: boolean;1482 readonly isWithdrawFailed: boolean;1483 readonly isGasPriceTooLow: boolean;1484 readonly isInvalidNonce: boolean;1485 readonly isGasLimitTooLow: boolean;1486 readonly isGasLimitTooHigh: boolean;1487 readonly isUndefined: boolean;1488 readonly isReentrancy: boolean;1489 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';1490}14911492/** @name PalletEvmEvent */1493export interface PalletEvmEvent extends Enum {1494 readonly isLog: boolean;1495 readonly asLog: {1496 readonly log: EthereumLog;1497 } & Struct;1498 readonly isCreated: boolean;1499 readonly asCreated: {1500 readonly address: H160;1501 } & Struct;1502 readonly isCreatedFailed: boolean;1503 readonly asCreatedFailed: {1504 readonly address: H160;1505 } & Struct;1506 readonly isExecuted: boolean;1507 readonly asExecuted: {1508 readonly address: H160;1509 } & Struct;1510 readonly isExecutedFailed: boolean;1511 readonly asExecutedFailed: {1512 readonly address: H160;1513 } & Struct;1514 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1515}15161517/** @name PalletEvmMigrationCall */1518export interface PalletEvmMigrationCall extends Enum {1519 readonly isBegin: boolean;1520 readonly asBegin: {1521 readonly address: H160;1522 } & Struct;1523 readonly isSetData: boolean;1524 readonly asSetData: {1525 readonly address: H160;1526 readonly data: Vec<ITuple<[H256, H256]>>;1527 } & Struct;1528 readonly isFinish: boolean;1529 readonly asFinish: {1530 readonly address: H160;1531 readonly code: Bytes;1532 } & Struct;1533 readonly isInsertEthLogs: boolean;1534 readonly asInsertEthLogs: {1535 readonly logs: Vec<EthereumLog>;1536 } & Struct;1537 readonly isInsertEvents: boolean;1538 readonly asInsertEvents: {1539 readonly events: Vec<Bytes>;1540 } & Struct;1541 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1542}15431544/** @name PalletEvmMigrationError */1545export interface PalletEvmMigrationError extends Enum {1546 readonly isAccountNotEmpty: boolean;1547 readonly isAccountIsNotMigrating: boolean;1548 readonly isBadEvent: boolean;1549 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1550}15511552/** @name PalletEvmMigrationEvent */1553export interface PalletEvmMigrationEvent extends Enum {1554 readonly isTestEvent: boolean;1555 readonly type: 'TestEvent';1556}15571558/** @name PalletForeignAssetsAssetIds */1559export interface PalletForeignAssetsAssetIds extends Enum {1560 readonly isForeignAssetId: boolean;1561 readonly asForeignAssetId: u32;1562 readonly isNativeAssetId: boolean;1563 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1564 readonly type: 'ForeignAssetId' | 'NativeAssetId';1565}15661567/** @name PalletForeignAssetsModuleAssetMetadata */1568export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1569 readonly name: Bytes;1570 readonly symbol: Bytes;1571 readonly decimals: u8;1572 readonly minimalBalance: u128;1573}15741575/** @name PalletForeignAssetsModuleCall */1576export interface PalletForeignAssetsModuleCall extends Enum {1577 readonly isRegisterForeignAsset: boolean;1578 readonly asRegisterForeignAsset: {1579 readonly owner: AccountId32;1580 readonly location: XcmVersionedMultiLocation;1581 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1582 } & Struct;1583 readonly isUpdateForeignAsset: boolean;1584 readonly asUpdateForeignAsset: {1585 readonly foreignAssetId: u32;1586 readonly location: XcmVersionedMultiLocation;1587 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1588 } & Struct;1589 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1590}15911592/** @name PalletForeignAssetsModuleError */1593export interface PalletForeignAssetsModuleError extends Enum {1594 readonly isBadLocation: boolean;1595 readonly isMultiLocationExisted: boolean;1596 readonly isAssetIdNotExists: boolean;1597 readonly isAssetIdExisted: boolean;1598 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1599}16001601/** @name PalletForeignAssetsModuleEvent */1602export interface PalletForeignAssetsModuleEvent extends Enum {1603 readonly isForeignAssetRegistered: boolean;1604 readonly asForeignAssetRegistered: {1605 readonly assetId: u32;1606 readonly assetAddress: XcmV1MultiLocation;1607 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1608 } & Struct;1609 readonly isForeignAssetUpdated: boolean;1610 readonly asForeignAssetUpdated: {1611 readonly assetId: u32;1612 readonly assetAddress: XcmV1MultiLocation;1613 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1614 } & Struct;1615 readonly isAssetRegistered: boolean;1616 readonly asAssetRegistered: {1617 readonly assetId: PalletForeignAssetsAssetIds;1618 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1619 } & Struct;1620 readonly isAssetUpdated: boolean;1621 readonly asAssetUpdated: {1622 readonly assetId: PalletForeignAssetsAssetIds;1623 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1624 } & Struct;1625 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1626}16271628/** @name PalletForeignAssetsNativeCurrency */1629export interface PalletForeignAssetsNativeCurrency extends Enum {1630 readonly isHere: boolean;1631 readonly isParent: boolean;1632 readonly type: 'Here' | 'Parent';1633}16341635/** @name PalletFungibleError */1636export interface PalletFungibleError extends Enum {1637 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1638 readonly isFungibleItemsHaveNoId: boolean;1639 readonly isFungibleItemsDontHaveData: boolean;1640 readonly isFungibleDisallowsNesting: boolean;1641 readonly isSettingPropertiesNotAllowed: boolean;1642 readonly isSettingAllowanceForAllNotAllowed: boolean;1643 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';1644}16451646/** @name PalletInflationCall */1647export interface PalletInflationCall extends Enum {1648 readonly isStartInflation: boolean;1649 readonly asStartInflation: {1650 readonly inflationStartRelayBlock: u32;1651 } & Struct;1652 readonly type: 'StartInflation';1653}16541655/** @name PalletMaintenanceCall */1656export interface PalletMaintenanceCall extends Enum {1657 readonly isEnable: boolean;1658 readonly isDisable: boolean;1659 readonly type: 'Enable' | 'Disable';1660}16611662/** @name PalletMaintenanceError */1663export interface PalletMaintenanceError extends Null {}16641665/** @name PalletMaintenanceEvent */1666export interface PalletMaintenanceEvent extends Enum {1667 readonly isMaintenanceEnabled: boolean;1668 readonly isMaintenanceDisabled: boolean;1669 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1670}16711672/** @name PalletNonfungibleError */1673export interface PalletNonfungibleError extends Enum {1674 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1675 readonly isNonfungibleItemsHaveNoAmount: boolean;1676 readonly isCantBurnNftWithChildren: boolean;1677 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1678}16791680/** @name PalletNonfungibleItemData */1681export interface PalletNonfungibleItemData extends Struct {1682 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1683}16841685/** @name PalletRefungibleError */1686export interface PalletRefungibleError extends Enum {1687 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1688 readonly isWrongRefungiblePieces: boolean;1689 readonly isRepartitionWhileNotOwningAllPieces: boolean;1690 readonly isRefungibleDisallowsNesting: boolean;1691 readonly isSettingPropertiesNotAllowed: boolean;1692 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1693}16941695/** @name PalletRefungibleItemData */1696export interface PalletRefungibleItemData extends Struct {1697 readonly constData: Bytes;1698}16991700/** @name PalletRmrkCoreCall */1701export interface PalletRmrkCoreCall extends Enum {1702 readonly isCreateCollection: boolean;1703 readonly asCreateCollection: {1704 readonly metadata: Bytes;1705 readonly max: Option<u32>;1706 readonly symbol: Bytes;1707 } & Struct;1708 readonly isDestroyCollection: boolean;1709 readonly asDestroyCollection: {1710 readonly collectionId: u32;1711 } & Struct;1712 readonly isChangeCollectionIssuer: boolean;1713 readonly asChangeCollectionIssuer: {1714 readonly collectionId: u32;1715 readonly newIssuer: MultiAddress;1716 } & Struct;1717 readonly isLockCollection: boolean;1718 readonly asLockCollection: {1719 readonly collectionId: u32;1720 } & Struct;1721 readonly isMintNft: boolean;1722 readonly asMintNft: {1723 readonly owner: Option<AccountId32>;1724 readonly collectionId: u32;1725 readonly recipient: Option<AccountId32>;1726 readonly royaltyAmount: Option<Permill>;1727 readonly metadata: Bytes;1728 readonly transferable: bool;1729 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1730 } & Struct;1731 readonly isBurnNft: boolean;1732 readonly asBurnNft: {1733 readonly collectionId: u32;1734 readonly nftId: u32;1735 readonly maxBurns: u32;1736 } & Struct;1737 readonly isSend: boolean;1738 readonly asSend: {1739 readonly rmrkCollectionId: u32;1740 readonly rmrkNftId: u32;1741 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1742 } & Struct;1743 readonly isAcceptNft: boolean;1744 readonly asAcceptNft: {1745 readonly rmrkCollectionId: u32;1746 readonly rmrkNftId: u32;1747 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1748 } & Struct;1749 readonly isRejectNft: boolean;1750 readonly asRejectNft: {1751 readonly rmrkCollectionId: u32;1752 readonly rmrkNftId: u32;1753 } & Struct;1754 readonly isAcceptResource: boolean;1755 readonly asAcceptResource: {1756 readonly rmrkCollectionId: u32;1757 readonly rmrkNftId: u32;1758 readonly resourceId: u32;1759 } & Struct;1760 readonly isAcceptResourceRemoval: boolean;1761 readonly asAcceptResourceRemoval: {1762 readonly rmrkCollectionId: u32;1763 readonly rmrkNftId: u32;1764 readonly resourceId: u32;1765 } & Struct;1766 readonly isSetProperty: boolean;1767 readonly asSetProperty: {1768 readonly rmrkCollectionId: Compact<u32>;1769 readonly maybeNftId: Option<u32>;1770 readonly key: Bytes;1771 readonly value: Bytes;1772 } & Struct;1773 readonly isSetPriority: boolean;1774 readonly asSetPriority: {1775 readonly rmrkCollectionId: u32;1776 readonly rmrkNftId: u32;1777 readonly priorities: Vec<u32>;1778 } & Struct;1779 readonly isAddBasicResource: boolean;1780 readonly asAddBasicResource: {1781 readonly rmrkCollectionId: u32;1782 readonly nftId: u32;1783 readonly resource: RmrkTraitsResourceBasicResource;1784 } & Struct;1785 readonly isAddComposableResource: boolean;1786 readonly asAddComposableResource: {1787 readonly rmrkCollectionId: u32;1788 readonly nftId: u32;1789 readonly resource: RmrkTraitsResourceComposableResource;1790 } & Struct;1791 readonly isAddSlotResource: boolean;1792 readonly asAddSlotResource: {1793 readonly rmrkCollectionId: u32;1794 readonly nftId: u32;1795 readonly resource: RmrkTraitsResourceSlotResource;1796 } & Struct;1797 readonly isRemoveResource: boolean;1798 readonly asRemoveResource: {1799 readonly rmrkCollectionId: u32;1800 readonly nftId: u32;1801 readonly resourceId: u32;1802 } & Struct;1803 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1804}18051806/** @name PalletRmrkCoreError */1807export interface PalletRmrkCoreError extends Enum {1808 readonly isCorruptedCollectionType: boolean;1809 readonly isRmrkPropertyKeyIsTooLong: boolean;1810 readonly isRmrkPropertyValueIsTooLong: boolean;1811 readonly isRmrkPropertyIsNotFound: boolean;1812 readonly isUnableToDecodeRmrkData: boolean;1813 readonly isCollectionNotEmpty: boolean;1814 readonly isNoAvailableCollectionId: boolean;1815 readonly isNoAvailableNftId: boolean;1816 readonly isCollectionUnknown: boolean;1817 readonly isNoPermission: boolean;1818 readonly isNonTransferable: boolean;1819 readonly isCollectionFullOrLocked: boolean;1820 readonly isResourceDoesntExist: boolean;1821 readonly isCannotSendToDescendentOrSelf: boolean;1822 readonly isCannotAcceptNonOwnedNft: boolean;1823 readonly isCannotRejectNonOwnedNft: boolean;1824 readonly isCannotRejectNonPendingNft: boolean;1825 readonly isResourceNotPending: boolean;1826 readonly isNoAvailableResourceId: boolean;1827 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1828}18291830/** @name PalletRmrkCoreEvent */1831export interface PalletRmrkCoreEvent extends Enum {1832 readonly isCollectionCreated: boolean;1833 readonly asCollectionCreated: {1834 readonly issuer: AccountId32;1835 readonly collectionId: u32;1836 } & Struct;1837 readonly isCollectionDestroyed: boolean;1838 readonly asCollectionDestroyed: {1839 readonly issuer: AccountId32;1840 readonly collectionId: u32;1841 } & Struct;1842 readonly isIssuerChanged: boolean;1843 readonly asIssuerChanged: {1844 readonly oldIssuer: AccountId32;1845 readonly newIssuer: AccountId32;1846 readonly collectionId: u32;1847 } & Struct;1848 readonly isCollectionLocked: boolean;1849 readonly asCollectionLocked: {1850 readonly issuer: AccountId32;1851 readonly collectionId: u32;1852 } & Struct;1853 readonly isNftMinted: boolean;1854 readonly asNftMinted: {1855 readonly owner: AccountId32;1856 readonly collectionId: u32;1857 readonly nftId: u32;1858 } & Struct;1859 readonly isNftBurned: boolean;1860 readonly asNftBurned: {1861 readonly owner: AccountId32;1862 readonly nftId: u32;1863 } & Struct;1864 readonly isNftSent: boolean;1865 readonly asNftSent: {1866 readonly sender: AccountId32;1867 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1868 readonly collectionId: u32;1869 readonly nftId: u32;1870 readonly approvalRequired: bool;1871 } & Struct;1872 readonly isNftAccepted: boolean;1873 readonly asNftAccepted: {1874 readonly sender: AccountId32;1875 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1876 readonly collectionId: u32;1877 readonly nftId: u32;1878 } & Struct;1879 readonly isNftRejected: boolean;1880 readonly asNftRejected: {1881 readonly sender: AccountId32;1882 readonly collectionId: u32;1883 readonly nftId: u32;1884 } & Struct;1885 readonly isPropertySet: boolean;1886 readonly asPropertySet: {1887 readonly collectionId: u32;1888 readonly maybeNftId: Option<u32>;1889 readonly key: Bytes;1890 readonly value: Bytes;1891 } & Struct;1892 readonly isResourceAdded: boolean;1893 readonly asResourceAdded: {1894 readonly nftId: u32;1895 readonly resourceId: u32;1896 } & Struct;1897 readonly isResourceRemoval: boolean;1898 readonly asResourceRemoval: {1899 readonly nftId: u32;1900 readonly resourceId: u32;1901 } & Struct;1902 readonly isResourceAccepted: boolean;1903 readonly asResourceAccepted: {1904 readonly nftId: u32;1905 readonly resourceId: u32;1906 } & Struct;1907 readonly isResourceRemovalAccepted: boolean;1908 readonly asResourceRemovalAccepted: {1909 readonly nftId: u32;1910 readonly resourceId: u32;1911 } & Struct;1912 readonly isPrioritySet: boolean;1913 readonly asPrioritySet: {1914 readonly collectionId: u32;1915 readonly nftId: u32;1916 } & Struct;1917 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1918}19191920/** @name PalletRmrkEquipCall */1921export interface PalletRmrkEquipCall extends Enum {1922 readonly isCreateBase: boolean;1923 readonly asCreateBase: {1924 readonly baseType: Bytes;1925 readonly symbol: Bytes;1926 readonly parts: Vec<RmrkTraitsPartPartType>;1927 } & Struct;1928 readonly isThemeAdd: boolean;1929 readonly asThemeAdd: {1930 readonly baseId: u32;1931 readonly theme: RmrkTraitsTheme;1932 } & Struct;1933 readonly isEquippable: boolean;1934 readonly asEquippable: {1935 readonly baseId: u32;1936 readonly slotId: u32;1937 readonly equippables: RmrkTraitsPartEquippableList;1938 } & Struct;1939 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1940}19411942/** @name PalletRmrkEquipError */1943export interface PalletRmrkEquipError extends Enum {1944 readonly isPermissionError: boolean;1945 readonly isNoAvailableBaseId: boolean;1946 readonly isNoAvailablePartId: boolean;1947 readonly isBaseDoesntExist: boolean;1948 readonly isNeedsDefaultThemeFirst: boolean;1949 readonly isPartDoesntExist: boolean;1950 readonly isNoEquippableOnFixedPart: boolean;1951 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1952}19531954/** @name PalletRmrkEquipEvent */1955export interface PalletRmrkEquipEvent extends Enum {1956 readonly isBaseCreated: boolean;1957 readonly asBaseCreated: {1958 readonly issuer: AccountId32;1959 readonly baseId: u32;1960 } & Struct;1961 readonly isEquippablesUpdated: boolean;1962 readonly asEquippablesUpdated: {1963 readonly baseId: u32;1964 readonly slotId: u32;1965 } & Struct;1966 readonly type: 'BaseCreated' | 'EquippablesUpdated';1967}19681969/** @name PalletStructureCall */1970export interface PalletStructureCall extends Null {}19711972/** @name PalletStructureError */1973export interface PalletStructureError extends Enum {1974 readonly isOuroborosDetected: boolean;1975 readonly isDepthLimit: boolean;1976 readonly isBreadthLimit: boolean;1977 readonly isTokenNotFound: boolean;1978 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1979}19801981/** @name PalletStructureEvent */1982export interface PalletStructureEvent extends Enum {1983 readonly isExecuted: boolean;1984 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1985 readonly type: 'Executed';1986}19871988/** @name PalletSudoCall */1989export interface PalletSudoCall extends Enum {1990 readonly isSudo: boolean;1991 readonly asSudo: {1992 readonly call: Call;1993 } & Struct;1994 readonly isSudoUncheckedWeight: boolean;1995 readonly asSudoUncheckedWeight: {1996 readonly call: Call;1997 readonly weight: SpWeightsWeightV2Weight;1998 } & Struct;1999 readonly isSetKey: boolean;2000 readonly asSetKey: {2001 readonly new_: MultiAddress;2002 } & Struct;2003 readonly isSudoAs: boolean;2004 readonly asSudoAs: {2005 readonly who: MultiAddress;2006 readonly call: Call;2007 } & Struct;2008 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2009}20102011/** @name PalletSudoError */2012export interface PalletSudoError extends Enum {2013 readonly isRequireSudo: boolean;2014 readonly type: 'RequireSudo';2015}20162017/** @name PalletSudoEvent */2018export interface PalletSudoEvent extends Enum {2019 readonly isSudid: boolean;2020 readonly asSudid: {2021 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2022 } & Struct;2023 readonly isKeyChanged: boolean;2024 readonly asKeyChanged: {2025 readonly oldSudoer: Option<AccountId32>;2026 } & Struct;2027 readonly isSudoAsDone: boolean;2028 readonly asSudoAsDone: {2029 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2030 } & Struct;2031 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2032}20332034/** @name PalletTemplateTransactionPaymentCall */2035export interface PalletTemplateTransactionPaymentCall extends Null {}20362037/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2038export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}20392040/** @name PalletTestUtilsCall */2041export interface PalletTestUtilsCall extends Enum {2042 readonly isEnable: boolean;2043 readonly isSetTestValue: boolean;2044 readonly asSetTestValue: {2045 readonly value: u32;2046 } & Struct;2047 readonly isSetTestValueAndRollback: boolean;2048 readonly asSetTestValueAndRollback: {2049 readonly value: u32;2050 } & Struct;2051 readonly isIncTestValue: boolean;2052 readonly isSelfCancelingInc: boolean;2053 readonly asSelfCancelingInc: {2054 readonly id: U8aFixed;2055 readonly maxTestValue: u32;2056 } & Struct;2057 readonly isJustTakeFee: boolean;2058 readonly isBatchAll: boolean;2059 readonly asBatchAll: {2060 readonly calls: Vec<Call>;2061 } & Struct;2062 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';2063}20642065/** @name PalletTestUtilsError */2066export interface PalletTestUtilsError extends Enum {2067 readonly isTestPalletDisabled: boolean;2068 readonly isTriggerRollback: boolean;2069 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2070}20712072/** @name PalletTestUtilsEvent */2073export interface PalletTestUtilsEvent extends Enum {2074 readonly isValueIsSet: boolean;2075 readonly isShouldRollback: boolean;2076 readonly isBatchCompleted: boolean;2077 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2078}20792080/** @name PalletTimestampCall */2081export interface PalletTimestampCall extends Enum {2082 readonly isSet: boolean;2083 readonly asSet: {2084 readonly now: Compact<u64>;2085 } & Struct;2086 readonly type: 'Set';2087}20882089/** @name PalletTransactionPaymentEvent */2090export interface PalletTransactionPaymentEvent extends Enum {2091 readonly isTransactionFeePaid: boolean;2092 readonly asTransactionFeePaid: {2093 readonly who: AccountId32;2094 readonly actualFee: u128;2095 readonly tip: u128;2096 } & Struct;2097 readonly type: 'TransactionFeePaid';2098}20992100/** @name PalletTransactionPaymentReleases */2101export interface PalletTransactionPaymentReleases extends Enum {2102 readonly isV1Ancient: boolean;2103 readonly isV2: boolean;2104 readonly type: 'V1Ancient' | 'V2';2105}21062107/** @name PalletTreasuryCall */2108export interface PalletTreasuryCall extends Enum {2109 readonly isProposeSpend: boolean;2110 readonly asProposeSpend: {2111 readonly value: Compact<u128>;2112 readonly beneficiary: MultiAddress;2113 } & Struct;2114 readonly isRejectProposal: boolean;2115 readonly asRejectProposal: {2116 readonly proposalId: Compact<u32>;2117 } & Struct;2118 readonly isApproveProposal: boolean;2119 readonly asApproveProposal: {2120 readonly proposalId: Compact<u32>;2121 } & Struct;2122 readonly isSpend: boolean;2123 readonly asSpend: {2124 readonly amount: Compact<u128>;2125 readonly beneficiary: MultiAddress;2126 } & Struct;2127 readonly isRemoveApproval: boolean;2128 readonly asRemoveApproval: {2129 readonly proposalId: Compact<u32>;2130 } & Struct;2131 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2132}21332134/** @name PalletTreasuryError */2135export interface PalletTreasuryError extends Enum {2136 readonly isInsufficientProposersBalance: boolean;2137 readonly isInvalidIndex: boolean;2138 readonly isTooManyApprovals: boolean;2139 readonly isInsufficientPermission: boolean;2140 readonly isProposalNotApproved: boolean;2141 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2142}21432144/** @name PalletTreasuryEvent */2145export interface PalletTreasuryEvent extends Enum {2146 readonly isProposed: boolean;2147 readonly asProposed: {2148 readonly proposalIndex: u32;2149 } & Struct;2150 readonly isSpending: boolean;2151 readonly asSpending: {2152 readonly budgetRemaining: u128;2153 } & Struct;2154 readonly isAwarded: boolean;2155 readonly asAwarded: {2156 readonly proposalIndex: u32;2157 readonly award: u128;2158 readonly account: AccountId32;2159 } & Struct;2160 readonly isRejected: boolean;2161 readonly asRejected: {2162 readonly proposalIndex: u32;2163 readonly slashed: u128;2164 } & Struct;2165 readonly isBurnt: boolean;2166 readonly asBurnt: {2167 readonly burntFunds: u128;2168 } & Struct;2169 readonly isRollover: boolean;2170 readonly asRollover: {2171 readonly rolloverBalance: u128;2172 } & Struct;2173 readonly isDeposit: boolean;2174 readonly asDeposit: {2175 readonly value: u128;2176 } & Struct;2177 readonly isSpendApproved: boolean;2178 readonly asSpendApproved: {2179 readonly proposalIndex: u32;2180 readonly amount: u128;2181 readonly beneficiary: AccountId32;2182 } & Struct;2183 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';2184}21852186/** @name PalletTreasuryProposal */2187export interface PalletTreasuryProposal extends Struct {2188 readonly proposer: AccountId32;2189 readonly value: u128;2190 readonly beneficiary: AccountId32;2191 readonly bond: u128;2192}21932194/** @name PalletUniqueCall */2195export interface PalletUniqueCall extends Enum {2196 readonly isCreateCollection: boolean;2197 readonly asCreateCollection: {2198 readonly collectionName: Vec<u16>;2199 readonly collectionDescription: Vec<u16>;2200 readonly tokenPrefix: Bytes;2201 readonly mode: UpDataStructsCollectionMode;2202 } & Struct;2203 readonly isCreateCollectionEx: boolean;2204 readonly asCreateCollectionEx: {2205 readonly data: UpDataStructsCreateCollectionData;2206 } & Struct;2207 readonly isDestroyCollection: boolean;2208 readonly asDestroyCollection: {2209 readonly collectionId: u32;2210 } & Struct;2211 readonly isAddToAllowList: boolean;2212 readonly asAddToAllowList: {2213 readonly collectionId: u32;2214 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2215 } & Struct;2216 readonly isRemoveFromAllowList: boolean;2217 readonly asRemoveFromAllowList: {2218 readonly collectionId: u32;2219 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2220 } & Struct;2221 readonly isChangeCollectionOwner: boolean;2222 readonly asChangeCollectionOwner: {2223 readonly collectionId: u32;2224 readonly newOwner: AccountId32;2225 } & Struct;2226 readonly isAddCollectionAdmin: boolean;2227 readonly asAddCollectionAdmin: {2228 readonly collectionId: u32;2229 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2230 } & Struct;2231 readonly isRemoveCollectionAdmin: boolean;2232 readonly asRemoveCollectionAdmin: {2233 readonly collectionId: u32;2234 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2235 } & Struct;2236 readonly isSetCollectionSponsor: boolean;2237 readonly asSetCollectionSponsor: {2238 readonly collectionId: u32;2239 readonly newSponsor: AccountId32;2240 } & Struct;2241 readonly isConfirmSponsorship: boolean;2242 readonly asConfirmSponsorship: {2243 readonly collectionId: u32;2244 } & Struct;2245 readonly isRemoveCollectionSponsor: boolean;2246 readonly asRemoveCollectionSponsor: {2247 readonly collectionId: u32;2248 } & Struct;2249 readonly isCreateItem: boolean;2250 readonly asCreateItem: {2251 readonly collectionId: u32;2252 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2253 readonly data: UpDataStructsCreateItemData;2254 } & Struct;2255 readonly isCreateMultipleItems: boolean;2256 readonly asCreateMultipleItems: {2257 readonly collectionId: u32;2258 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2259 readonly itemsData: Vec<UpDataStructsCreateItemData>;2260 } & Struct;2261 readonly isSetCollectionProperties: boolean;2262 readonly asSetCollectionProperties: {2263 readonly collectionId: u32;2264 readonly properties: Vec<UpDataStructsProperty>;2265 } & Struct;2266 readonly isDeleteCollectionProperties: boolean;2267 readonly asDeleteCollectionProperties: {2268 readonly collectionId: u32;2269 readonly propertyKeys: Vec<Bytes>;2270 } & Struct;2271 readonly isSetTokenProperties: boolean;2272 readonly asSetTokenProperties: {2273 readonly collectionId: u32;2274 readonly tokenId: u32;2275 readonly properties: Vec<UpDataStructsProperty>;2276 } & Struct;2277 readonly isDeleteTokenProperties: boolean;2278 readonly asDeleteTokenProperties: {2279 readonly collectionId: u32;2280 readonly tokenId: u32;2281 readonly propertyKeys: Vec<Bytes>;2282 } & Struct;2283 readonly isSetTokenPropertyPermissions: boolean;2284 readonly asSetTokenPropertyPermissions: {2285 readonly collectionId: u32;2286 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2287 } & Struct;2288 readonly isCreateMultipleItemsEx: boolean;2289 readonly asCreateMultipleItemsEx: {2290 readonly collectionId: u32;2291 readonly data: UpDataStructsCreateItemExData;2292 } & Struct;2293 readonly isSetTransfersEnabledFlag: boolean;2294 readonly asSetTransfersEnabledFlag: {2295 readonly collectionId: u32;2296 readonly value: bool;2297 } & Struct;2298 readonly isBurnItem: boolean;2299 readonly asBurnItem: {2300 readonly collectionId: u32;2301 readonly itemId: u32;2302 readonly value: u128;2303 } & Struct;2304 readonly isBurnFrom: boolean;2305 readonly asBurnFrom: {2306 readonly collectionId: u32;2307 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2308 readonly itemId: u32;2309 readonly value: u128;2310 } & Struct;2311 readonly isTransfer: boolean;2312 readonly asTransfer: {2313 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2314 readonly collectionId: u32;2315 readonly itemId: u32;2316 readonly value: u128;2317 } & Struct;2318 readonly isApprove: boolean;2319 readonly asApprove: {2320 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2321 readonly collectionId: u32;2322 readonly itemId: u32;2323 readonly amount: u128;2324 } & Struct;2325 readonly isTransferFrom: boolean;2326 readonly asTransferFrom: {2327 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2328 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2329 readonly collectionId: u32;2330 readonly itemId: u32;2331 readonly value: u128;2332 } & Struct;2333 readonly isSetCollectionLimits: boolean;2334 readonly asSetCollectionLimits: {2335 readonly collectionId: u32;2336 readonly newLimit: UpDataStructsCollectionLimits;2337 } & Struct;2338 readonly isSetCollectionPermissions: boolean;2339 readonly asSetCollectionPermissions: {2340 readonly collectionId: u32;2341 readonly newPermission: UpDataStructsCollectionPermissions;2342 } & Struct;2343 readonly isRepartition: boolean;2344 readonly asRepartition: {2345 readonly collectionId: u32;2346 readonly tokenId: u32;2347 readonly amount: u128;2348 } & Struct;2349 readonly isSetAllowanceForAll: boolean;2350 readonly asSetAllowanceForAll: {2351 readonly collectionId: u32;2352 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2353 readonly approve: bool;2354 } & Struct;2355 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2356}23572358/** @name PalletUniqueError */2359export interface PalletUniqueError extends Enum {2360 readonly isCollectionDecimalPointLimitExceeded: boolean;2361 readonly isEmptyArgument: boolean;2362 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2363 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2364}23652366/** @name PalletUniqueSchedulerV2BlockAgenda */2367export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {2368 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;2369 readonly freePlaces: u32;2370}23712372/** @name PalletUniqueSchedulerV2Call */2373export interface PalletUniqueSchedulerV2Call extends Enum {2374 readonly isSchedule: boolean;2375 readonly asSchedule: {2376 readonly when: u32;2377 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2378 readonly priority: Option<u8>;2379 readonly call: Call;2380 } & Struct;2381 readonly isCancel: boolean;2382 readonly asCancel: {2383 readonly when: u32;2384 readonly index: u32;2385 } & Struct;2386 readonly isScheduleNamed: boolean;2387 readonly asScheduleNamed: {2388 readonly id: U8aFixed;2389 readonly when: u32;2390 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2391 readonly priority: Option<u8>;2392 readonly call: Call;2393 } & Struct;2394 readonly isCancelNamed: boolean;2395 readonly asCancelNamed: {2396 readonly id: U8aFixed;2397 } & Struct;2398 readonly isScheduleAfter: boolean;2399 readonly asScheduleAfter: {2400 readonly after: u32;2401 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2402 readonly priority: Option<u8>;2403 readonly call: Call;2404 } & Struct;2405 readonly isScheduleNamedAfter: boolean;2406 readonly asScheduleNamedAfter: {2407 readonly id: U8aFixed;2408 readonly after: u32;2409 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2410 readonly priority: Option<u8>;2411 readonly call: Call;2412 } & Struct;2413 readonly isChangeNamedPriority: boolean;2414 readonly asChangeNamedPriority: {2415 readonly id: U8aFixed;2416 readonly priority: u8;2417 } & Struct;2418 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2419}24202421/** @name PalletUniqueSchedulerV2Error */2422export interface PalletUniqueSchedulerV2Error extends Enum {2423 readonly isFailedToSchedule: boolean;2424 readonly isAgendaIsExhausted: boolean;2425 readonly isScheduledCallCorrupted: boolean;2426 readonly isPreimageNotFound: boolean;2427 readonly isTooBigScheduledCall: boolean;2428 readonly isNotFound: boolean;2429 readonly isTargetBlockNumberInPast: boolean;2430 readonly isNamed: boolean;2431 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';2432}24332434/** @name PalletUniqueSchedulerV2Event */2435export interface PalletUniqueSchedulerV2Event extends Enum {2436 readonly isScheduled: boolean;2437 readonly asScheduled: {2438 readonly when: u32;2439 readonly index: u32;2440 } & Struct;2441 readonly isCanceled: boolean;2442 readonly asCanceled: {2443 readonly when: u32;2444 readonly index: u32;2445 } & Struct;2446 readonly isDispatched: boolean;2447 readonly asDispatched: {2448 readonly task: ITuple<[u32, u32]>;2449 readonly id: Option<U8aFixed>;2450 readonly result: Result<Null, SpRuntimeDispatchError>;2451 } & Struct;2452 readonly isPriorityChanged: boolean;2453 readonly asPriorityChanged: {2454 readonly task: ITuple<[u32, u32]>;2455 readonly priority: u8;2456 } & Struct;2457 readonly isCallUnavailable: boolean;2458 readonly asCallUnavailable: {2459 readonly task: ITuple<[u32, u32]>;2460 readonly id: Option<U8aFixed>;2461 } & Struct;2462 readonly isPermanentlyOverweight: boolean;2463 readonly asPermanentlyOverweight: {2464 readonly task: ITuple<[u32, u32]>;2465 readonly id: Option<U8aFixed>;2466 } & Struct;2467 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';2468}24692470/** @name PalletUniqueSchedulerV2Scheduled */2471export interface PalletUniqueSchedulerV2Scheduled extends Struct {2472 readonly maybeId: Option<U8aFixed>;2473 readonly priority: u8;2474 readonly call: PalletUniqueSchedulerV2ScheduledCall;2475 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2476 readonly origin: OpalRuntimeOriginCaller;2477}24782479/** @name PalletUniqueSchedulerV2ScheduledCall */2480export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {2481 readonly isInline: boolean;2482 readonly asInline: Bytes;2483 readonly isPreimageLookup: boolean;2484 readonly asPreimageLookup: {2485 readonly hash_: H256;2486 readonly unboundedLen: u32;2487 } & Struct;2488 readonly type: 'Inline' | 'PreimageLookup';2489}24902491/** @name PalletXcmCall */2492export interface PalletXcmCall extends Enum {2493 readonly isSend: boolean;2494 readonly asSend: {2495 readonly dest: XcmVersionedMultiLocation;2496 readonly message: XcmVersionedXcm;2497 } & Struct;2498 readonly isTeleportAssets: boolean;2499 readonly asTeleportAssets: {2500 readonly dest: XcmVersionedMultiLocation;2501 readonly beneficiary: XcmVersionedMultiLocation;2502 readonly assets: XcmVersionedMultiAssets;2503 readonly feeAssetItem: u32;2504 } & Struct;2505 readonly isReserveTransferAssets: boolean;2506 readonly asReserveTransferAssets: {2507 readonly dest: XcmVersionedMultiLocation;2508 readonly beneficiary: XcmVersionedMultiLocation;2509 readonly assets: XcmVersionedMultiAssets;2510 readonly feeAssetItem: u32;2511 } & Struct;2512 readonly isExecute: boolean;2513 readonly asExecute: {2514 readonly message: XcmVersionedXcm;2515 readonly maxWeight: u64;2516 } & Struct;2517 readonly isForceXcmVersion: boolean;2518 readonly asForceXcmVersion: {2519 readonly location: XcmV1MultiLocation;2520 readonly xcmVersion: u32;2521 } & Struct;2522 readonly isForceDefaultXcmVersion: boolean;2523 readonly asForceDefaultXcmVersion: {2524 readonly maybeXcmVersion: Option<u32>;2525 } & Struct;2526 readonly isForceSubscribeVersionNotify: boolean;2527 readonly asForceSubscribeVersionNotify: {2528 readonly location: XcmVersionedMultiLocation;2529 } & Struct;2530 readonly isForceUnsubscribeVersionNotify: boolean;2531 readonly asForceUnsubscribeVersionNotify: {2532 readonly location: XcmVersionedMultiLocation;2533 } & Struct;2534 readonly isLimitedReserveTransferAssets: boolean;2535 readonly asLimitedReserveTransferAssets: {2536 readonly dest: XcmVersionedMultiLocation;2537 readonly beneficiary: XcmVersionedMultiLocation;2538 readonly assets: XcmVersionedMultiAssets;2539 readonly feeAssetItem: u32;2540 readonly weightLimit: XcmV2WeightLimit;2541 } & Struct;2542 readonly isLimitedTeleportAssets: boolean;2543 readonly asLimitedTeleportAssets: {2544 readonly dest: XcmVersionedMultiLocation;2545 readonly beneficiary: XcmVersionedMultiLocation;2546 readonly assets: XcmVersionedMultiAssets;2547 readonly feeAssetItem: u32;2548 readonly weightLimit: XcmV2WeightLimit;2549 } & Struct;2550 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2551}25522553/** @name PalletXcmError */2554export interface PalletXcmError extends Enum {2555 readonly isUnreachable: boolean;2556 readonly isSendFailure: boolean;2557 readonly isFiltered: boolean;2558 readonly isUnweighableMessage: boolean;2559 readonly isDestinationNotInvertible: boolean;2560 readonly isEmpty: boolean;2561 readonly isCannotReanchor: boolean;2562 readonly isTooManyAssets: boolean;2563 readonly isInvalidOrigin: boolean;2564 readonly isBadVersion: boolean;2565 readonly isBadLocation: boolean;2566 readonly isNoSubscription: boolean;2567 readonly isAlreadySubscribed: boolean;2568 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2569}25702571/** @name PalletXcmEvent */2572export interface PalletXcmEvent extends Enum {2573 readonly isAttempted: boolean;2574 readonly asAttempted: XcmV2TraitsOutcome;2575 readonly isSent: boolean;2576 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2577 readonly isUnexpectedResponse: boolean;2578 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2579 readonly isResponseReady: boolean;2580 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2581 readonly isNotified: boolean;2582 readonly asNotified: ITuple<[u64, u8, u8]>;2583 readonly isNotifyOverweight: boolean;2584 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2585 readonly isNotifyDispatchError: boolean;2586 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2587 readonly isNotifyDecodeFailed: boolean;2588 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2589 readonly isInvalidResponder: boolean;2590 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2591 readonly isInvalidResponderVersion: boolean;2592 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2593 readonly isResponseTaken: boolean;2594 readonly asResponseTaken: u64;2595 readonly isAssetsTrapped: boolean;2596 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2597 readonly isVersionChangeNotified: boolean;2598 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2599 readonly isSupportedVersionChanged: boolean;2600 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2601 readonly isNotifyTargetSendFail: boolean;2602 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2603 readonly isNotifyTargetMigrationFail: boolean;2604 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2605 readonly isAssetsClaimed: boolean;2606 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2607 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2608}26092610/** @name PalletXcmOrigin */2611export interface PalletXcmOrigin extends Enum {2612 readonly isXcm: boolean;2613 readonly asXcm: XcmV1MultiLocation;2614 readonly isResponse: boolean;2615 readonly asResponse: XcmV1MultiLocation;2616 readonly type: 'Xcm' | 'Response';2617}26182619/** @name PhantomTypeUpDataStructs */2620export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}26212622/** @name PolkadotCorePrimitivesInboundDownwardMessage */2623export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2624 readonly sentAt: u32;2625 readonly msg: Bytes;2626}26272628/** @name PolkadotCorePrimitivesInboundHrmpMessage */2629export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2630 readonly sentAt: u32;2631 readonly data: Bytes;2632}26332634/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2635export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2636 readonly recipient: u32;2637 readonly data: Bytes;2638}26392640/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2641export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2642 readonly isConcatenatedVersionedXcm: boolean;2643 readonly isConcatenatedEncodedBlob: boolean;2644 readonly isSignals: boolean;2645 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2646}26472648/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2649export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2650 readonly maxCodeSize: u32;2651 readonly maxHeadDataSize: u32;2652 readonly maxUpwardQueueCount: u32;2653 readonly maxUpwardQueueSize: u32;2654 readonly maxUpwardMessageSize: u32;2655 readonly maxUpwardMessageNumPerCandidate: u32;2656 readonly hrmpMaxMessageNumPerCandidate: u32;2657 readonly validationUpgradeCooldown: u32;2658 readonly validationUpgradeDelay: u32;2659}26602661/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2662export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2663 readonly maxCapacity: u32;2664 readonly maxTotalSize: u32;2665 readonly maxMessageSize: u32;2666 readonly msgCount: u32;2667 readonly totalSize: u32;2668 readonly mqcHead: Option<H256>;2669}26702671/** @name PolkadotPrimitivesV2PersistedValidationData */2672export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2673 readonly parentHead: Bytes;2674 readonly relayParentNumber: u32;2675 readonly relayParentStorageRoot: H256;2676 readonly maxPovSize: u32;2677}26782679/** @name PolkadotPrimitivesV2UpgradeRestriction */2680export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2681 readonly isPresent: boolean;2682 readonly type: 'Present';2683}26842685/** @name RmrkTraitsBaseBaseInfo */2686export interface RmrkTraitsBaseBaseInfo extends Struct {2687 readonly issuer: AccountId32;2688 readonly baseType: Bytes;2689 readonly symbol: Bytes;2690}26912692/** @name RmrkTraitsCollectionCollectionInfo */2693export interface RmrkTraitsCollectionCollectionInfo extends Struct {2694 readonly issuer: AccountId32;2695 readonly metadata: Bytes;2696 readonly max: Option<u32>;2697 readonly symbol: Bytes;2698 readonly nftsCount: u32;2699}27002701/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2702export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2703 readonly isAccountId: boolean;2704 readonly asAccountId: AccountId32;2705 readonly isCollectionAndNftTuple: boolean;2706 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2707 readonly type: 'AccountId' | 'CollectionAndNftTuple';2708}27092710/** @name RmrkTraitsNftNftChild */2711export interface RmrkTraitsNftNftChild extends Struct {2712 readonly collectionId: u32;2713 readonly nftId: u32;2714}27152716/** @name RmrkTraitsNftNftInfo */2717export interface RmrkTraitsNftNftInfo extends Struct {2718 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2719 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2720 readonly metadata: Bytes;2721 readonly equipped: bool;2722 readonly pending: bool;2723}27242725/** @name RmrkTraitsNftRoyaltyInfo */2726export interface RmrkTraitsNftRoyaltyInfo extends Struct {2727 readonly recipient: AccountId32;2728 readonly amount: Permill;2729}27302731/** @name RmrkTraitsPartEquippableList */2732export interface RmrkTraitsPartEquippableList extends Enum {2733 readonly isAll: boolean;2734 readonly isEmpty: boolean;2735 readonly isCustom: boolean;2736 readonly asCustom: Vec<u32>;2737 readonly type: 'All' | 'Empty' | 'Custom';2738}27392740/** @name RmrkTraitsPartFixedPart */2741export interface RmrkTraitsPartFixedPart extends Struct {2742 readonly id: u32;2743 readonly z: u32;2744 readonly src: Bytes;2745}27462747/** @name RmrkTraitsPartPartType */2748export interface RmrkTraitsPartPartType extends Enum {2749 readonly isFixedPart: boolean;2750 readonly asFixedPart: RmrkTraitsPartFixedPart;2751 readonly isSlotPart: boolean;2752 readonly asSlotPart: RmrkTraitsPartSlotPart;2753 readonly type: 'FixedPart' | 'SlotPart';2754}27552756/** @name RmrkTraitsPartSlotPart */2757export interface RmrkTraitsPartSlotPart extends Struct {2758 readonly id: u32;2759 readonly equippable: RmrkTraitsPartEquippableList;2760 readonly src: Bytes;2761 readonly z: u32;2762}27632764/** @name RmrkTraitsPropertyPropertyInfo */2765export interface RmrkTraitsPropertyPropertyInfo extends Struct {2766 readonly key: Bytes;2767 readonly value: Bytes;2768}27692770/** @name RmrkTraitsResourceBasicResource */2771export interface RmrkTraitsResourceBasicResource extends Struct {2772 readonly src: Option<Bytes>;2773 readonly metadata: Option<Bytes>;2774 readonly license: Option<Bytes>;2775 readonly thumb: Option<Bytes>;2776}27772778/** @name RmrkTraitsResourceComposableResource */2779export interface RmrkTraitsResourceComposableResource extends Struct {2780 readonly parts: Vec<u32>;2781 readonly base: u32;2782 readonly src: Option<Bytes>;2783 readonly metadata: Option<Bytes>;2784 readonly license: Option<Bytes>;2785 readonly thumb: Option<Bytes>;2786}27872788/** @name RmrkTraitsResourceResourceInfo */2789export interface RmrkTraitsResourceResourceInfo extends Struct {2790 readonly id: u32;2791 readonly resource: RmrkTraitsResourceResourceTypes;2792 readonly pending: bool;2793 readonly pendingRemoval: bool;2794}27952796/** @name RmrkTraitsResourceResourceTypes */2797export interface RmrkTraitsResourceResourceTypes extends Enum {2798 readonly isBasic: boolean;2799 readonly asBasic: RmrkTraitsResourceBasicResource;2800 readonly isComposable: boolean;2801 readonly asComposable: RmrkTraitsResourceComposableResource;2802 readonly isSlot: boolean;2803 readonly asSlot: RmrkTraitsResourceSlotResource;2804 readonly type: 'Basic' | 'Composable' | 'Slot';2805}28062807/** @name RmrkTraitsResourceSlotResource */2808export interface RmrkTraitsResourceSlotResource extends Struct {2809 readonly base: u32;2810 readonly src: Option<Bytes>;2811 readonly metadata: Option<Bytes>;2812 readonly slot: u32;2813 readonly license: Option<Bytes>;2814 readonly thumb: Option<Bytes>;2815}28162817/** @name RmrkTraitsTheme */2818export interface RmrkTraitsTheme extends Struct {2819 readonly name: Bytes;2820 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2821 readonly inherit: bool;2822}28232824/** @name RmrkTraitsThemeThemeProperty */2825export interface RmrkTraitsThemeThemeProperty extends Struct {2826 readonly key: Bytes;2827 readonly value: Bytes;2828}28292830/** @name SpCoreEcdsaSignature */2831export interface SpCoreEcdsaSignature extends U8aFixed {}28322833/** @name SpCoreEd25519Signature */2834export interface SpCoreEd25519Signature extends U8aFixed {}28352836/** @name SpCoreSr25519Signature */2837export interface SpCoreSr25519Signature extends U8aFixed {}28382839/** @name SpCoreVoid */2840export interface SpCoreVoid extends Null {}28412842/** @name SpRuntimeArithmeticError */2843export interface SpRuntimeArithmeticError extends Enum {2844 readonly isUnderflow: boolean;2845 readonly isOverflow: boolean;2846 readonly isDivisionByZero: boolean;2847 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2848}28492850/** @name SpRuntimeDigest */2851export interface SpRuntimeDigest extends Struct {2852 readonly logs: Vec<SpRuntimeDigestDigestItem>;2853}28542855/** @name SpRuntimeDigestDigestItem */2856export interface SpRuntimeDigestDigestItem extends Enum {2857 readonly isOther: boolean;2858 readonly asOther: Bytes;2859 readonly isConsensus: boolean;2860 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2861 readonly isSeal: boolean;2862 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2863 readonly isPreRuntime: boolean;2864 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2865 readonly isRuntimeEnvironmentUpdated: boolean;2866 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2867}28682869/** @name SpRuntimeDispatchError */2870export interface SpRuntimeDispatchError extends Enum {2871 readonly isOther: boolean;2872 readonly isCannotLookup: boolean;2873 readonly isBadOrigin: boolean;2874 readonly isModule: boolean;2875 readonly asModule: SpRuntimeModuleError;2876 readonly isConsumerRemaining: boolean;2877 readonly isNoProviders: boolean;2878 readonly isTooManyConsumers: boolean;2879 readonly isToken: boolean;2880 readonly asToken: SpRuntimeTokenError;2881 readonly isArithmetic: boolean;2882 readonly asArithmetic: SpRuntimeArithmeticError;2883 readonly isTransactional: boolean;2884 readonly asTransactional: SpRuntimeTransactionalError;2885 readonly isExhausted: boolean;2886 readonly isCorruption: boolean;2887 readonly isUnavailable: boolean;2888 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2889}28902891/** @name SpRuntimeModuleError */2892export interface SpRuntimeModuleError extends Struct {2893 readonly index: u8;2894 readonly error: U8aFixed;2895}28962897/** @name SpRuntimeMultiSignature */2898export interface SpRuntimeMultiSignature extends Enum {2899 readonly isEd25519: boolean;2900 readonly asEd25519: SpCoreEd25519Signature;2901 readonly isSr25519: boolean;2902 readonly asSr25519: SpCoreSr25519Signature;2903 readonly isEcdsa: boolean;2904 readonly asEcdsa: SpCoreEcdsaSignature;2905 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2906}29072908/** @name SpRuntimeTokenError */2909export interface SpRuntimeTokenError extends Enum {2910 readonly isNoFunds: boolean;2911 readonly isWouldDie: boolean;2912 readonly isBelowMinimum: boolean;2913 readonly isCannotCreate: boolean;2914 readonly isUnknownAsset: boolean;2915 readonly isFrozen: boolean;2916 readonly isUnsupported: boolean;2917 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2918}29192920/** @name SpRuntimeTransactionalError */2921export interface SpRuntimeTransactionalError extends Enum {2922 readonly isLimitReached: boolean;2923 readonly isNoLayer: boolean;2924 readonly type: 'LimitReached' | 'NoLayer';2925}29262927/** @name SpTrieStorageProof */2928export interface SpTrieStorageProof extends Struct {2929 readonly trieNodes: BTreeSet<Bytes>;2930}29312932/** @name SpVersionRuntimeVersion */2933export interface SpVersionRuntimeVersion extends Struct {2934 readonly specName: Text;2935 readonly implName: Text;2936 readonly authoringVersion: u32;2937 readonly specVersion: u32;2938 readonly implVersion: u32;2939 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2940 readonly transactionVersion: u32;2941 readonly stateVersion: u8;2942}29432944/** @name SpWeightsRuntimeDbWeight */2945export interface SpWeightsRuntimeDbWeight extends Struct {2946 readonly read: u64;2947 readonly write: u64;2948}29492950/** @name SpWeightsWeightV2Weight */2951export interface SpWeightsWeightV2Weight extends Struct {2952 readonly refTime: Compact<u64>;2953 readonly proofSize: Compact<u64>;2954}29552956/** @name UpDataStructsAccessMode */2957export interface UpDataStructsAccessMode extends Enum {2958 readonly isNormal: boolean;2959 readonly isAllowList: boolean;2960 readonly type: 'Normal' | 'AllowList';2961}29622963/** @name UpDataStructsCollection */2964export interface UpDataStructsCollection extends Struct {2965 readonly owner: AccountId32;2966 readonly mode: UpDataStructsCollectionMode;2967 readonly name: Vec<u16>;2968 readonly description: Vec<u16>;2969 readonly tokenPrefix: Bytes;2970 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2971 readonly limits: UpDataStructsCollectionLimits;2972 readonly permissions: UpDataStructsCollectionPermissions;2973 readonly flags: U8aFixed;2974}29752976/** @name UpDataStructsCollectionLimits */2977export interface UpDataStructsCollectionLimits extends Struct {2978 readonly accountTokenOwnershipLimit: Option<u32>;2979 readonly sponsoredDataSize: Option<u32>;2980 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2981 readonly tokenLimit: Option<u32>;2982 readonly sponsorTransferTimeout: Option<u32>;2983 readonly sponsorApproveTimeout: Option<u32>;2984 readonly ownerCanTransfer: Option<bool>;2985 readonly ownerCanDestroy: Option<bool>;2986 readonly transfersEnabled: Option<bool>;2987}29882989/** @name UpDataStructsCollectionMode */2990export interface UpDataStructsCollectionMode extends Enum {2991 readonly isNft: boolean;2992 readonly isFungible: boolean;2993 readonly asFungible: u8;2994 readonly isReFungible: boolean;2995 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2996}29972998/** @name UpDataStructsCollectionPermissions */2999export interface UpDataStructsCollectionPermissions extends Struct {3000 readonly access: Option<UpDataStructsAccessMode>;3001 readonly mintMode: Option<bool>;3002 readonly nesting: Option<UpDataStructsNestingPermissions>;3003}30043005/** @name UpDataStructsCollectionStats */3006export interface UpDataStructsCollectionStats extends Struct {3007 readonly created: u32;3008 readonly destroyed: u32;3009 readonly alive: u32;3010}30113012/** @name UpDataStructsCreateCollectionData */3013export interface UpDataStructsCreateCollectionData extends Struct {3014 readonly mode: UpDataStructsCollectionMode;3015 readonly access: Option<UpDataStructsAccessMode>;3016 readonly name: Vec<u16>;3017 readonly description: Vec<u16>;3018 readonly tokenPrefix: Bytes;3019 readonly pendingSponsor: Option<AccountId32>;3020 readonly limits: Option<UpDataStructsCollectionLimits>;3021 readonly permissions: Option<UpDataStructsCollectionPermissions>;3022 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3023 readonly properties: Vec<UpDataStructsProperty>;3024}30253026/** @name UpDataStructsCreateFungibleData */3027export interface UpDataStructsCreateFungibleData extends Struct {3028 readonly value: u128;3029}30303031/** @name UpDataStructsCreateItemData */3032export interface UpDataStructsCreateItemData extends Enum {3033 readonly isNft: boolean;3034 readonly asNft: UpDataStructsCreateNftData;3035 readonly isFungible: boolean;3036 readonly asFungible: UpDataStructsCreateFungibleData;3037 readonly isReFungible: boolean;3038 readonly asReFungible: UpDataStructsCreateReFungibleData;3039 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3040}30413042/** @name UpDataStructsCreateItemExData */3043export interface UpDataStructsCreateItemExData extends Enum {3044 readonly isNft: boolean;3045 readonly asNft: Vec<UpDataStructsCreateNftExData>;3046 readonly isFungible: boolean;3047 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;3048 readonly isRefungibleMultipleItems: boolean;3049 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;3050 readonly isRefungibleMultipleOwners: boolean;3051 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;3052 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3053}30543055/** @name UpDataStructsCreateNftData */3056export interface UpDataStructsCreateNftData extends Struct {3057 readonly properties: Vec<UpDataStructsProperty>;3058}30593060/** @name UpDataStructsCreateNftExData */3061export interface UpDataStructsCreateNftExData extends Struct {3062 readonly properties: Vec<UpDataStructsProperty>;3063 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3064}30653066/** @name UpDataStructsCreateReFungibleData */3067export interface UpDataStructsCreateReFungibleData extends Struct {3068 readonly pieces: u128;3069 readonly properties: Vec<UpDataStructsProperty>;3070}30713072/** @name UpDataStructsCreateRefungibleExMultipleOwners */3073export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3074 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3075 readonly properties: Vec<UpDataStructsProperty>;3076}30773078/** @name UpDataStructsCreateRefungibleExSingleOwner */3079export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3080 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3081 readonly pieces: u128;3082 readonly properties: Vec<UpDataStructsProperty>;3083}30843085/** @name UpDataStructsNestingPermissions */3086export interface UpDataStructsNestingPermissions extends Struct {3087 readonly tokenOwner: bool;3088 readonly collectionAdmin: bool;3089 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3090}30913092/** @name UpDataStructsOwnerRestrictedSet */3093export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}30943095/** @name UpDataStructsProperties */3096export interface UpDataStructsProperties extends Struct {3097 readonly map: UpDataStructsPropertiesMapBoundedVec;3098 readonly consumedSpace: u32;3099 readonly spaceLimit: u32;3100}31013102/** @name UpDataStructsPropertiesMapBoundedVec */3103export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}31043105/** @name UpDataStructsPropertiesMapPropertyPermission */3106export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}31073108/** @name UpDataStructsProperty */3109export interface UpDataStructsProperty extends Struct {3110 readonly key: Bytes;3111 readonly value: Bytes;3112}31133114/** @name UpDataStructsPropertyKeyPermission */3115export interface UpDataStructsPropertyKeyPermission extends Struct {3116 readonly key: Bytes;3117 readonly permission: UpDataStructsPropertyPermission;3118}31193120/** @name UpDataStructsPropertyPermission */3121export interface UpDataStructsPropertyPermission extends Struct {3122 readonly mutable: bool;3123 readonly collectionAdmin: bool;3124 readonly tokenOwner: bool;3125}31263127/** @name UpDataStructsPropertyScope */3128export interface UpDataStructsPropertyScope extends Enum {3129 readonly isNone: boolean;3130 readonly isRmrk: boolean;3131 readonly type: 'None' | 'Rmrk';3132}31333134/** @name UpDataStructsRpcCollection */3135export interface UpDataStructsRpcCollection extends Struct {3136 readonly owner: AccountId32;3137 readonly mode: UpDataStructsCollectionMode;3138 readonly name: Vec<u16>;3139 readonly description: Vec<u16>;3140 readonly tokenPrefix: Bytes;3141 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3142 readonly limits: UpDataStructsCollectionLimits;3143 readonly permissions: UpDataStructsCollectionPermissions;3144 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3145 readonly properties: Vec<UpDataStructsProperty>;3146 readonly readOnly: bool;3147 readonly flags: UpDataStructsRpcCollectionFlags;3148}31493150/** @name UpDataStructsRpcCollectionFlags */3151export interface UpDataStructsRpcCollectionFlags extends Struct {3152 readonly foreign: bool;3153 readonly erc721metadata: bool;3154}31553156/** @name UpDataStructsSponsoringRateLimit */3157export interface UpDataStructsSponsoringRateLimit extends Enum {3158 readonly isSponsoringDisabled: boolean;3159 readonly isBlocks: boolean;3160 readonly asBlocks: u32;3161 readonly type: 'SponsoringDisabled' | 'Blocks';3162}31633164/** @name UpDataStructsSponsorshipStateAccountId32 */3165export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3166 readonly isDisabled: boolean;3167 readonly isUnconfirmed: boolean;3168 readonly asUnconfirmed: AccountId32;3169 readonly isConfirmed: boolean;3170 readonly asConfirmed: AccountId32;3171 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3172}31733174/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3175export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3176 readonly isDisabled: boolean;3177 readonly isUnconfirmed: boolean;3178 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3179 readonly isConfirmed: boolean;3180 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3181 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3182}31833184/** @name UpDataStructsTokenChild */3185export interface UpDataStructsTokenChild extends Struct {3186 readonly token: u32;3187 readonly collection: u32;3188}31893190/** @name UpDataStructsTokenData */3191export interface UpDataStructsTokenData extends Struct {3192 readonly properties: Vec<UpDataStructsProperty>;3193 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3194 readonly pieces: u128;3195}31963197/** @name XcmDoubleEncoded */3198export interface XcmDoubleEncoded extends Struct {3199 readonly encoded: Bytes;3200}32013202/** @name XcmV0Junction */3203export interface XcmV0Junction extends Enum {3204 readonly isParent: boolean;3205 readonly isParachain: boolean;3206 readonly asParachain: Compact<u32>;3207 readonly isAccountId32: boolean;3208 readonly asAccountId32: {3209 readonly network: XcmV0JunctionNetworkId;3210 readonly id: U8aFixed;3211 } & Struct;3212 readonly isAccountIndex64: boolean;3213 readonly asAccountIndex64: {3214 readonly network: XcmV0JunctionNetworkId;3215 readonly index: Compact<u64>;3216 } & Struct;3217 readonly isAccountKey20: boolean;3218 readonly asAccountKey20: {3219 readonly network: XcmV0JunctionNetworkId;3220 readonly key: U8aFixed;3221 } & Struct;3222 readonly isPalletInstance: boolean;3223 readonly asPalletInstance: u8;3224 readonly isGeneralIndex: boolean;3225 readonly asGeneralIndex: Compact<u128>;3226 readonly isGeneralKey: boolean;3227 readonly asGeneralKey: Bytes;3228 readonly isOnlyChild: boolean;3229 readonly isPlurality: boolean;3230 readonly asPlurality: {3231 readonly id: XcmV0JunctionBodyId;3232 readonly part: XcmV0JunctionBodyPart;3233 } & Struct;3234 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3235}32363237/** @name XcmV0JunctionBodyId */3238export interface XcmV0JunctionBodyId extends Enum {3239 readonly isUnit: boolean;3240 readonly isNamed: boolean;3241 readonly asNamed: Bytes;3242 readonly isIndex: boolean;3243 readonly asIndex: Compact<u32>;3244 readonly isExecutive: boolean;3245 readonly isTechnical: boolean;3246 readonly isLegislative: boolean;3247 readonly isJudicial: boolean;3248 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';3249}32503251/** @name XcmV0JunctionBodyPart */3252export interface XcmV0JunctionBodyPart extends Enum {3253 readonly isVoice: boolean;3254 readonly isMembers: boolean;3255 readonly asMembers: {3256 readonly count: Compact<u32>;3257 } & Struct;3258 readonly isFraction: boolean;3259 readonly asFraction: {3260 readonly nom: Compact<u32>;3261 readonly denom: Compact<u32>;3262 } & Struct;3263 readonly isAtLeastProportion: boolean;3264 readonly asAtLeastProportion: {3265 readonly nom: Compact<u32>;3266 readonly denom: Compact<u32>;3267 } & Struct;3268 readonly isMoreThanProportion: boolean;3269 readonly asMoreThanProportion: {3270 readonly nom: Compact<u32>;3271 readonly denom: Compact<u32>;3272 } & Struct;3273 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3274}32753276/** @name XcmV0JunctionNetworkId */3277export interface XcmV0JunctionNetworkId extends Enum {3278 readonly isAny: boolean;3279 readonly isNamed: boolean;3280 readonly asNamed: Bytes;3281 readonly isPolkadot: boolean;3282 readonly isKusama: boolean;3283 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3284}32853286/** @name XcmV0MultiAsset */3287export interface XcmV0MultiAsset extends Enum {3288 readonly isNone: boolean;3289 readonly isAll: boolean;3290 readonly isAllFungible: boolean;3291 readonly isAllNonFungible: boolean;3292 readonly isAllAbstractFungible: boolean;3293 readonly asAllAbstractFungible: {3294 readonly id: Bytes;3295 } & Struct;3296 readonly isAllAbstractNonFungible: boolean;3297 readonly asAllAbstractNonFungible: {3298 readonly class: Bytes;3299 } & Struct;3300 readonly isAllConcreteFungible: boolean;3301 readonly asAllConcreteFungible: {3302 readonly id: XcmV0MultiLocation;3303 } & Struct;3304 readonly isAllConcreteNonFungible: boolean;3305 readonly asAllConcreteNonFungible: {3306 readonly class: XcmV0MultiLocation;3307 } & Struct;3308 readonly isAbstractFungible: boolean;3309 readonly asAbstractFungible: {3310 readonly id: Bytes;3311 readonly amount: Compact<u128>;3312 } & Struct;3313 readonly isAbstractNonFungible: boolean;3314 readonly asAbstractNonFungible: {3315 readonly class: Bytes;3316 readonly instance: XcmV1MultiassetAssetInstance;3317 } & Struct;3318 readonly isConcreteFungible: boolean;3319 readonly asConcreteFungible: {3320 readonly id: XcmV0MultiLocation;3321 readonly amount: Compact<u128>;3322 } & Struct;3323 readonly isConcreteNonFungible: boolean;3324 readonly asConcreteNonFungible: {3325 readonly class: XcmV0MultiLocation;3326 readonly instance: XcmV1MultiassetAssetInstance;3327 } & Struct;3328 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';3329}33303331/** @name XcmV0MultiLocation */3332export interface XcmV0MultiLocation extends Enum {3333 readonly isNull: boolean;3334 readonly isX1: boolean;3335 readonly asX1: XcmV0Junction;3336 readonly isX2: boolean;3337 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;3338 readonly isX3: boolean;3339 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3340 readonly isX4: boolean;3341 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3342 readonly isX5: boolean;3343 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3344 readonly isX6: boolean;3345 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3346 readonly isX7: boolean;3347 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3348 readonly isX8: boolean;3349 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3350 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3351}33523353/** @name XcmV0Order */3354export interface XcmV0Order extends Enum {3355 readonly isNull: boolean;3356 readonly isDepositAsset: boolean;3357 readonly asDepositAsset: {3358 readonly assets: Vec<XcmV0MultiAsset>;3359 readonly dest: XcmV0MultiLocation;3360 } & Struct;3361 readonly isDepositReserveAsset: boolean;3362 readonly asDepositReserveAsset: {3363 readonly assets: Vec<XcmV0MultiAsset>;3364 readonly dest: XcmV0MultiLocation;3365 readonly effects: Vec<XcmV0Order>;3366 } & Struct;3367 readonly isExchangeAsset: boolean;3368 readonly asExchangeAsset: {3369 readonly give: Vec<XcmV0MultiAsset>;3370 readonly receive: Vec<XcmV0MultiAsset>;3371 } & Struct;3372 readonly isInitiateReserveWithdraw: boolean;3373 readonly asInitiateReserveWithdraw: {3374 readonly assets: Vec<XcmV0MultiAsset>;3375 readonly reserve: XcmV0MultiLocation;3376 readonly effects: Vec<XcmV0Order>;3377 } & Struct;3378 readonly isInitiateTeleport: boolean;3379 readonly asInitiateTeleport: {3380 readonly assets: Vec<XcmV0MultiAsset>;3381 readonly dest: XcmV0MultiLocation;3382 readonly effects: Vec<XcmV0Order>;3383 } & Struct;3384 readonly isQueryHolding: boolean;3385 readonly asQueryHolding: {3386 readonly queryId: Compact<u64>;3387 readonly dest: XcmV0MultiLocation;3388 readonly assets: Vec<XcmV0MultiAsset>;3389 } & Struct;3390 readonly isBuyExecution: boolean;3391 readonly asBuyExecution: {3392 readonly fees: XcmV0MultiAsset;3393 readonly weight: u64;3394 readonly debt: u64;3395 readonly haltOnError: bool;3396 readonly xcm: Vec<XcmV0Xcm>;3397 } & Struct;3398 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3399}34003401/** @name XcmV0OriginKind */3402export interface XcmV0OriginKind extends Enum {3403 readonly isNative: boolean;3404 readonly isSovereignAccount: boolean;3405 readonly isSuperuser: boolean;3406 readonly isXcm: boolean;3407 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3408}34093410/** @name XcmV0Response */3411export interface XcmV0Response extends Enum {3412 readonly isAssets: boolean;3413 readonly asAssets: Vec<XcmV0MultiAsset>;3414 readonly type: 'Assets';3415}34163417/** @name XcmV0Xcm */3418export interface XcmV0Xcm extends Enum {3419 readonly isWithdrawAsset: boolean;3420 readonly asWithdrawAsset: {3421 readonly assets: Vec<XcmV0MultiAsset>;3422 readonly effects: Vec<XcmV0Order>;3423 } & Struct;3424 readonly isReserveAssetDeposit: boolean;3425 readonly asReserveAssetDeposit: {3426 readonly assets: Vec<XcmV0MultiAsset>;3427 readonly effects: Vec<XcmV0Order>;3428 } & Struct;3429 readonly isTeleportAsset: boolean;3430 readonly asTeleportAsset: {3431 readonly assets: Vec<XcmV0MultiAsset>;3432 readonly effects: Vec<XcmV0Order>;3433 } & Struct;3434 readonly isQueryResponse: boolean;3435 readonly asQueryResponse: {3436 readonly queryId: Compact<u64>;3437 readonly response: XcmV0Response;3438 } & Struct;3439 readonly isTransferAsset: boolean;3440 readonly asTransferAsset: {3441 readonly assets: Vec<XcmV0MultiAsset>;3442 readonly dest: XcmV0MultiLocation;3443 } & Struct;3444 readonly isTransferReserveAsset: boolean;3445 readonly asTransferReserveAsset: {3446 readonly assets: Vec<XcmV0MultiAsset>;3447 readonly dest: XcmV0MultiLocation;3448 readonly effects: Vec<XcmV0Order>;3449 } & Struct;3450 readonly isTransact: boolean;3451 readonly asTransact: {3452 readonly originType: XcmV0OriginKind;3453 readonly requireWeightAtMost: u64;3454 readonly call: XcmDoubleEncoded;3455 } & Struct;3456 readonly isHrmpNewChannelOpenRequest: boolean;3457 readonly asHrmpNewChannelOpenRequest: {3458 readonly sender: Compact<u32>;3459 readonly maxMessageSize: Compact<u32>;3460 readonly maxCapacity: Compact<u32>;3461 } & Struct;3462 readonly isHrmpChannelAccepted: boolean;3463 readonly asHrmpChannelAccepted: {3464 readonly recipient: Compact<u32>;3465 } & Struct;3466 readonly isHrmpChannelClosing: boolean;3467 readonly asHrmpChannelClosing: {3468 readonly initiator: Compact<u32>;3469 readonly sender: Compact<u32>;3470 readonly recipient: Compact<u32>;3471 } & Struct;3472 readonly isRelayedFrom: boolean;3473 readonly asRelayedFrom: {3474 readonly who: XcmV0MultiLocation;3475 readonly message: XcmV0Xcm;3476 } & Struct;3477 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';3478}34793480/** @name XcmV1Junction */3481export interface XcmV1Junction extends Enum {3482 readonly isParachain: boolean;3483 readonly asParachain: Compact<u32>;3484 readonly isAccountId32: boolean;3485 readonly asAccountId32: {3486 readonly network: XcmV0JunctionNetworkId;3487 readonly id: U8aFixed;3488 } & Struct;3489 readonly isAccountIndex64: boolean;3490 readonly asAccountIndex64: {3491 readonly network: XcmV0JunctionNetworkId;3492 readonly index: Compact<u64>;3493 } & Struct;3494 readonly isAccountKey20: boolean;3495 readonly asAccountKey20: {3496 readonly network: XcmV0JunctionNetworkId;3497 readonly key: U8aFixed;3498 } & Struct;3499 readonly isPalletInstance: boolean;3500 readonly asPalletInstance: u8;3501 readonly isGeneralIndex: boolean;3502 readonly asGeneralIndex: Compact<u128>;3503 readonly isGeneralKey: boolean;3504 readonly asGeneralKey: Bytes;3505 readonly isOnlyChild: boolean;3506 readonly isPlurality: boolean;3507 readonly asPlurality: {3508 readonly id: XcmV0JunctionBodyId;3509 readonly part: XcmV0JunctionBodyPart;3510 } & Struct;3511 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3512}35133514/** @name XcmV1MultiAsset */3515export interface XcmV1MultiAsset extends Struct {3516 readonly id: XcmV1MultiassetAssetId;3517 readonly fun: XcmV1MultiassetFungibility;3518}35193520/** @name XcmV1MultiassetAssetId */3521export interface XcmV1MultiassetAssetId extends Enum {3522 readonly isConcrete: boolean;3523 readonly asConcrete: XcmV1MultiLocation;3524 readonly isAbstract: boolean;3525 readonly asAbstract: Bytes;3526 readonly type: 'Concrete' | 'Abstract';3527}35283529/** @name XcmV1MultiassetAssetInstance */3530export interface XcmV1MultiassetAssetInstance extends Enum {3531 readonly isUndefined: boolean;3532 readonly isIndex: boolean;3533 readonly asIndex: Compact<u128>;3534 readonly isArray4: boolean;3535 readonly asArray4: U8aFixed;3536 readonly isArray8: boolean;3537 readonly asArray8: U8aFixed;3538 readonly isArray16: boolean;3539 readonly asArray16: U8aFixed;3540 readonly isArray32: boolean;3541 readonly asArray32: U8aFixed;3542 readonly isBlob: boolean;3543 readonly asBlob: Bytes;3544 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3545}35463547/** @name XcmV1MultiassetFungibility */3548export interface XcmV1MultiassetFungibility extends Enum {3549 readonly isFungible: boolean;3550 readonly asFungible: Compact<u128>;3551 readonly isNonFungible: boolean;3552 readonly asNonFungible: XcmV1MultiassetAssetInstance;3553 readonly type: 'Fungible' | 'NonFungible';3554}35553556/** @name XcmV1MultiassetMultiAssetFilter */3557export interface XcmV1MultiassetMultiAssetFilter extends Enum {3558 readonly isDefinite: boolean;3559 readonly asDefinite: XcmV1MultiassetMultiAssets;3560 readonly isWild: boolean;3561 readonly asWild: XcmV1MultiassetWildMultiAsset;3562 readonly type: 'Definite' | 'Wild';3563}35643565/** @name XcmV1MultiassetMultiAssets */3566export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}35673568/** @name XcmV1MultiassetWildFungibility */3569export interface XcmV1MultiassetWildFungibility extends Enum {3570 readonly isFungible: boolean;3571 readonly isNonFungible: boolean;3572 readonly type: 'Fungible' | 'NonFungible';3573}35743575/** @name XcmV1MultiassetWildMultiAsset */3576export interface XcmV1MultiassetWildMultiAsset extends Enum {3577 readonly isAll: boolean;3578 readonly isAllOf: boolean;3579 readonly asAllOf: {3580 readonly id: XcmV1MultiassetAssetId;3581 readonly fun: XcmV1MultiassetWildFungibility;3582 } & Struct;3583 readonly type: 'All' | 'AllOf';3584}35853586/** @name XcmV1MultiLocation */3587export interface XcmV1MultiLocation extends Struct {3588 readonly parents: u8;3589 readonly interior: XcmV1MultilocationJunctions;3590}35913592/** @name XcmV1MultilocationJunctions */3593export interface XcmV1MultilocationJunctions extends Enum {3594 readonly isHere: boolean;3595 readonly isX1: boolean;3596 readonly asX1: XcmV1Junction;3597 readonly isX2: boolean;3598 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3599 readonly isX3: boolean;3600 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3601 readonly isX4: boolean;3602 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3603 readonly isX5: boolean;3604 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3605 readonly isX6: boolean;3606 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3607 readonly isX7: boolean;3608 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3609 readonly isX8: boolean;3610 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3611 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3612}36133614/** @name XcmV1Order */3615export interface XcmV1Order extends Enum {3616 readonly isNoop: boolean;3617 readonly isDepositAsset: boolean;3618 readonly asDepositAsset: {3619 readonly assets: XcmV1MultiassetMultiAssetFilter;3620 readonly maxAssets: u32;3621 readonly beneficiary: XcmV1MultiLocation;3622 } & Struct;3623 readonly isDepositReserveAsset: boolean;3624 readonly asDepositReserveAsset: {3625 readonly assets: XcmV1MultiassetMultiAssetFilter;3626 readonly maxAssets: u32;3627 readonly dest: XcmV1MultiLocation;3628 readonly effects: Vec<XcmV1Order>;3629 } & Struct;3630 readonly isExchangeAsset: boolean;3631 readonly asExchangeAsset: {3632 readonly give: XcmV1MultiassetMultiAssetFilter;3633 readonly receive: XcmV1MultiassetMultiAssets;3634 } & Struct;3635 readonly isInitiateReserveWithdraw: boolean;3636 readonly asInitiateReserveWithdraw: {3637 readonly assets: XcmV1MultiassetMultiAssetFilter;3638 readonly reserve: XcmV1MultiLocation;3639 readonly effects: Vec<XcmV1Order>;3640 } & Struct;3641 readonly isInitiateTeleport: boolean;3642 readonly asInitiateTeleport: {3643 readonly assets: XcmV1MultiassetMultiAssetFilter;3644 readonly dest: XcmV1MultiLocation;3645 readonly effects: Vec<XcmV1Order>;3646 } & Struct;3647 readonly isQueryHolding: boolean;3648 readonly asQueryHolding: {3649 readonly queryId: Compact<u64>;3650 readonly dest: XcmV1MultiLocation;3651 readonly assets: XcmV1MultiassetMultiAssetFilter;3652 } & Struct;3653 readonly isBuyExecution: boolean;3654 readonly asBuyExecution: {3655 readonly fees: XcmV1MultiAsset;3656 readonly weight: u64;3657 readonly debt: u64;3658 readonly haltOnError: bool;3659 readonly instructions: Vec<XcmV1Xcm>;3660 } & Struct;3661 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3662}36633664/** @name XcmV1Response */3665export interface XcmV1Response extends Enum {3666 readonly isAssets: boolean;3667 readonly asAssets: XcmV1MultiassetMultiAssets;3668 readonly isVersion: boolean;3669 readonly asVersion: u32;3670 readonly type: 'Assets' | 'Version';3671}36723673/** @name XcmV1Xcm */3674export interface XcmV1Xcm extends Enum {3675 readonly isWithdrawAsset: boolean;3676 readonly asWithdrawAsset: {3677 readonly assets: XcmV1MultiassetMultiAssets;3678 readonly effects: Vec<XcmV1Order>;3679 } & Struct;3680 readonly isReserveAssetDeposited: boolean;3681 readonly asReserveAssetDeposited: {3682 readonly assets: XcmV1MultiassetMultiAssets;3683 readonly effects: Vec<XcmV1Order>;3684 } & Struct;3685 readonly isReceiveTeleportedAsset: boolean;3686 readonly asReceiveTeleportedAsset: {3687 readonly assets: XcmV1MultiassetMultiAssets;3688 readonly effects: Vec<XcmV1Order>;3689 } & Struct;3690 readonly isQueryResponse: boolean;3691 readonly asQueryResponse: {3692 readonly queryId: Compact<u64>;3693 readonly response: XcmV1Response;3694 } & Struct;3695 readonly isTransferAsset: boolean;3696 readonly asTransferAsset: {3697 readonly assets: XcmV1MultiassetMultiAssets;3698 readonly beneficiary: XcmV1MultiLocation;3699 } & Struct;3700 readonly isTransferReserveAsset: boolean;3701 readonly asTransferReserveAsset: {3702 readonly assets: XcmV1MultiassetMultiAssets;3703 readonly dest: XcmV1MultiLocation;3704 readonly effects: Vec<XcmV1Order>;3705 } & Struct;3706 readonly isTransact: boolean;3707 readonly asTransact: {3708 readonly originType: XcmV0OriginKind;3709 readonly requireWeightAtMost: u64;3710 readonly call: XcmDoubleEncoded;3711 } & Struct;3712 readonly isHrmpNewChannelOpenRequest: boolean;3713 readonly asHrmpNewChannelOpenRequest: {3714 readonly sender: Compact<u32>;3715 readonly maxMessageSize: Compact<u32>;3716 readonly maxCapacity: Compact<u32>;3717 } & Struct;3718 readonly isHrmpChannelAccepted: boolean;3719 readonly asHrmpChannelAccepted: {3720 readonly recipient: Compact<u32>;3721 } & Struct;3722 readonly isHrmpChannelClosing: boolean;3723 readonly asHrmpChannelClosing: {3724 readonly initiator: Compact<u32>;3725 readonly sender: Compact<u32>;3726 readonly recipient: Compact<u32>;3727 } & Struct;3728 readonly isRelayedFrom: boolean;3729 readonly asRelayedFrom: {3730 readonly who: XcmV1MultilocationJunctions;3731 readonly message: XcmV1Xcm;3732 } & Struct;3733 readonly isSubscribeVersion: boolean;3734 readonly asSubscribeVersion: {3735 readonly queryId: Compact<u64>;3736 readonly maxResponseWeight: Compact<u64>;3737 } & Struct;3738 readonly isUnsubscribeVersion: boolean;3739 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3740}37413742/** @name XcmV2Instruction */3743export interface XcmV2Instruction extends Enum {3744 readonly isWithdrawAsset: boolean;3745 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3746 readonly isReserveAssetDeposited: boolean;3747 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3748 readonly isReceiveTeleportedAsset: boolean;3749 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3750 readonly isQueryResponse: boolean;3751 readonly asQueryResponse: {3752 readonly queryId: Compact<u64>;3753 readonly response: XcmV2Response;3754 readonly maxWeight: Compact<u64>;3755 } & Struct;3756 readonly isTransferAsset: boolean;3757 readonly asTransferAsset: {3758 readonly assets: XcmV1MultiassetMultiAssets;3759 readonly beneficiary: XcmV1MultiLocation;3760 } & Struct;3761 readonly isTransferReserveAsset: boolean;3762 readonly asTransferReserveAsset: {3763 readonly assets: XcmV1MultiassetMultiAssets;3764 readonly dest: XcmV1MultiLocation;3765 readonly xcm: XcmV2Xcm;3766 } & Struct;3767 readonly isTransact: boolean;3768 readonly asTransact: {3769 readonly originType: XcmV0OriginKind;3770 readonly requireWeightAtMost: Compact<u64>;3771 readonly call: XcmDoubleEncoded;3772 } & Struct;3773 readonly isHrmpNewChannelOpenRequest: boolean;3774 readonly asHrmpNewChannelOpenRequest: {3775 readonly sender: Compact<u32>;3776 readonly maxMessageSize: Compact<u32>;3777 readonly maxCapacity: Compact<u32>;3778 } & Struct;3779 readonly isHrmpChannelAccepted: boolean;3780 readonly asHrmpChannelAccepted: {3781 readonly recipient: Compact<u32>;3782 } & Struct;3783 readonly isHrmpChannelClosing: boolean;3784 readonly asHrmpChannelClosing: {3785 readonly initiator: Compact<u32>;3786 readonly sender: Compact<u32>;3787 readonly recipient: Compact<u32>;3788 } & Struct;3789 readonly isClearOrigin: boolean;3790 readonly isDescendOrigin: boolean;3791 readonly asDescendOrigin: XcmV1MultilocationJunctions;3792 readonly isReportError: boolean;3793 readonly asReportError: {3794 readonly queryId: Compact<u64>;3795 readonly dest: XcmV1MultiLocation;3796 readonly maxResponseWeight: Compact<u64>;3797 } & Struct;3798 readonly isDepositAsset: boolean;3799 readonly asDepositAsset: {3800 readonly assets: XcmV1MultiassetMultiAssetFilter;3801 readonly maxAssets: Compact<u32>;3802 readonly beneficiary: XcmV1MultiLocation;3803 } & Struct;3804 readonly isDepositReserveAsset: boolean;3805 readonly asDepositReserveAsset: {3806 readonly assets: XcmV1MultiassetMultiAssetFilter;3807 readonly maxAssets: Compact<u32>;3808 readonly dest: XcmV1MultiLocation;3809 readonly xcm: XcmV2Xcm;3810 } & Struct;3811 readonly isExchangeAsset: boolean;3812 readonly asExchangeAsset: {3813 readonly give: XcmV1MultiassetMultiAssetFilter;3814 readonly receive: XcmV1MultiassetMultiAssets;3815 } & Struct;3816 readonly isInitiateReserveWithdraw: boolean;3817 readonly asInitiateReserveWithdraw: {3818 readonly assets: XcmV1MultiassetMultiAssetFilter;3819 readonly reserve: XcmV1MultiLocation;3820 readonly xcm: XcmV2Xcm;3821 } & Struct;3822 readonly isInitiateTeleport: boolean;3823 readonly asInitiateTeleport: {3824 readonly assets: XcmV1MultiassetMultiAssetFilter;3825 readonly dest: XcmV1MultiLocation;3826 readonly xcm: XcmV2Xcm;3827 } & Struct;3828 readonly isQueryHolding: boolean;3829 readonly asQueryHolding: {3830 readonly queryId: Compact<u64>;3831 readonly dest: XcmV1MultiLocation;3832 readonly assets: XcmV1MultiassetMultiAssetFilter;3833 readonly maxResponseWeight: Compact<u64>;3834 } & Struct;3835 readonly isBuyExecution: boolean;3836 readonly asBuyExecution: {3837 readonly fees: XcmV1MultiAsset;3838 readonly weightLimit: XcmV2WeightLimit;3839 } & Struct;3840 readonly isRefundSurplus: boolean;3841 readonly isSetErrorHandler: boolean;3842 readonly asSetErrorHandler: XcmV2Xcm;3843 readonly isSetAppendix: boolean;3844 readonly asSetAppendix: XcmV2Xcm;3845 readonly isClearError: boolean;3846 readonly isClaimAsset: boolean;3847 readonly asClaimAsset: {3848 readonly assets: XcmV1MultiassetMultiAssets;3849 readonly ticket: XcmV1MultiLocation;3850 } & Struct;3851 readonly isTrap: boolean;3852 readonly asTrap: Compact<u64>;3853 readonly isSubscribeVersion: boolean;3854 readonly asSubscribeVersion: {3855 readonly queryId: Compact<u64>;3856 readonly maxResponseWeight: Compact<u64>;3857 } & Struct;3858 readonly isUnsubscribeVersion: boolean;3859 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';3860}38613862/** @name XcmV2Response */3863export interface XcmV2Response extends Enum {3864 readonly isNull: boolean;3865 readonly isAssets: boolean;3866 readonly asAssets: XcmV1MultiassetMultiAssets;3867 readonly isExecutionResult: boolean;3868 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3869 readonly isVersion: boolean;3870 readonly asVersion: u32;3871 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3872}38733874/** @name XcmV2TraitsError */3875export interface XcmV2TraitsError extends Enum {3876 readonly isOverflow: boolean;3877 readonly isUnimplemented: boolean;3878 readonly isUntrustedReserveLocation: boolean;3879 readonly isUntrustedTeleportLocation: boolean;3880 readonly isMultiLocationFull: boolean;3881 readonly isMultiLocationNotInvertible: boolean;3882 readonly isBadOrigin: boolean;3883 readonly isInvalidLocation: boolean;3884 readonly isAssetNotFound: boolean;3885 readonly isFailedToTransactAsset: boolean;3886 readonly isNotWithdrawable: boolean;3887 readonly isLocationCannotHold: boolean;3888 readonly isExceedsMaxMessageSize: boolean;3889 readonly isDestinationUnsupported: boolean;3890 readonly isTransport: boolean;3891 readonly isUnroutable: boolean;3892 readonly isUnknownClaim: boolean;3893 readonly isFailedToDecode: boolean;3894 readonly isMaxWeightInvalid: boolean;3895 readonly isNotHoldingFees: boolean;3896 readonly isTooExpensive: boolean;3897 readonly isTrap: boolean;3898 readonly asTrap: u64;3899 readonly isUnhandledXcmVersion: boolean;3900 readonly isWeightLimitReached: boolean;3901 readonly asWeightLimitReached: u64;3902 readonly isBarrier: boolean;3903 readonly isWeightNotComputable: boolean;3904 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';3905}39063907/** @name XcmV2TraitsOutcome */3908export interface XcmV2TraitsOutcome extends Enum {3909 readonly isComplete: boolean;3910 readonly asComplete: u64;3911 readonly isIncomplete: boolean;3912 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3913 readonly isError: boolean;3914 readonly asError: XcmV2TraitsError;3915 readonly type: 'Complete' | 'Incomplete' | 'Error';3916}39173918/** @name XcmV2WeightLimit */3919export interface XcmV2WeightLimit extends Enum {3920 readonly isUnlimited: boolean;3921 readonly isLimited: boolean;3922 readonly asLimited: Compact<u64>;3923 readonly type: 'Unlimited' | 'Limited';3924}39253926/** @name XcmV2Xcm */3927export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}39283929/** @name XcmVersionedMultiAsset */3930export interface XcmVersionedMultiAsset extends Enum {3931 readonly isV0: boolean;3932 readonly asV0: XcmV0MultiAsset;3933 readonly isV1: boolean;3934 readonly asV1: XcmV1MultiAsset;3935 readonly type: 'V0' | 'V1';3936}39373938/** @name XcmVersionedMultiAssets */3939export interface XcmVersionedMultiAssets extends Enum {3940 readonly isV0: boolean;3941 readonly asV0: Vec<XcmV0MultiAsset>;3942 readonly isV1: boolean;3943 readonly asV1: XcmV1MultiassetMultiAssets;3944 readonly type: 'V0' | 'V1';3945}39463947/** @name XcmVersionedMultiLocation */3948export interface XcmVersionedMultiLocation extends Enum {3949 readonly isV0: boolean;3950 readonly asV0: XcmV0MultiLocation;3951 readonly isV1: boolean;3952 readonly asV1: XcmV1MultiLocation;3953 readonly type: 'V0' | 'V1';3954}39553956/** @name XcmVersionedXcm */3957export interface XcmVersionedXcm extends Enum {3958 readonly isV0: boolean;3959 readonly asV0: XcmV0Xcm;3960 readonly isV1: boolean;3961 readonly asV1: XcmV1Xcm;3962 readonly isV2: boolean;3963 readonly asV2: XcmV2Xcm;3964 readonly type: 'V0' | 'V1' | 'V2';3965}39663967export type PHANTOM_DEFAULT = 'default';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