difftreelog
chore regenerate stubs & types
in: master
10 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -9,7 +9,7 @@
import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { Codec } from '@polkadot/types-codec/types';
import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
@@ -104,20 +104,6 @@
* Number of blocks that pass between treasury balance updates due to inflation
**/
inflationBlockInterval: u32 & AugmentedConst<ApiType>;
- /**
- * Generic const
- **/
- [key: string]: Codec;
- };
- scheduler: {
- /**
- * The maximum weight that may be scheduled per block for any dispatchables.
- **/
- maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
- /**
- * The maximum number of scheduled calls in the queue for a single block.
- **/
- maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
/**
* Generic const
**/
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -681,44 +681,6 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- scheduler: {
- /**
- * There is no place for a new task in the agenda
- **/
- AgendaIsExhausted: AugmentedError<ApiType>;
- /**
- * Failed to schedule a call
- **/
- FailedToSchedule: AugmentedError<ApiType>;
- /**
- * Attempt to use a non-named function on a named task.
- **/
- Named: AugmentedError<ApiType>;
- /**
- * Cannot find the scheduled call.
- **/
- NotFound: AugmentedError<ApiType>;
- /**
- * Scheduled call preimage is not found
- **/
- PreimageNotFound: AugmentedError<ApiType>;
- /**
- * Scheduled call is corrupted
- **/
- ScheduledCallCorrupted: AugmentedError<ApiType>;
- /**
- * Given target block number is in the past.
- **/
- TargetBlockNumberInPast: AugmentedError<ApiType>;
- /**
- * Scheduled call is too big
- **/
- TooBigScheduledCall: AugmentedError<ApiType>;
- /**
- * Generic error
- **/
- [key: string]: AugmentedError<ApiType>;
- };
structure: {
/**
* While nesting, reached the breadth limit of nesting, exceeding the provided budget.
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -7,7 +7,6 @@
import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
-import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
@@ -522,36 +521,6 @@
rmrkEquip: {
BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;
EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
- scheduler: {
- /**
- * The call for the provided hash was not found so the task has been aborted.
- **/
- CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Canceled some task.
- **/
- Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Dispatched some task.
- **/
- Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
- /**
- * The given task can never be executed since it is overweight.
- **/
- PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Scheduled task's priority has changed
- **/
- PriorityChanged: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, priority: u8], { task: ITuple<[u32, u32]>, priority: u8 }>;
- /**
- * Scheduled some task.
- **/
- Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
/**
* Generic event
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -6,10 +6,10 @@
import '@polkadot/api-base/types/storage';
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
-import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, 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 { 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, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -30,7 +30,7 @@
**/
pendingUnstake: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u128]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
/**
- * Stores a key for record for which the next revenue recalculation would be performed.
+ * Stores a key for record for which the revenue recalculation was performed.
* If `None`, then recalculation has not yet been performed or calculations have been completed for all stakers.
**/
previousCalculatedRecord: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[AccountId32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
@@ -682,25 +682,6 @@
* Map of a Base ID and a Part ID to an NFT in the Base collection serving as the Part.
**/
inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
- scheduler: {
- /**
- * Items to be executed, indexed by the block number that they should be executed on.
- **/
- agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<PalletUniqueSchedulerV2BlockAgenda>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
- /**
- * It contains the block number from which we should service tasks.
- * It's used for delaying the servicing of future blocks' agendas if we had overweight tasks.
- **/
- incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Lookup from a name to the block number and index of the task.
- **/
- lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
/**
* Generic query
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -6,7 +6,7 @@
import '@polkadot/api-base/types/submittable';
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 { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, 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';
@@ -834,64 +834,7 @@
* - `inherit`: Optional bool.
**/
themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- scheduler: {
- /**
- * Cancel an anonymously scheduled task.
- *
- * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
- **/
- cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
- /**
- * Cancel a named scheduled task.
- *
- * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
- **/
- cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
- /**
- * Change a named task's priority.
- *
- * Only the `T::PrioritySetOrigin` is allowed to change the task's priority.
- **/
- changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;
- /**
- * Anonymously schedule a task.
- *
- * Only `T::ScheduleOrigin` is allowed to schedule a task.
- * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
- **/
- schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
- /**
- * Anonymously schedule a task after a delay.
- *
- * # <weight>
- * Same as [`schedule`].
- * # </weight>
- **/
- scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
- /**
- * Schedule a named task.
- *
- * Only `T::ScheduleOrigin` is allowed to schedule a task.
- * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
- **/
- scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
/**
- * Schedule a named task after a delay.
- *
- * Only `T::ScheduleOrigin` is allowed to schedule a task.
- * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
- *
- * # <weight>
- * Same as [`schedule_named`](Self::schedule_named).
- * # </weight>
- **/
- scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
- /**
* Generic tx
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
@@ -1034,7 +977,6 @@
enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- selfCancelingInc: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, maxTestValue: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32]>;
setTestValue: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
setTestValueAndRollback: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
/**
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,19 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-<<<<<<< HEAD
-<<<<<<< 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 { 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, 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';
->>>>>>> 4824c0e1... chore: regenerate types
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
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';
@@ -340,7 +328,6 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
- CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -536,7 +523,6 @@
FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSystemAccountInfo: FrameSystemAccountInfo;
@@ -783,7 +769,6 @@
OffenceDetails: OffenceDetails;
Offender: Offender;
OldV1SessionInfo: OldV1SessionInfo;
- OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
OpaqueCall: OpaqueCall;
@@ -853,7 +838,6 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
- PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEventMetadataLatest: PalletEventMetadataLatest;
PalletEventMetadataV14: PalletEventMetadataV14;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
@@ -914,17 +898,10 @@
PalletTreasuryProposal: PalletTreasuryProposal;
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
- PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
- PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
- PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
- PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
- PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
- PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
PalletVersion: PalletVersion;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PalletXcmOrigin: PalletXcmOrigin;
ParachainDispatchOrigin: ParachainDispatchOrigin;
ParachainInherentData: ParachainInherentData;
ParachainProposal: ParachainProposal;
@@ -1198,7 +1175,6 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
- SpCoreVoid: SpCoreVoid;
SpecVersion: SpecVersion;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -153,14 +153,6 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
-/** @name CumulusPalletXcmOrigin */
-export interface CumulusPalletXcmOrigin extends Enum {
- readonly isRelay: boolean;
- readonly isSiblingParachain: boolean;
- readonly asSiblingParachain: u32;
- readonly type: 'Relay' | 'SiblingParachain';
-}
-
/** @name CumulusPalletXcmpQueueCall */
export interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
@@ -544,15 +536,6 @@
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
-/** @name FrameSupportDispatchRawOrigin */
-export interface FrameSupportDispatchRawOrigin extends Enum {
- readonly isRoot: boolean;
- readonly isSigned: boolean;
- readonly asSigned: AccountId32;
- readonly isNone: boolean;
- readonly type: 'Root' | 'Signed' | 'None';
-}
-
/** @name FrameSupportPalletId */
export interface FrameSupportPalletId extends U8aFixed {}
@@ -710,21 +693,6 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
-/** @name OpalRuntimeOriginCaller */
-export interface OpalRuntimeOriginCaller extends Enum {
- readonly isSystem: boolean;
- readonly asSystem: FrameSupportDispatchRawOrigin;
- readonly isVoid: boolean;
- readonly asVoid: SpCoreVoid;
- readonly isPolkadotXcm: boolean;
- readonly asPolkadotXcm: PalletXcmOrigin;
- readonly isCumulusXcm: boolean;
- readonly asCumulusXcm: CumulusPalletXcmOrigin;
- readonly isEthereum: boolean;
- readonly asEthereum: PalletEthereumRawOrigin;
- readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
-}
-
/** @name OpalRuntimeRuntime */
export interface OpalRuntimeRuntime extends Null {}
@@ -1345,7 +1313,17 @@
readonly asSetXcmAllowedLocations: {
readonly locations: Option<Vec<XcmV1MultiLocation>>;
} & Struct;
- readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
+ readonly isSetAppPromotionConfigurationOverride: boolean;
+ readonly asSetAppPromotionConfigurationOverride: {
+ readonly configuration: PalletConfigurationAppPromotionConfiguration;
+ } & Struct;
+ readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';
+}
+
+/** @name PalletConfigurationError */
+export interface PalletConfigurationError extends Enum {
+ readonly isInconsistentConfiguration: boolean;
+ readonly type: 'InconsistentConfiguration';
}
/** @name PalletEthereumCall */
@@ -1378,13 +1356,6 @@
/** @name PalletEthereumFakeTransactionFinalizer */
export interface PalletEthereumFakeTransactionFinalizer extends Null {}
-
-/** @name PalletEthereumRawOrigin */
-export interface PalletEthereumRawOrigin extends Enum {
- readonly isEthereumTransaction: boolean;
- readonly asEthereumTransaction: H160;
- readonly type: 'EthereumTransaction';
-}
/** @name PalletEvmAccountBasicCrossAccountIdRepr */
export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
@@ -2049,17 +2020,12 @@
readonly value: u32;
} & Struct;
readonly isIncTestValue: boolean;
- readonly isSelfCancelingInc: boolean;
- readonly asSelfCancelingInc: {
- readonly id: U8aFixed;
- readonly maxTestValue: u32;
- } & Struct;
readonly isJustTakeFee: boolean;
readonly isBatchAll: boolean;
readonly asBatchAll: {
readonly calls: Vec<Call>;
} & Struct;
- readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
+ readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
}
/** @name PalletTestUtilsError */
@@ -2363,131 +2329,6 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
-/** @name PalletUniqueSchedulerV2BlockAgenda */
-export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
- readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
- readonly freePlaces: u32;
-}
-
-/** @name PalletUniqueSchedulerV2Call */
-export interface PalletUniqueSchedulerV2Call extends Enum {
- readonly isSchedule: boolean;
- readonly asSchedule: {
- readonly when: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isCancel: boolean;
- readonly asCancel: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isScheduleNamed: boolean;
- readonly asScheduleNamed: {
- readonly id: U8aFixed;
- readonly when: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isCancelNamed: boolean;
- readonly asCancelNamed: {
- readonly id: U8aFixed;
- } & Struct;
- readonly isScheduleAfter: boolean;
- readonly asScheduleAfter: {
- readonly after: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isScheduleNamedAfter: boolean;
- readonly asScheduleNamedAfter: {
- readonly id: U8aFixed;
- readonly after: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isChangeNamedPriority: boolean;
- readonly asChangeNamedPriority: {
- readonly id: U8aFixed;
- readonly priority: u8;
- } & Struct;
- readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
-}
-
-/** @name PalletUniqueSchedulerV2Error */
-export interface PalletUniqueSchedulerV2Error extends Enum {
- readonly isFailedToSchedule: boolean;
- readonly isAgendaIsExhausted: boolean;
- readonly isScheduledCallCorrupted: boolean;
- readonly isPreimageNotFound: boolean;
- readonly isTooBigScheduledCall: boolean;
- readonly isNotFound: boolean;
- readonly isTargetBlockNumberInPast: boolean;
- readonly isNamed: boolean;
- readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
-}
-
-/** @name PalletUniqueSchedulerV2Event */
-export interface PalletUniqueSchedulerV2Event extends Enum {
- readonly isScheduled: boolean;
- readonly asScheduled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isCanceled: boolean;
- readonly asCanceled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isDispatched: boolean;
- readonly asDispatched: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- readonly result: Result<Null, SpRuntimeDispatchError>;
- } & Struct;
- readonly isPriorityChanged: boolean;
- readonly asPriorityChanged: {
- readonly task: ITuple<[u32, u32]>;
- readonly priority: u8;
- } & Struct;
- readonly isCallUnavailable: boolean;
- readonly asCallUnavailable: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- } & Struct;
- readonly isPermanentlyOverweight: boolean;
- readonly asPermanentlyOverweight: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- } & Struct;
- readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
-}
-
-/** @name PalletUniqueSchedulerV2Scheduled */
-export interface PalletUniqueSchedulerV2Scheduled extends Struct {
- readonly maybeId: Option<U8aFixed>;
- readonly priority: u8;
- readonly call: PalletUniqueSchedulerV2ScheduledCall;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: OpalRuntimeOriginCaller;
-}
-
-/** @name PalletUniqueSchedulerV2ScheduledCall */
-export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
- readonly isInline: boolean;
- readonly asInline: Bytes;
- readonly isPreimageLookup: boolean;
- readonly asPreimageLookup: {
- readonly hash_: H256;
- readonly unboundedLen: u32;
- } & Struct;
- readonly type: 'Inline' | 'PreimageLookup';
-}
-
/** @name PalletXcmCall */
export interface PalletXcmCall extends Enum {
readonly isSend: boolean;
@@ -2607,15 +2448,6 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
}
-/** @name PalletXcmOrigin */
-export interface PalletXcmOrigin extends Enum {
- readonly isXcm: boolean;
- readonly asXcm: XcmV1MultiLocation;
- readonly isResponse: boolean;
- readonly asResponse: XcmV1MultiLocation;
- readonly type: 'Xcm' | 'Response';
-}
-
/** @name PhantomTypeUpDataStructs */
export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
@@ -2835,9 +2667,6 @@
/** @name SpCoreSr25519Signature */
export interface SpCoreSr25519Signature extends U8aFixed {}
-
-/** @name SpCoreVoid */
-export interface SpCoreVoid extends Null {}
/** @name SpRuntimeArithmeticError */
export interface SpRuntimeArithmeticError extends Enum {
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -989,39 +989,7 @@
}
},
/**
- * Lookup89: pallet_unique_scheduler_v2::pallet::Event<T>
- **/
- PalletUniqueSchedulerV2Event: {
- _enum: {
- Scheduled: {
- when: 'u32',
- index: 'u32',
- },
- Canceled: {
- when: 'u32',
- index: 'u32',
- },
- Dispatched: {
- task: '(u32,u32)',
- id: 'Option<[u8;32]>',
- result: 'Result<Null, SpRuntimeDispatchError>',
- },
- PriorityChanged: {
- task: '(u32,u32)',
- priority: 'u8',
- },
- CallUnavailable: {
- task: '(u32,u32)',
- id: 'Option<[u8;32]>',
- },
- PermanentlyOverweight: {
- task: '(u32,u32)',
- id: 'Option<[u8;32]>'
- }
- }
- },
- /**
- * Lookup92: pallet_common::pallet::Event<T>
+ * Lookup89: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1050,7 +1018,7 @@
}
},
/**
- * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
**/
PalletEvmAccountBasicCrossAccountIdRepr: {
_enum: {
@@ -1059,7 +1027,7 @@
}
},
/**
- * Lookup99: pallet_structure::pallet::Event<T>
+ * Lookup96: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1067,7 +1035,7 @@
}
},
/**
- * Lookup100: pallet_rmrk_core::pallet::Event<T>
+ * Lookup97: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1144,7 +1112,7 @@
}
},
/**
- * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1153,7 +1121,7 @@
}
},
/**
- * Lookup105: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup102: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1168,7 +1136,7 @@
}
},
/**
- * Lookup106: pallet_app_promotion::pallet::Event<T>
+ * Lookup103: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1179,7 +1147,7 @@
}
},
/**
- * Lookup107: pallet_foreign_assets::module::Event<T>
+ * Lookup104: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1204,7 +1172,7 @@
}
},
/**
- * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1213,7 +1181,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup109: pallet_evm::pallet::Event<T>
+ * Lookup106: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1235,7 +1203,7 @@
}
},
/**
- * Lookup110: ethereum::log::Log
+ * Lookup107: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1243,7 +1211,7 @@
data: 'Bytes'
},
/**
- * Lookup112: pallet_ethereum::pallet::Event
+ * Lookup109: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1256,7 +1224,7 @@
}
},
/**
- * Lookup113: evm_core::error::ExitReason
+ * Lookup110: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1267,13 +1235,13 @@
}
},
/**
- * Lookup114: evm_core::error::ExitSucceed
+ * Lookup111: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup115: evm_core::error::ExitError
+ * Lookup112: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1295,13 +1263,13 @@
}
},
/**
- * Lookup118: evm_core::error::ExitRevert
+ * Lookup115: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup119: evm_core::error::ExitFatal
+ * Lookup116: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1312,7 +1280,7 @@
}
},
/**
- * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1322,25 +1290,25 @@
}
},
/**
- * Lookup121: pallet_evm_migration::pallet::Event<T>
+ * Lookup118: pallet_evm_migration::pallet::Event<T>
**/
PalletEvmMigrationEvent: {
_enum: ['TestEvent']
},
/**
- * Lookup122: pallet_maintenance::pallet::Event<T>
+ * Lookup119: pallet_maintenance::pallet::Event<T>
**/
PalletMaintenanceEvent: {
_enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
},
/**
- * Lookup123: pallet_test_utils::pallet::Event<T>
+ * Lookup120: pallet_test_utils::pallet::Event<T>
**/
PalletTestUtilsEvent: {
_enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
},
/**
- * Lookup124: frame_system::Phase
+ * Lookup121: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1350,14 +1318,14 @@
}
},
/**
- * Lookup126: frame_system::LastRuntimeUpgradeInfo
+ * Lookup124: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup127: frame_system::pallet::Call<T>
+ * Lookup125: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1395,7 +1363,7 @@
}
},
/**
- * Lookup132: frame_system::limits::BlockWeights
+ * Lookup130: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'SpWeightsWeightV2Weight',
@@ -1403,7 +1371,7 @@
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
- * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1411,7 +1379,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup134: frame_system::limits::WeightsPerClass
+ * Lookup132: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'SpWeightsWeightV2Weight',
@@ -1420,13 +1388,13 @@
reserved: 'Option<SpWeightsWeightV2Weight>'
},
/**
- * Lookup136: frame_system::limits::BlockLength
+ * Lookup134: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportDispatchPerDispatchClassU32'
},
/**
- * Lookup137: frame_support::dispatch::PerDispatchClass<T>
+ * Lookup135: frame_support::dispatch::PerDispatchClass<T>
**/
FrameSupportDispatchPerDispatchClassU32: {
normal: 'u32',
@@ -1434,14 +1402,14 @@
mandatory: 'u32'
},
/**
- * Lookup138: sp_weights::RuntimeDbWeight
+ * Lookup136: sp_weights::RuntimeDbWeight
**/
SpWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup139: sp_version::RuntimeVersion
+ * Lookup137: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1454,13 +1422,13 @@
stateVersion: 'u8'
},
/**
- * Lookup144: frame_system::pallet::Error<T>
+ * Lookup142: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1469,19 +1437,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup148: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup146: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup149: sp_trie::storage_proof::StorageProof
+ * Lookup147: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1490,7 +1458,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1501,7 +1469,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1515,14 +1483,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1541,7 +1509,7 @@
}
},
/**
- * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1550,27 +1518,27 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
},
/**
- * Lookup173: pallet_balances::BalanceLock<Balance>
+ * Lookup171: pallet_balances::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1578,26 +1546,26 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup174: pallet_balances::Reasons
+ * Lookup172: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup179: pallet_balances::Releases
+ * Lookup177: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup180: pallet_balances::pallet::Call<T, I>
+ * Lookup178: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1630,13 +1598,13 @@
}
},
/**
- * Lookup183: pallet_balances::pallet::Error<T, I>
+ * Lookup181: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup185: pallet_timestamp::pallet::Call<T>
+ * Lookup183: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1646,13 +1614,13 @@
}
},
/**
- * Lookup187: pallet_transaction_payment::Releases
+ * Lookup185: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1661,7 +1629,7 @@
bond: 'u128'
},
/**
- * Lookup191: pallet_treasury::pallet::Call<T, I>
+ * Lookup189: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1685,17 +1653,17 @@
}
},
/**
- * Lookup194: frame_support::PalletId
+ * Lookup192: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup195: pallet_treasury::pallet::Error<T, I>
+ * Lookup193: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup196: pallet_sudo::pallet::Call<T>
+ * Lookup194: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1719,7 +1687,7 @@
}
},
/**
- * Lookup198: orml_vesting::module::Call<T>
+ * Lookup196: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -1738,7 +1706,7 @@
}
},
/**
- * Lookup200: orml_xtokens::module::Call<T>
+ * Lookup198: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -1781,7 +1749,7 @@
}
},
/**
- * Lookup201: xcm::VersionedMultiAsset
+ * Lookup199: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -1790,7 +1758,7 @@
}
},
/**
- * Lookup204: orml_tokens::module::Call<T>
+ * Lookup202: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -1824,7 +1792,7 @@
}
},
/**
- * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -1873,7 +1841,7 @@
}
},
/**
- * Lookup206: pallet_xcm::pallet::Call<T>
+ * Lookup204: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -1927,7 +1895,7 @@
}
},
/**
- * Lookup207: xcm::VersionedXcm<RuntimeCall>
+ * Lookup205: xcm::VersionedXcm<RuntimeCall>
**/
XcmVersionedXcm: {
_enum: {
@@ -1937,7 +1905,7 @@
}
},
/**
- * Lookup208: xcm::v0::Xcm<RuntimeCall>
+ * Lookup206: xcm::v0::Xcm<RuntimeCall>
**/
XcmV0Xcm: {
_enum: {
@@ -1991,7 +1959,7 @@
}
},
/**
- * Lookup210: xcm::v0::order::Order<RuntimeCall>
+ * Lookup208: xcm::v0::order::Order<RuntimeCall>
**/
XcmV0Order: {
_enum: {
@@ -2034,7 +2002,7 @@
}
},
/**
- * Lookup212: xcm::v0::Response
+ * Lookup210: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -2042,7 +2010,7 @@
}
},
/**
- * Lookup213: xcm::v1::Xcm<RuntimeCall>
+ * Lookup211: xcm::v1::Xcm<RuntimeCall>
**/
XcmV1Xcm: {
_enum: {
@@ -2101,7 +2069,7 @@
}
},
/**
- * Lookup215: xcm::v1::order::Order<RuntimeCall>
+ * Lookup213: xcm::v1::order::Order<RuntimeCall>
**/
XcmV1Order: {
_enum: {
@@ -2146,7 +2114,7 @@
}
},
/**
- * Lookup217: xcm::v1::Response
+ * Lookup215: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -2155,11 +2123,11 @@
}
},
/**
- * Lookup231: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup229: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -2170,7 +2138,7 @@
}
},
/**
- * Lookup233: pallet_inflation::pallet::Call<T>
+ * Lookup231: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2180,7 +2148,7 @@
}
},
/**
- * Lookup234: pallet_unique::Call<T>
+ * Lookup232: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2317,7 +2285,7 @@
}
},
/**
- * Lookup239: up_data_structs::CollectionMode
+ * Lookup237: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2327,7 +2295,7 @@
}
},
/**
- * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2342,13 +2310,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup242: up_data_structs::AccessMode
+ * Lookup240: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup244: up_data_structs::CollectionLimits
+ * Lookup242: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2362,7 +2330,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup246: up_data_structs::SponsoringRateLimit
+ * Lookup244: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2371,7 +2339,7 @@
}
},
/**
- * Lookup249: up_data_structs::CollectionPermissions
+ * Lookup247: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2379,7 +2347,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup251: up_data_structs::NestingPermissions
+ * Lookup249: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2387,18 +2355,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup253: up_data_structs::OwnerRestrictedSet
+ * Lookup251: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup258: up_data_structs::PropertyKeyPermission
+ * Lookup256: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup259: up_data_structs::PropertyPermission
+ * Lookup257: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2406,14 +2374,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup262: up_data_structs::Property
+ * Lookup260: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup265: up_data_structs::CreateItemData
+ * Lookup263: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2423,26 +2391,26 @@
}
},
/**
- * Lookup266: up_data_structs::CreateNftData
+ * Lookup264: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup267: up_data_structs::CreateFungibleData
+ * Lookup265: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup268: up_data_structs::CreateReFungibleData
+ * Lookup266: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2453,14 +2421,14 @@
}
},
/**
- * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2468,58 +2436,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup283: pallet_unique_scheduler_v2::pallet::Call<T>
- **/
- PalletUniqueSchedulerV2Call: {
- _enum: {
- schedule: {
- when: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- cancel: {
- when: 'u32',
- index: 'u32',
- },
- schedule_named: {
- id: '[u8;32]',
- when: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- cancel_named: {
- id: '[u8;32]',
- },
- schedule_after: {
- after: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- schedule_named_after: {
- id: '[u8;32]',
- after: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- change_named_priority: {
- id: '[u8;32]',
- priority: 'u8'
- }
- }
- },
- /**
- * Lookup286: pallet_configuration::pallet::Call<T>
+ * Lookup281: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2530,20 +2454,32 @@
coeff: 'Option<u64>',
},
set_xcm_allowed_locations: {
- locations: 'Option<Vec<XcmV1MultiLocation>>'
+ locations: 'Option<Vec<XcmV1MultiLocation>>',
+ },
+ set_app_promotion_configuration_override: {
+ configuration: 'PalletConfigurationAppPromotionConfiguration'
}
}
},
/**
- * Lookup291: pallet_template_transaction_payment::Call<T>
+ * Lookup286: pallet_configuration::AppPromotionConfiguration<BlockNumber>
+ **/
+ PalletConfigurationAppPromotionConfiguration: {
+ recalculationInterval: 'Option<u32>',
+ pendingInterval: 'Option<u32>',
+ intervalIncome: 'Option<Perbill>',
+ maxStakersPerCalculation: 'Option<u8>'
+ },
+ /**
+ * Lookup289: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup292: pallet_structure::pallet::Call<T>
+ * Lookup290: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup293: pallet_rmrk_core::pallet::Call<T>
+ * Lookup291: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2634,7 +2570,7 @@
}
},
/**
- * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2644,7 +2580,7 @@
}
},
/**
- * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2653,7 +2589,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2664,7 +2600,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2675,7 +2611,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup307: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup305: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2696,7 +2632,7 @@
}
},
/**
- * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2705,7 +2641,7 @@
}
},
/**
- * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2713,7 +2649,7 @@
src: 'Bytes'
},
/**
- * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2722,7 +2658,7 @@
z: 'u32'
},
/**
- * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2732,7 +2668,7 @@
}
},
/**
- * Lookup316: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup314: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2740,14 +2676,14 @@
inherit: 'bool'
},
/**
- * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup320: pallet_app_promotion::pallet::Call<T>
+ * Lookup318: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2776,7 +2712,7 @@
}
},
/**
- * Lookup321: pallet_foreign_assets::module::Call<T>
+ * Lookup319: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2793,7 +2729,7 @@
}
},
/**
- * Lookup322: pallet_evm::pallet::Call<T>
+ * Lookup320: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2836,7 +2772,7 @@
}
},
/**
- * Lookup328: pallet_ethereum::pallet::Call<T>
+ * Lookup326: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2846,7 +2782,7 @@
}
},
/**
- * Lookup329: ethereum::transaction::TransactionV2
+ * Lookup327: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2856,7 +2792,7 @@
}
},
/**
- * Lookup330: ethereum::transaction::LegacyTransaction
+ * Lookup328: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2868,7 +2804,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup331: ethereum::transaction::TransactionAction
+ * Lookup329: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2877,7 +2813,7 @@
}
},
/**
- * Lookup332: ethereum::transaction::TransactionSignature
+ * Lookup330: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2885,7 +2821,7 @@
s: 'H256'
},
/**
- * Lookup334: ethereum::transaction::EIP2930Transaction
+ * Lookup332: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2901,14 +2837,14 @@
s: 'H256'
},
/**
- * Lookup336: ethereum::transaction::AccessListItem
+ * Lookup334: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup337: ethereum::transaction::EIP1559Transaction
+ * Lookup335: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2925,7 +2861,7 @@
s: 'H256'
},
/**
- * Lookup338: pallet_evm_migration::pallet::Call<T>
+ * Lookup336: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2949,13 +2885,13 @@
}
},
/**
- * Lookup342: pallet_maintenance::pallet::Call<T>
+ * Lookup340: pallet_maintenance::pallet::Call<T>
**/
PalletMaintenanceCall: {
_enum: ['enable', 'disable']
},
/**
- * Lookup343: pallet_test_utils::pallet::Call<T>
+ * Lookup341: pallet_test_utils::pallet::Call<T>
**/
PalletTestUtilsCall: {
_enum: {
@@ -2967,10 +2903,6 @@
value: 'u32',
},
inc_test_value: 'Null',
- self_canceling_inc: {
- id: '[u8;32]',
- maxTestValue: 'u32',
- },
just_take_fee: 'Null',
batch_all: {
calls: 'Vec<Call>'
@@ -2978,32 +2910,32 @@
}
},
/**
- * Lookup345: pallet_sudo::pallet::Error<T>
+ * Lookup343: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup347: orml_vesting::module::Error<T>
+ * Lookup345: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup348: orml_xtokens::module::Error<T>
+ * Lookup346: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup351: orml_tokens::BalanceLock<Balance>
+ * Lookup349: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup353: orml_tokens::AccountData<Balance>
+ * Lookup351: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -3011,20 +2943,20 @@
frozen: 'u128'
},
/**
- * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup357: orml_tokens::module::Error<T>
+ * Lookup355: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3032,19 +2964,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup360: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup358: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3054,13 +2986,13 @@
lastIndex: 'u16'
},
/**
- * Lookup367: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3071,29 +3003,29 @@
xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup372: pallet_xcm::pallet::Error<T>
+ * Lookup370: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup373: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup374: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup372: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup375: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3101,212 +3033,25 @@
overweightCount: 'u64'
},
/**
- * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup382: pallet_unique::Error<T>
+ * Lookup380: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
- },
- /**
- * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
- **/
- PalletUniqueSchedulerV2BlockAgenda: {
- agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
- freePlaces: 'u32'
- },
- /**
- * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
- **/
- PalletUniqueSchedulerV2Scheduled: {
- maybeId: 'Option<[u8;32]>',
- priority: 'u8',
- call: 'PalletUniqueSchedulerV2ScheduledCall',
- maybePeriodic: 'Option<(u32,u32)>',
- origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
- **/
- PalletUniqueSchedulerV2ScheduledCall: {
- _enum: {
- Inline: 'Bytes',
- PreimageLookup: {
- _alias: {
- hash_: 'hash',
- },
- hash_: 'H256',
- unboundedLen: 'u32'
- }
- }
- },
- /**
- * Lookup389: opal_runtime::OriginCaller
- **/
- OpalRuntimeOriginCaller: {
- _enum: {
- system: 'FrameSupportDispatchRawOrigin',
- __Unused1: 'Null',
- __Unused2: 'Null',
- __Unused3: 'Null',
- Void: 'SpCoreVoid',
- __Unused5: 'Null',
- __Unused6: 'Null',
- __Unused7: 'Null',
- __Unused8: 'Null',
- __Unused9: 'Null',
- __Unused10: 'Null',
- __Unused11: 'Null',
- __Unused12: 'Null',
- __Unused13: 'Null',
- __Unused14: 'Null',
- __Unused15: 'Null',
- __Unused16: 'Null',
- __Unused17: 'Null',
- __Unused18: 'Null',
- __Unused19: 'Null',
- __Unused20: 'Null',
- __Unused21: 'Null',
- __Unused22: 'Null',
- __Unused23: 'Null',
- __Unused24: 'Null',
- __Unused25: 'Null',
- __Unused26: 'Null',
- __Unused27: 'Null',
- __Unused28: 'Null',
- __Unused29: 'Null',
- __Unused30: 'Null',
- __Unused31: 'Null',
- __Unused32: 'Null',
- __Unused33: 'Null',
- __Unused34: 'Null',
- __Unused35: 'Null',
- __Unused36: 'Null',
- __Unused37: 'Null',
- __Unused38: 'Null',
- __Unused39: 'Null',
- __Unused40: 'Null',
- __Unused41: 'Null',
- __Unused42: 'Null',
- __Unused43: 'Null',
- __Unused44: 'Null',
- __Unused45: 'Null',
- __Unused46: 'Null',
- __Unused47: 'Null',
- __Unused48: 'Null',
- __Unused49: 'Null',
- __Unused50: 'Null',
- PolkadotXcm: 'PalletXcmOrigin',
- CumulusXcm: 'CumulusPalletXcmOrigin',
- __Unused53: 'Null',
- __Unused54: 'Null',
- __Unused55: 'Null',
- __Unused56: 'Null',
- __Unused57: 'Null',
- __Unused58: 'Null',
- __Unused59: 'Null',
- __Unused60: 'Null',
- __Unused61: 'Null',
- __Unused62: 'Null',
- __Unused63: 'Null',
- __Unused64: 'Null',
- __Unused65: 'Null',
- __Unused66: 'Null',
- __Unused67: 'Null',
- __Unused68: 'Null',
- __Unused69: 'Null',
- __Unused70: 'Null',
- __Unused71: 'Null',
- __Unused72: 'Null',
- __Unused73: 'Null',
- __Unused74: 'Null',
- __Unused75: 'Null',
- __Unused76: 'Null',
- __Unused77: 'Null',
- __Unused78: 'Null',
- __Unused79: 'Null',
- __Unused80: 'Null',
- __Unused81: 'Null',
- __Unused82: 'Null',
- __Unused83: 'Null',
- __Unused84: 'Null',
- __Unused85: 'Null',
- __Unused86: 'Null',
- __Unused87: 'Null',
- __Unused88: 'Null',
- __Unused89: 'Null',
- __Unused90: 'Null',
- __Unused91: 'Null',
- __Unused92: 'Null',
- __Unused93: 'Null',
- __Unused94: 'Null',
- __Unused95: 'Null',
- __Unused96: 'Null',
- __Unused97: 'Null',
- __Unused98: 'Null',
- __Unused99: 'Null',
- __Unused100: 'Null',
- Ethereum: 'PalletEthereumRawOrigin'
- }
- },
- /**
- * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
- **/
- FrameSupportDispatchRawOrigin: {
- _enum: {
- Root: 'Null',
- Signed: 'AccountId32',
- None: 'Null'
- }
- },
- /**
- * Lookup391: pallet_xcm::pallet::Origin
- **/
- PalletXcmOrigin: {
- _enum: {
- Xcm: 'XcmV1MultiLocation',
- Response: 'XcmV1MultiLocation'
- }
- },
- /**
- * Lookup392: cumulus_pallet_xcm::pallet::Origin
- **/
- CumulusPalletXcmOrigin: {
- _enum: {
- Relay: 'Null',
- SiblingParachain: 'u32'
- }
- },
- /**
- * Lookup393: pallet_ethereum::RawOrigin
- **/
- PalletEthereumRawOrigin: {
- _enum: {
- EthereumTransaction: 'H160'
- }
- },
- /**
- * Lookup394: sp_core::Void
+ * Lookup381: pallet_configuration::pallet::Error<T>
**/
- SpCoreVoid: 'Null',
- /**
- * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
- **/
- PalletUniqueSchedulerV2Error: {
- _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
- },
- /**
- * Lookup400: pallet_configuration::pallet::Error<T>
- **/
PalletConfigurationError: {
_enum: ['InconsistentConfiguration']
},
/**
- * Lookup401: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3320,7 +3065,7 @@
flags: '[u8;1]'
},
/**
- * Lookup402: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3330,7 +3075,7 @@
}
},
/**
- * Lookup404: up_data_structs::Properties
+ * Lookup385: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3338,15 +3083,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup405: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup410: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup417: up_data_structs::CollectionStats
+ * Lookup398: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3354,18 +3099,18 @@
alive: 'u32'
},
/**
- * Lookup418: up_data_structs::TokenChild
+ * Lookup399: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup419: PhantomType::up_data_structs<T>
+ * Lookup400: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup421: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3373,7 +3118,7 @@
pieces: 'u128'
},
/**
- * Lookup423: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3390,14 +3135,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup424: up_data_structs::RpcCollectionFlags
+ * Lookup405: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * 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>
+ * Lookup406: 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',
@@ -3407,7 +3152,7 @@
nftsCount: 'u32'
},
/**
- * Lookup426: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3417,14 +3162,14 @@
pending: 'bool'
},
/**
- * Lookup428: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup429: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3433,14 +3178,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup430: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup411: 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'
},
/**
- * Lookup431: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3448,92 +3193,92 @@
symbol: 'Bytes'
},
/**
- * Lookup432: rmrk_traits::nft::NftChild
+ * Lookup413: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup434: pallet_common::pallet::Error<T>
+ * Lookup415: 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']
},
/**
- * Lookup436: pallet_fungible::pallet::Error<T>
+ * Lookup417: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
},
/**
- * Lookup437: pallet_refungible::ItemData
+ * Lookup418: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup442: pallet_refungible::pallet::Error<T>
+ * Lookup423: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup443: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup424: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup445: up_data_structs::PropertyScope
+ * Lookup426: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup447: pallet_nonfungible::pallet::Error<T>
+ * Lookup428: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup448: pallet_structure::pallet::Error<T>
+ * Lookup429: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup449: pallet_rmrk_core::pallet::Error<T>
+ * Lookup430: 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']
},
/**
- * Lookup451: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup432: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup457: pallet_app_promotion::pallet::Error<T>
+ * Lookup438: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup458: pallet_foreign_assets::module::Error<T>
+ * Lookup439: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup460: pallet_evm::pallet::Error<T>
+ * Lookup441: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
},
/**
- * Lookup463: fp_rpc::TransactionStatus
+ * Lookup444: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3545,11 +3290,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup465: ethbloom::Bloom
+ * Lookup446: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup467: ethereum::receipt::ReceiptV3
+ * Lookup448: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3559,7 +3304,7 @@
}
},
/**
- * Lookup468: ethereum::receipt::EIP658ReceiptData
+ * Lookup449: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3568,7 +3313,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup469: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup450: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3576,7 +3321,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup470: ethereum::header::Header
+ * Lookup451: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3596,23 +3341,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup471: ethereum_types::hash::H64
+ * Lookup452: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup476: pallet_ethereum::pallet::Error<T>
+ * Lookup457: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup477: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup458: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup478: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup459: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3622,35 +3367,35 @@
}
},
/**
- * Lookup479: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup460: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup485: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup466: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup486: pallet_evm_migration::pallet::Error<T>
+ * Lookup467: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup487: pallet_maintenance::pallet::Error<T>
+ * Lookup468: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup488: pallet_test_utils::pallet::Error<T>
+ * Lookup469: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup490: sp_runtime::MultiSignature
+ * Lookup471: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3660,51 +3405,51 @@
}
},
/**
- * Lookup491: sp_core::ed25519::Signature
+ * Lookup472: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup493: sp_core::sr25519::Signature
+ * Lookup474: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup494: sp_core::ecdsa::Signature
+ * Lookup475: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup497: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup498: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup499: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup502: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup503: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup504: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup485: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup505: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup486: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup506: opal_runtime::Runtime
+ * Lookup487: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup507: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup488: 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,19 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-<<<<<<< HEAD
-<<<<<<< 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
-=======
-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, 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';
->>>>>>> 4824c0e1... chore: regenerate types
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -33,7 +21,6 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
- CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -69,7 +56,6 @@
FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSystemAccountInfo: FrameSystemAccountInfo;
@@ -87,7 +73,6 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
- OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
OrmlTokensAccountData: OrmlTokensAccountData;
@@ -123,7 +108,6 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
- PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -176,16 +160,9 @@
PalletTreasuryProposal: PalletTreasuryProposal;
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
- PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
- PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
- PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
- PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
- PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
- PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PalletXcmOrigin: PalletXcmOrigin;
PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -216,7 +193,6 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
- SpCoreVoid: SpCoreVoid;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }1110 }11111112 /** @name PalletUniqueSchedulerV2Event (89) */1113 interface PalletUniqueSchedulerV2Event extends Enum {1114 readonly isScheduled: boolean;1115 readonly asScheduled: {1116 readonly when: u32;1117 readonly index: u32;1118 } & Struct;1119 readonly isCanceled: boolean;1120 readonly asCanceled: {1121 readonly when: u32;1122 readonly index: u32;1123 } & Struct;1124 readonly isDispatched: boolean;1125 readonly asDispatched: {1126 readonly task: ITuple<[u32, u32]>;1127 readonly id: Option<U8aFixed>;1128 readonly result: Result<Null, SpRuntimeDispatchError>;1129 } & Struct;1130 readonly isPriorityChanged: boolean;1131 readonly asPriorityChanged: {1132 readonly task: ITuple<[u32, u32]>;1133 readonly priority: u8;1134 } & Struct;1135 readonly isCallUnavailable: boolean;1136 readonly asCallUnavailable: {1137 readonly task: ITuple<[u32, u32]>;1138 readonly id: Option<U8aFixed>;1139 } & Struct;1140 readonly isPermanentlyOverweight: boolean;1141 readonly asPermanentlyOverweight: {1142 readonly task: ITuple<[u32, u32]>;1143 readonly id: Option<U8aFixed>;1144 } & Struct;1145 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1146 }114711111148 /** @name PalletCommonEvent (92) */1112 /** @name PalletCommonEvent (89) */1149 interface PalletCommonEvent extends Enum {1113 interface PalletCommonEvent extends Enum {1150 readonly isCollectionCreated: boolean;1114 readonly isCollectionCreated: boolean;1151 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1115 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1194 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1158 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1195 }1159 }119611601197 /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */1161 /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */1198 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1162 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1199 readonly isSubstrate: boolean;1163 readonly isSubstrate: boolean;1200 readonly asSubstrate: AccountId32;1164 readonly asSubstrate: AccountId32;1203 readonly type: 'Substrate' | 'Ethereum';1167 readonly type: 'Substrate' | 'Ethereum';1204 }1168 }120511691206 /** @name PalletStructureEvent (99) */1170 /** @name PalletStructureEvent (96) */1207 interface PalletStructureEvent extends Enum {1171 interface PalletStructureEvent extends Enum {1208 readonly isExecuted: boolean;1172 readonly isExecuted: boolean;1209 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1173 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1210 readonly type: 'Executed';1174 readonly type: 'Executed';1211 }1175 }121211761213 /** @name PalletRmrkCoreEvent (100) */1177 /** @name PalletRmrkCoreEvent (97) */1214 interface PalletRmrkCoreEvent extends Enum {1178 interface PalletRmrkCoreEvent extends Enum {1215 readonly isCollectionCreated: boolean;1179 readonly isCollectionCreated: boolean;1216 readonly asCollectionCreated: {1180 readonly asCollectionCreated: {1300 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1264 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1301 }1265 }130212661303 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1267 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */1304 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1268 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1305 readonly isAccountId: boolean;1269 readonly isAccountId: boolean;1306 readonly asAccountId: AccountId32;1270 readonly asAccountId: AccountId32;1309 readonly type: 'AccountId' | 'CollectionAndNftTuple';1273 readonly type: 'AccountId' | 'CollectionAndNftTuple';1310 }1274 }131112751312 /** @name PalletRmrkEquipEvent (105) */1276 /** @name PalletRmrkEquipEvent (102) */1313 interface PalletRmrkEquipEvent extends Enum {1277 interface PalletRmrkEquipEvent extends Enum {1314 readonly isBaseCreated: boolean;1278 readonly isBaseCreated: boolean;1315 readonly asBaseCreated: {1279 readonly asBaseCreated: {1324 readonly type: 'BaseCreated' | 'EquippablesUpdated';1288 readonly type: 'BaseCreated' | 'EquippablesUpdated';1325 }1289 }132612901327 /** @name PalletAppPromotionEvent (106) */1291 /** @name PalletAppPromotionEvent (103) */1328 interface PalletAppPromotionEvent extends Enum {1292 interface PalletAppPromotionEvent extends Enum {1329 readonly isStakingRecalculation: boolean;1293 readonly isStakingRecalculation: boolean;1330 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1294 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1337 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1301 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1338 }1302 }133913031340 /** @name PalletForeignAssetsModuleEvent (107) */1304 /** @name PalletForeignAssetsModuleEvent (104) */1341 interface PalletForeignAssetsModuleEvent extends Enum {1305 interface PalletForeignAssetsModuleEvent extends Enum {1342 readonly isForeignAssetRegistered: boolean;1306 readonly isForeignAssetRegistered: boolean;1343 readonly asForeignAssetRegistered: {1307 readonly asForeignAssetRegistered: {1364 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1328 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1365 }1329 }136613301367 /** @name PalletForeignAssetsModuleAssetMetadata (108) */1331 /** @name PalletForeignAssetsModuleAssetMetadata (105) */1368 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1332 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1369 readonly name: Bytes;1333 readonly name: Bytes;1370 readonly symbol: Bytes;1334 readonly symbol: Bytes;1371 readonly decimals: u8;1335 readonly decimals: u8;1372 readonly minimalBalance: u128;1336 readonly minimalBalance: u128;1373 }1337 }137413381375 /** @name PalletEvmEvent (109) */1339 /** @name PalletEvmEvent (106) */1376 interface PalletEvmEvent extends Enum {1340 interface PalletEvmEvent extends Enum {1377 readonly isLog: boolean;1341 readonly isLog: boolean;1378 readonly asLog: {1342 readonly asLog: {1397 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1361 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1398 }1362 }139913631400 /** @name EthereumLog (110) */1364 /** @name EthereumLog (107) */1401 interface EthereumLog extends Struct {1365 interface EthereumLog extends Struct {1402 readonly address: H160;1366 readonly address: H160;1403 readonly topics: Vec<H256>;1367 readonly topics: Vec<H256>;1404 readonly data: Bytes;1368 readonly data: Bytes;1405 }1369 }140613701407 /** @name PalletEthereumEvent (112) */1371 /** @name PalletEthereumEvent (109) */1408 interface PalletEthereumEvent extends Enum {1372 interface PalletEthereumEvent extends Enum {1409 readonly isExecuted: boolean;1373 readonly isExecuted: boolean;1410 readonly asExecuted: {1374 readonly asExecuted: {1416 readonly type: 'Executed';1380 readonly type: 'Executed';1417 }1381 }141813821419 /** @name EvmCoreErrorExitReason (113) */1383 /** @name EvmCoreErrorExitReason (110) */1420 interface EvmCoreErrorExitReason extends Enum {1384 interface EvmCoreErrorExitReason extends Enum {1421 readonly isSucceed: boolean;1385 readonly isSucceed: boolean;1422 readonly asSucceed: EvmCoreErrorExitSucceed;1386 readonly asSucceed: EvmCoreErrorExitSucceed;1429 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1393 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1430 }1394 }143113951432 /** @name EvmCoreErrorExitSucceed (114) */1396 /** @name EvmCoreErrorExitSucceed (111) */1433 interface EvmCoreErrorExitSucceed extends Enum {1397 interface EvmCoreErrorExitSucceed extends Enum {1434 readonly isStopped: boolean;1398 readonly isStopped: boolean;1435 readonly isReturned: boolean;1399 readonly isReturned: boolean;1436 readonly isSuicided: boolean;1400 readonly isSuicided: boolean;1437 readonly type: 'Stopped' | 'Returned' | 'Suicided';1401 readonly type: 'Stopped' | 'Returned' | 'Suicided';1438 }1402 }143914031440 /** @name EvmCoreErrorExitError (115) */1404 /** @name EvmCoreErrorExitError (112) */1441 interface EvmCoreErrorExitError extends Enum {1405 interface EvmCoreErrorExitError extends Enum {1442 readonly isStackUnderflow: boolean;1406 readonly isStackUnderflow: boolean;1443 readonly isStackOverflow: boolean;1407 readonly isStackOverflow: boolean;1458 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1422 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1459 }1423 }146014241461 /** @name EvmCoreErrorExitRevert (118) */1425 /** @name EvmCoreErrorExitRevert (115) */1462 interface EvmCoreErrorExitRevert extends Enum {1426 interface EvmCoreErrorExitRevert extends Enum {1463 readonly isReverted: boolean;1427 readonly isReverted: boolean;1464 readonly type: 'Reverted';1428 readonly type: 'Reverted';1465 }1429 }146614301467 /** @name EvmCoreErrorExitFatal (119) */1431 /** @name EvmCoreErrorExitFatal (116) */1468 interface EvmCoreErrorExitFatal extends Enum {1432 interface EvmCoreErrorExitFatal extends Enum {1469 readonly isNotSupported: boolean;1433 readonly isNotSupported: boolean;1470 readonly isUnhandledInterrupt: boolean;1434 readonly isUnhandledInterrupt: boolean;1475 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1439 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1476 }1440 }147714411478 /** @name PalletEvmContractHelpersEvent (120) */1442 /** @name PalletEvmContractHelpersEvent (117) */1479 interface PalletEvmContractHelpersEvent extends Enum {1443 interface PalletEvmContractHelpersEvent extends Enum {1480 readonly isContractSponsorSet: boolean;1444 readonly isContractSponsorSet: boolean;1481 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1445 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1486 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1450 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1487 }1451 }148814521489 /** @name PalletEvmMigrationEvent (121) */1453 /** @name PalletEvmMigrationEvent (118) */1490 interface PalletEvmMigrationEvent extends Enum {1454 interface PalletEvmMigrationEvent extends Enum {1491 readonly isTestEvent: boolean;1455 readonly isTestEvent: boolean;1492 readonly type: 'TestEvent';1456 readonly type: 'TestEvent';1493 }1457 }149414581495 /** @name PalletMaintenanceEvent (122) */1459 /** @name PalletMaintenanceEvent (119) */1496 interface PalletMaintenanceEvent extends Enum {1460 interface PalletMaintenanceEvent extends Enum {1497 readonly isMaintenanceEnabled: boolean;1461 readonly isMaintenanceEnabled: boolean;1498 readonly isMaintenanceDisabled: boolean;1462 readonly isMaintenanceDisabled: boolean;1499 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1463 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1500 }1464 }150114651502 /** @name PalletTestUtilsEvent (123) */1466 /** @name PalletTestUtilsEvent (120) */1503 interface PalletTestUtilsEvent extends Enum {1467 interface PalletTestUtilsEvent extends Enum {1504 readonly isValueIsSet: boolean;1468 readonly isValueIsSet: boolean;1505 readonly isShouldRollback: boolean;1469 readonly isShouldRollback: boolean;1506 readonly isBatchCompleted: boolean;1470 readonly isBatchCompleted: boolean;1507 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1471 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1508 }1472 }150914731510 /** @name FrameSystemPhase (124) */1474 /** @name FrameSystemPhase (121) */1511 interface FrameSystemPhase extends Enum {1475 interface FrameSystemPhase extends Enum {1512 readonly isApplyExtrinsic: boolean;1476 readonly isApplyExtrinsic: boolean;1513 readonly asApplyExtrinsic: u32;1477 readonly asApplyExtrinsic: u32;1516 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1480 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1517 }1481 }151814821519 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1483 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */1520 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1484 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1521 readonly specVersion: Compact<u32>;1485 readonly specVersion: Compact<u32>;1522 readonly specName: Text;1486 readonly specName: Text;1523 }1487 }152414881525 /** @name FrameSystemCall (127) */1489 /** @name FrameSystemCall (125) */1526 interface FrameSystemCall extends Enum {1490 interface FrameSystemCall extends Enum {1527 readonly isFillBlock: boolean;1491 readonly isFillBlock: boolean;1528 readonly asFillBlock: {1492 readonly asFillBlock: {1564 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1528 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1565 }1529 }156615301567 /** @name FrameSystemLimitsBlockWeights (132) */1531 /** @name FrameSystemLimitsBlockWeights (130) */1568 interface FrameSystemLimitsBlockWeights extends Struct {1532 interface FrameSystemLimitsBlockWeights extends Struct {1569 readonly baseBlock: SpWeightsWeightV2Weight;1533 readonly baseBlock: SpWeightsWeightV2Weight;1570 readonly maxBlock: SpWeightsWeightV2Weight;1534 readonly maxBlock: SpWeightsWeightV2Weight;1571 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1535 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1572 }1536 }157315371574 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */1538 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */1575 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1539 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1576 readonly normal: FrameSystemLimitsWeightsPerClass;1540 readonly normal: FrameSystemLimitsWeightsPerClass;1577 readonly operational: FrameSystemLimitsWeightsPerClass;1541 readonly operational: FrameSystemLimitsWeightsPerClass;1578 readonly mandatory: FrameSystemLimitsWeightsPerClass;1542 readonly mandatory: FrameSystemLimitsWeightsPerClass;1579 }1543 }158015441581 /** @name FrameSystemLimitsWeightsPerClass (134) */1545 /** @name FrameSystemLimitsWeightsPerClass (132) */1582 interface FrameSystemLimitsWeightsPerClass extends Struct {1546 interface FrameSystemLimitsWeightsPerClass extends Struct {1583 readonly baseExtrinsic: SpWeightsWeightV2Weight;1547 readonly baseExtrinsic: SpWeightsWeightV2Weight;1584 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1548 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1585 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1549 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1586 readonly reserved: Option<SpWeightsWeightV2Weight>;1550 readonly reserved: Option<SpWeightsWeightV2Weight>;1587 }1551 }158815521589 /** @name FrameSystemLimitsBlockLength (136) */1553 /** @name FrameSystemLimitsBlockLength (134) */1590 interface FrameSystemLimitsBlockLength extends Struct {1554 interface FrameSystemLimitsBlockLength extends Struct {1591 readonly max: FrameSupportDispatchPerDispatchClassU32;1555 readonly max: FrameSupportDispatchPerDispatchClassU32;1592 }1556 }159315571594 /** @name FrameSupportDispatchPerDispatchClassU32 (137) */1558 /** @name FrameSupportDispatchPerDispatchClassU32 (135) */1595 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1559 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1596 readonly normal: u32;1560 readonly normal: u32;1597 readonly operational: u32;1561 readonly operational: u32;1598 readonly mandatory: u32;1562 readonly mandatory: u32;1599 }1563 }160015641601 /** @name SpWeightsRuntimeDbWeight (138) */1565 /** @name SpWeightsRuntimeDbWeight (136) */1602 interface SpWeightsRuntimeDbWeight extends Struct {1566 interface SpWeightsRuntimeDbWeight extends Struct {1603 readonly read: u64;1567 readonly read: u64;1604 readonly write: u64;1568 readonly write: u64;1605 }1569 }160615701607 /** @name SpVersionRuntimeVersion (139) */1571 /** @name SpVersionRuntimeVersion (137) */1608 interface SpVersionRuntimeVersion extends Struct {1572 interface SpVersionRuntimeVersion extends Struct {1609 readonly specName: Text;1573 readonly specName: Text;1610 readonly implName: Text;1574 readonly implName: Text;1616 readonly stateVersion: u8;1580 readonly stateVersion: u8;1617 }1581 }161815821619 /** @name FrameSystemError (144) */1583 /** @name FrameSystemError (142) */1620 interface FrameSystemError extends Enum {1584 interface FrameSystemError extends Enum {1621 readonly isInvalidSpecName: boolean;1585 readonly isInvalidSpecName: boolean;1622 readonly isSpecVersionNeedsToIncrease: boolean;1586 readonly isSpecVersionNeedsToIncrease: boolean;1627 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1591 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1628 }1592 }162915931630 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1594 /** @name PolkadotPrimitivesV2PersistedValidationData (143) */1631 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1595 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1632 readonly parentHead: Bytes;1596 readonly parentHead: Bytes;1633 readonly relayParentNumber: u32;1597 readonly relayParentNumber: u32;1634 readonly relayParentStorageRoot: H256;1598 readonly relayParentStorageRoot: H256;1635 readonly maxPovSize: u32;1599 readonly maxPovSize: u32;1636 }1600 }163716011638 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1602 /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */1639 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1603 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1640 readonly isPresent: boolean;1604 readonly isPresent: boolean;1641 readonly type: 'Present';1605 readonly type: 'Present';1642 }1606 }164316071644 /** @name SpTrieStorageProof (149) */1608 /** @name SpTrieStorageProof (147) */1645 interface SpTrieStorageProof extends Struct {1609 interface SpTrieStorageProof extends Struct {1646 readonly trieNodes: BTreeSet<Bytes>;1610 readonly trieNodes: BTreeSet<Bytes>;1647 }1611 }164816121649 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1613 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */1650 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1614 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1651 readonly dmqMqcHead: H256;1615 readonly dmqMqcHead: H256;1652 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1616 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1653 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1617 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1654 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1618 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1655 }1619 }165616201657 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1621 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */1658 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1622 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1659 readonly maxCapacity: u32;1623 readonly maxCapacity: u32;1660 readonly maxTotalSize: u32;1624 readonly maxTotalSize: u32;1664 readonly mqcHead: Option<H256>;1628 readonly mqcHead: Option<H256>;1665 }1629 }166616301667 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1631 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */1668 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1632 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1669 readonly maxCodeSize: u32;1633 readonly maxCodeSize: u32;1670 readonly maxHeadDataSize: u32;1634 readonly maxHeadDataSize: u32;1677 readonly validationUpgradeDelay: u32;1641 readonly validationUpgradeDelay: u32;1678 }1642 }167916431680 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1644 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */1681 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1645 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1682 readonly recipient: u32;1646 readonly recipient: u32;1683 readonly data: Bytes;1647 readonly data: Bytes;1684 }1648 }168516491686 /** @name CumulusPalletParachainSystemCall (162) */1650 /** @name CumulusPalletParachainSystemCall (160) */1687 interface CumulusPalletParachainSystemCall extends Enum {1651 interface CumulusPalletParachainSystemCall extends Enum {1688 readonly isSetValidationData: boolean;1652 readonly isSetValidationData: boolean;1689 readonly asSetValidationData: {1653 readonly asSetValidationData: {1704 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1668 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1705 }1669 }170616701707 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1671 /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */1708 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1672 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1709 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1673 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1710 readonly relayChainState: SpTrieStorageProof;1674 readonly relayChainState: SpTrieStorageProof;1711 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1675 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1712 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1676 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1713 }1677 }171416781715 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1679 /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */1716 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1680 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1717 readonly sentAt: u32;1681 readonly sentAt: u32;1718 readonly msg: Bytes;1682 readonly msg: Bytes;1719 }1683 }172016841721 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1685 /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */1722 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1686 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1723 readonly sentAt: u32;1687 readonly sentAt: u32;1724 readonly data: Bytes;1688 readonly data: Bytes;1725 }1689 }172616901727 /** @name CumulusPalletParachainSystemError (171) */1691 /** @name CumulusPalletParachainSystemError (169) */1728 interface CumulusPalletParachainSystemError extends Enum {1692 interface CumulusPalletParachainSystemError extends Enum {1729 readonly isOverlappingUpgrades: boolean;1693 readonly isOverlappingUpgrades: boolean;1730 readonly isProhibitedByPolkadot: boolean;1694 readonly isProhibitedByPolkadot: boolean;1737 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1701 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1738 }1702 }173917031740 /** @name PalletBalancesBalanceLock (173) */1704 /** @name PalletBalancesBalanceLock (171) */1741 interface PalletBalancesBalanceLock extends Struct {1705 interface PalletBalancesBalanceLock extends Struct {1742 readonly id: U8aFixed;1706 readonly id: U8aFixed;1743 readonly amount: u128;1707 readonly amount: u128;1744 readonly reasons: PalletBalancesReasons;1708 readonly reasons: PalletBalancesReasons;1745 }1709 }174617101747 /** @name PalletBalancesReasons (174) */1711 /** @name PalletBalancesReasons (172) */1748 interface PalletBalancesReasons extends Enum {1712 interface PalletBalancesReasons extends Enum {1749 readonly isFee: boolean;1713 readonly isFee: boolean;1750 readonly isMisc: boolean;1714 readonly isMisc: boolean;1751 readonly isAll: boolean;1715 readonly isAll: boolean;1752 readonly type: 'Fee' | 'Misc' | 'All';1716 readonly type: 'Fee' | 'Misc' | 'All';1753 }1717 }175417181755 /** @name PalletBalancesReserveData (177) */1719 /** @name PalletBalancesReserveData (175) */1756 interface PalletBalancesReserveData extends Struct {1720 interface PalletBalancesReserveData extends Struct {1757 readonly id: U8aFixed;1721 readonly id: U8aFixed;1758 readonly amount: u128;1722 readonly amount: u128;1759 }1723 }176017241761 /** @name PalletBalancesReleases (179) */1725 /** @name PalletBalancesReleases (177) */1762 interface PalletBalancesReleases extends Enum {1726 interface PalletBalancesReleases extends Enum {1763 readonly isV100: boolean;1727 readonly isV100: boolean;1764 readonly isV200: boolean;1728 readonly isV200: boolean;1765 readonly type: 'V100' | 'V200';1729 readonly type: 'V100' | 'V200';1766 }1730 }176717311768 /** @name PalletBalancesCall (180) */1732 /** @name PalletBalancesCall (178) */1769 interface PalletBalancesCall extends Enum {1733 interface PalletBalancesCall extends Enum {1770 readonly isTransfer: boolean;1734 readonly isTransfer: boolean;1771 readonly asTransfer: {1735 readonly asTransfer: {1802 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1766 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1803 }1767 }180417681805 /** @name PalletBalancesError (183) */1769 /** @name PalletBalancesError (181) */1806 interface PalletBalancesError extends Enum {1770 interface PalletBalancesError extends Enum {1807 readonly isVestingBalance: boolean;1771 readonly isVestingBalance: boolean;1808 readonly isLiquidityRestrictions: boolean;1772 readonly isLiquidityRestrictions: boolean;1815 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1779 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1816 }1780 }181717811818 /** @name PalletTimestampCall (185) */1782 /** @name PalletTimestampCall (183) */1819 interface PalletTimestampCall extends Enum {1783 interface PalletTimestampCall extends Enum {1820 readonly isSet: boolean;1784 readonly isSet: boolean;1821 readonly asSet: {1785 readonly asSet: {1824 readonly type: 'Set';1788 readonly type: 'Set';1825 }1789 }182617901827 /** @name PalletTransactionPaymentReleases (187) */1791 /** @name PalletTransactionPaymentReleases (185) */1828 interface PalletTransactionPaymentReleases extends Enum {1792 interface PalletTransactionPaymentReleases extends Enum {1829 readonly isV1Ancient: boolean;1793 readonly isV1Ancient: boolean;1830 readonly isV2: boolean;1794 readonly isV2: boolean;1831 readonly type: 'V1Ancient' | 'V2';1795 readonly type: 'V1Ancient' | 'V2';1832 }1796 }183317971834 /** @name PalletTreasuryProposal (188) */1798 /** @name PalletTreasuryProposal (186) */1835 interface PalletTreasuryProposal extends Struct {1799 interface PalletTreasuryProposal extends Struct {1836 readonly proposer: AccountId32;1800 readonly proposer: AccountId32;1837 readonly value: u128;1801 readonly value: u128;1838 readonly beneficiary: AccountId32;1802 readonly beneficiary: AccountId32;1839 readonly bond: u128;1803 readonly bond: u128;1840 }1804 }184118051842 /** @name PalletTreasuryCall (191) */1806 /** @name PalletTreasuryCall (189) */1843 interface PalletTreasuryCall extends Enum {1807 interface PalletTreasuryCall extends Enum {1844 readonly isProposeSpend: boolean;1808 readonly isProposeSpend: boolean;1845 readonly asProposeSpend: {1809 readonly asProposeSpend: {1866 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1830 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1867 }1831 }186818321869 /** @name FrameSupportPalletId (194) */1833 /** @name FrameSupportPalletId (192) */1870 interface FrameSupportPalletId extends U8aFixed {}1834 interface FrameSupportPalletId extends U8aFixed {}187118351872 /** @name PalletTreasuryError (195) */1836 /** @name PalletTreasuryError (193) */1873 interface PalletTreasuryError extends Enum {1837 interface PalletTreasuryError extends Enum {1874 readonly isInsufficientProposersBalance: boolean;1838 readonly isInsufficientProposersBalance: boolean;1875 readonly isInvalidIndex: boolean;1839 readonly isInvalidIndex: boolean;1879 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1843 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1880 }1844 }188118451882 /** @name PalletSudoCall (196) */1846 /** @name PalletSudoCall (194) */1883 interface PalletSudoCall extends Enum {1847 interface PalletSudoCall extends Enum {1884 readonly isSudo: boolean;1848 readonly isSudo: boolean;1885 readonly asSudo: {1849 readonly asSudo: {1902 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1866 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1903 }1867 }190418681905 /** @name OrmlVestingModuleCall (198) */1869 /** @name OrmlVestingModuleCall (196) */1906 interface OrmlVestingModuleCall extends Enum {1870 interface OrmlVestingModuleCall extends Enum {1907 readonly isClaim: boolean;1871 readonly isClaim: boolean;1908 readonly isVestedTransfer: boolean;1872 readonly isVestedTransfer: boolean;1922 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1886 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1923 }1887 }192418881925 /** @name OrmlXtokensModuleCall (200) */1889 /** @name OrmlXtokensModuleCall (198) */1926 interface OrmlXtokensModuleCall extends Enum {1890 interface OrmlXtokensModuleCall extends Enum {1927 readonly isTransfer: boolean;1891 readonly isTransfer: boolean;1928 readonly asTransfer: {1892 readonly asTransfer: {1969 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1933 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1970 }1934 }197119351972 /** @name XcmVersionedMultiAsset (201) */1936 /** @name XcmVersionedMultiAsset (199) */1973 interface XcmVersionedMultiAsset extends Enum {1937 interface XcmVersionedMultiAsset extends Enum {1974 readonly isV0: boolean;1938 readonly isV0: boolean;1975 readonly asV0: XcmV0MultiAsset;1939 readonly asV0: XcmV0MultiAsset;1978 readonly type: 'V0' | 'V1';1942 readonly type: 'V0' | 'V1';1979 }1943 }198019441981 /** @name OrmlTokensModuleCall (204) */1945 /** @name OrmlTokensModuleCall (202) */1982 interface OrmlTokensModuleCall extends Enum {1946 interface OrmlTokensModuleCall extends Enum {1983 readonly isTransfer: boolean;1947 readonly isTransfer: boolean;1984 readonly asTransfer: {1948 readonly asTransfer: {2015 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1979 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2016 }1980 }201719812018 /** @name CumulusPalletXcmpQueueCall (205) */1982 /** @name CumulusPalletXcmpQueueCall (203) */2019 interface CumulusPalletXcmpQueueCall extends Enum {1983 interface CumulusPalletXcmpQueueCall extends Enum {2020 readonly isServiceOverweight: boolean;1984 readonly isServiceOverweight: boolean;2021 readonly asServiceOverweight: {1985 readonly asServiceOverweight: {2051 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2015 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2052 }2016 }205320172054 /** @name PalletXcmCall (206) */2018 /** @name PalletXcmCall (204) */2055 interface PalletXcmCall extends Enum {2019 interface PalletXcmCall extends Enum {2056 readonly isSend: boolean;2020 readonly isSend: boolean;2057 readonly asSend: {2021 readonly asSend: {2113 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2077 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2114 }2078 }211520792116 /** @name XcmVersionedXcm (207) */2080 /** @name XcmVersionedXcm (205) */2117 interface XcmVersionedXcm extends Enum {2081 interface XcmVersionedXcm extends Enum {2118 readonly isV0: boolean;2082 readonly isV0: boolean;2119 readonly asV0: XcmV0Xcm;2083 readonly asV0: XcmV0Xcm;2124 readonly type: 'V0' | 'V1' | 'V2';2088 readonly type: 'V0' | 'V1' | 'V2';2125 }2089 }212620902127 /** @name XcmV0Xcm (208) */2091 /** @name XcmV0Xcm (206) */2128 interface XcmV0Xcm extends Enum {2092 interface XcmV0Xcm extends Enum {2129 readonly isWithdrawAsset: boolean;2093 readonly isWithdrawAsset: boolean;2130 readonly asWithdrawAsset: {2094 readonly asWithdrawAsset: {2187 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2151 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2188 }2152 }218921532190 /** @name XcmV0Order (210) */2154 /** @name XcmV0Order (208) */2191 interface XcmV0Order extends Enum {2155 interface XcmV0Order extends Enum {2192 readonly isNull: boolean;2156 readonly isNull: boolean;2193 readonly isDepositAsset: boolean;2157 readonly isDepositAsset: boolean;2235 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2199 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2236 }2200 }223722012238 /** @name XcmV0Response (212) */2202 /** @name XcmV0Response (210) */2239 interface XcmV0Response extends Enum {2203 interface XcmV0Response extends Enum {2240 readonly isAssets: boolean;2204 readonly isAssets: boolean;2241 readonly asAssets: Vec<XcmV0MultiAsset>;2205 readonly asAssets: Vec<XcmV0MultiAsset>;2242 readonly type: 'Assets';2206 readonly type: 'Assets';2243 }2207 }224422082245 /** @name XcmV1Xcm (213) */2209 /** @name XcmV1Xcm (211) */2246 interface XcmV1Xcm extends Enum {2210 interface XcmV1Xcm extends Enum {2247 readonly isWithdrawAsset: boolean;2211 readonly isWithdrawAsset: boolean;2248 readonly asWithdrawAsset: {2212 readonly asWithdrawAsset: {2311 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2275 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2312 }2276 }231322772314 /** @name XcmV1Order (215) */2278 /** @name XcmV1Order (213) */2315 interface XcmV1Order extends Enum {2279 interface XcmV1Order extends Enum {2316 readonly isNoop: boolean;2280 readonly isNoop: boolean;2317 readonly isDepositAsset: boolean;2281 readonly isDepositAsset: boolean;2361 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2325 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2362 }2326 }236323272364 /** @name XcmV1Response (217) */2328 /** @name XcmV1Response (215) */2365 interface XcmV1Response extends Enum {2329 interface XcmV1Response extends Enum {2366 readonly isAssets: boolean;2330 readonly isAssets: boolean;2367 readonly asAssets: XcmV1MultiassetMultiAssets;2331 readonly asAssets: XcmV1MultiassetMultiAssets;2370 readonly type: 'Assets' | 'Version';2334 readonly type: 'Assets' | 'Version';2371 }2335 }237223362373 /** @name CumulusPalletXcmCall (231) */2337 /** @name CumulusPalletXcmCall (229) */2374 type CumulusPalletXcmCall = Null;2338 type CumulusPalletXcmCall = Null;237523392376 /** @name CumulusPalletDmpQueueCall (232) */2340 /** @name CumulusPalletDmpQueueCall (230) */2377 interface CumulusPalletDmpQueueCall extends Enum {2341 interface CumulusPalletDmpQueueCall extends Enum {2378 readonly isServiceOverweight: boolean;2342 readonly isServiceOverweight: boolean;2379 readonly asServiceOverweight: {2343 readonly asServiceOverweight: {2383 readonly type: 'ServiceOverweight';2347 readonly type: 'ServiceOverweight';2384 }2348 }238523492386 /** @name PalletInflationCall (233) */2350 /** @name PalletInflationCall (231) */2387 interface PalletInflationCall extends Enum {2351 interface PalletInflationCall extends Enum {2388 readonly isStartInflation: boolean;2352 readonly isStartInflation: boolean;2389 readonly asStartInflation: {2353 readonly asStartInflation: {2392 readonly type: 'StartInflation';2356 readonly type: 'StartInflation';2393 }2357 }239423582395 /** @name PalletUniqueCall (234) */2359 /** @name PalletUniqueCall (232) */2396 interface PalletUniqueCall extends Enum {2360 interface PalletUniqueCall extends Enum {2397 readonly isCreateCollection: boolean;2361 readonly isCreateCollection: boolean;2398 readonly asCreateCollection: {2362 readonly asCreateCollection: {2556 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';2520 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';2557 }2521 }255825222559 /** @name UpDataStructsCollectionMode (239) */2523 /** @name UpDataStructsCollectionMode (237) */2560 interface UpDataStructsCollectionMode extends Enum {2524 interface UpDataStructsCollectionMode extends Enum {2561 readonly isNft: boolean;2525 readonly isNft: boolean;2562 readonly isFungible: boolean;2526 readonly isFungible: boolean;2565 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2529 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2566 }2530 }256725312568 /** @name UpDataStructsCreateCollectionData (240) */2532 /** @name UpDataStructsCreateCollectionData (238) */2569 interface UpDataStructsCreateCollectionData extends Struct {2533 interface UpDataStructsCreateCollectionData extends Struct {2570 readonly mode: UpDataStructsCollectionMode;2534 readonly mode: UpDataStructsCollectionMode;2571 readonly access: Option<UpDataStructsAccessMode>;2535 readonly access: Option<UpDataStructsAccessMode>;2579 readonly properties: Vec<UpDataStructsProperty>;2543 readonly properties: Vec<UpDataStructsProperty>;2580 }2544 }258125452582 /** @name UpDataStructsAccessMode (242) */2546 /** @name UpDataStructsAccessMode (240) */2583 interface UpDataStructsAccessMode extends Enum {2547 interface UpDataStructsAccessMode extends Enum {2584 readonly isNormal: boolean;2548 readonly isNormal: boolean;2585 readonly isAllowList: boolean;2549 readonly isAllowList: boolean;2586 readonly type: 'Normal' | 'AllowList';2550 readonly type: 'Normal' | 'AllowList';2587 }2551 }258825522589 /** @name UpDataStructsCollectionLimits (244) */2553 /** @name UpDataStructsCollectionLimits (242) */2590 interface UpDataStructsCollectionLimits extends Struct {2554 interface UpDataStructsCollectionLimits extends Struct {2591 readonly accountTokenOwnershipLimit: Option<u32>;2555 readonly accountTokenOwnershipLimit: Option<u32>;2592 readonly sponsoredDataSize: Option<u32>;2556 readonly sponsoredDataSize: Option<u32>;2599 readonly transfersEnabled: Option<bool>;2563 readonly transfersEnabled: Option<bool>;2600 }2564 }260125652602 /** @name UpDataStructsSponsoringRateLimit (246) */2566 /** @name UpDataStructsSponsoringRateLimit (244) */2603 interface UpDataStructsSponsoringRateLimit extends Enum {2567 interface UpDataStructsSponsoringRateLimit extends Enum {2604 readonly isSponsoringDisabled: boolean;2568 readonly isSponsoringDisabled: boolean;2605 readonly isBlocks: boolean;2569 readonly isBlocks: boolean;2606 readonly asBlocks: u32;2570 readonly asBlocks: u32;2607 readonly type: 'SponsoringDisabled' | 'Blocks';2571 readonly type: 'SponsoringDisabled' | 'Blocks';2608 }2572 }260925732610 /** @name UpDataStructsCollectionPermissions (249) */2574 /** @name UpDataStructsCollectionPermissions (247) */2611 interface UpDataStructsCollectionPermissions extends Struct {2575 interface UpDataStructsCollectionPermissions extends Struct {2612 readonly access: Option<UpDataStructsAccessMode>;2576 readonly access: Option<UpDataStructsAccessMode>;2613 readonly mintMode: Option<bool>;2577 readonly mintMode: Option<bool>;2614 readonly nesting: Option<UpDataStructsNestingPermissions>;2578 readonly nesting: Option<UpDataStructsNestingPermissions>;2615 }2579 }261625802617 /** @name UpDataStructsNestingPermissions (251) */2581 /** @name UpDataStructsNestingPermissions (249) */2618 interface UpDataStructsNestingPermissions extends Struct {2582 interface UpDataStructsNestingPermissions extends Struct {2619 readonly tokenOwner: bool;2583 readonly tokenOwner: bool;2620 readonly collectionAdmin: bool;2584 readonly collectionAdmin: bool;2621 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2585 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2622 }2586 }262325872624 /** @name UpDataStructsOwnerRestrictedSet (253) */2588 /** @name UpDataStructsOwnerRestrictedSet (251) */2625 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2589 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}262625902627 /** @name UpDataStructsPropertyKeyPermission (258) */2591 /** @name UpDataStructsPropertyKeyPermission (256) */2628 interface UpDataStructsPropertyKeyPermission extends Struct {2592 interface UpDataStructsPropertyKeyPermission extends Struct {2629 readonly key: Bytes;2593 readonly key: Bytes;2630 readonly permission: UpDataStructsPropertyPermission;2594 readonly permission: UpDataStructsPropertyPermission;2631 }2595 }263225962633 /** @name UpDataStructsPropertyPermission (259) */2597 /** @name UpDataStructsPropertyPermission (257) */2634 interface UpDataStructsPropertyPermission extends Struct {2598 interface UpDataStructsPropertyPermission extends Struct {2635 readonly mutable: bool;2599 readonly mutable: bool;2636 readonly collectionAdmin: bool;2600 readonly collectionAdmin: bool;2637 readonly tokenOwner: bool;2601 readonly tokenOwner: bool;2638 }2602 }263926032640 /** @name UpDataStructsProperty (262) */2604 /** @name UpDataStructsProperty (260) */2641 interface UpDataStructsProperty extends Struct {2605 interface UpDataStructsProperty extends Struct {2642 readonly key: Bytes;2606 readonly key: Bytes;2643 readonly value: Bytes;2607 readonly value: Bytes;2644 }2608 }264526092646 /** @name UpDataStructsCreateItemData (265) */2610 /** @name UpDataStructsCreateItemData (263) */2647 interface UpDataStructsCreateItemData extends Enum {2611 interface UpDataStructsCreateItemData extends Enum {2648 readonly isNft: boolean;2612 readonly isNft: boolean;2649 readonly asNft: UpDataStructsCreateNftData;2613 readonly asNft: UpDataStructsCreateNftData;2654 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2618 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2655 }2619 }265626202657 /** @name UpDataStructsCreateNftData (266) */2621 /** @name UpDataStructsCreateNftData (264) */2658 interface UpDataStructsCreateNftData extends Struct {2622 interface UpDataStructsCreateNftData extends Struct {2659 readonly properties: Vec<UpDataStructsProperty>;2623 readonly properties: Vec<UpDataStructsProperty>;2660 }2624 }266126252662 /** @name UpDataStructsCreateFungibleData (267) */2626 /** @name UpDataStructsCreateFungibleData (265) */2663 interface UpDataStructsCreateFungibleData extends Struct {2627 interface UpDataStructsCreateFungibleData extends Struct {2664 readonly value: u128;2628 readonly value: u128;2665 }2629 }266626302667 /** @name UpDataStructsCreateReFungibleData (268) */2631 /** @name UpDataStructsCreateReFungibleData (266) */2668 interface UpDataStructsCreateReFungibleData extends Struct {2632 interface UpDataStructsCreateReFungibleData extends Struct {2669 readonly pieces: u128;2633 readonly pieces: u128;2670 readonly properties: Vec<UpDataStructsProperty>;2634 readonly properties: Vec<UpDataStructsProperty>;2671 }2635 }267226362673 /** @name UpDataStructsCreateItemExData (271) */2637 /** @name UpDataStructsCreateItemExData (269) */2674 interface UpDataStructsCreateItemExData extends Enum {2638 interface UpDataStructsCreateItemExData extends Enum {2675 readonly isNft: boolean;2639 readonly isNft: boolean;2676 readonly asNft: Vec<UpDataStructsCreateNftExData>;2640 readonly asNft: Vec<UpDataStructsCreateNftExData>;2683 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2647 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2684 }2648 }268526492686 /** @name UpDataStructsCreateNftExData (273) */2650 /** @name UpDataStructsCreateNftExData (271) */2687 interface UpDataStructsCreateNftExData extends Struct {2651 interface UpDataStructsCreateNftExData extends Struct {2688 readonly properties: Vec<UpDataStructsProperty>;2652 readonly properties: Vec<UpDataStructsProperty>;2689 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2653 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2690 }2654 }269126552692 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2656 /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */2693 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2657 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2694 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2658 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2695 readonly pieces: u128;2659 readonly pieces: u128;2696 readonly properties: Vec<UpDataStructsProperty>;2660 readonly properties: Vec<UpDataStructsProperty>;2697 }2661 }269826622699 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2663 /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */2700 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2664 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2701 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2665 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2702 readonly properties: Vec<UpDataStructsProperty>;2666 readonly properties: Vec<UpDataStructsProperty>;2703 }2667 }270426682705 /** @name PalletUniqueSchedulerV2Call (283) */2669 /** @name PalletConfigurationCall (281) */2706 interface PalletUniqueSchedulerV2Call extends Enum {2670 interface PalletConfigurationCall extends Enum {2707 readonly isSchedule: boolean;2671 readonly isSetWeightToFeeCoefficientOverride: boolean;2708 readonly asSchedule: {2672 readonly asSetWeightToFeeCoefficientOverride: {2709 readonly when: u32;2710 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2673 readonly coeff: Option<u32>;2711 readonly priority: Option<u8>;2712 readonly call: Call;2713 } & Struct;2674 } & Struct;2714 readonly isCancel: boolean;2675 readonly isSetMinGasPriceOverride: boolean;2715 readonly asCancel: {2716 readonly when: u32;2717 readonly index: u32;2718 } & Struct;2719 readonly isScheduleNamed: boolean;2720 readonly asScheduleNamed: {2676 readonly asSetMinGasPriceOverride: {2721 readonly id: U8aFixed;2722 readonly when: u32;2723 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2677 readonly coeff: Option<u64>;2724 readonly priority: Option<u8>;2725 readonly call: Call;2726 } & Struct;2678 } & Struct;2727 readonly isCancelNamed: boolean;2679 readonly isSetXcmAllowedLocations: boolean;2728 readonly asCancelNamed: {2729 readonly id: U8aFixed;2730 } & Struct;2731 readonly isScheduleAfter: boolean;2732 readonly asScheduleAfter: {2680 readonly asSetXcmAllowedLocations: {2733 readonly after: u32;2734 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2681 readonly locations: Option<Vec<XcmV1MultiLocation>>;2735 readonly priority: Option<u8>;2736 readonly call: Call;2737 } & Struct;2682 } & Struct;2738 readonly isScheduleNamedAfter: boolean;2683 readonly isSetAppPromotionConfigurationOverride: boolean;2739 readonly asScheduleNamedAfter: {2684 readonly asSetAppPromotionConfigurationOverride: {2740 readonly id: U8aFixed;2685 readonly configuration: PalletConfigurationAppPromotionConfiguration;2741 readonly after: u32;2742 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2743 readonly priority: Option<u8>;2744 readonly call: Call;2745 } & Struct;2686 } & Struct;2746 readonly isChangeNamedPriority: boolean;2747 readonly asChangeNamedPriority: {2748 readonly id: U8aFixed;2749 readonly priority: u8;2750 } & Struct;2751 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2687 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';2752 }2688 }275326892754 /** @name PalletConfigurationCall (286) */2690 /** @name PalletConfigurationAppPromotionConfiguration (286) */2755 interface PalletConfigurationCall extends Enum {2691 interface PalletConfigurationAppPromotionConfiguration extends Struct {2756 readonly isSetWeightToFeeCoefficientOverride: boolean;2757 readonly asSetWeightToFeeCoefficientOverride: {2692 readonly recalculationInterval: Option<u32>;2758 readonly coeff: Option<u32>;2759 } & Struct;2760 readonly isSetMinGasPriceOverride: boolean;2761 readonly asSetMinGasPriceOverride: {2693 readonly pendingInterval: Option<u32>;2762 readonly coeff: Option<u64>;2763 } & Struct;2764 readonly isSetXcmAllowedLocations: boolean;2765 readonly asSetXcmAllowedLocations: {2694 readonly intervalIncome: Option<Perbill>;2766 readonly locations: Option<Vec<XcmV1MultiLocation>>;2767 } & Struct;2768 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';2695 readonly maxStakersPerCalculation: Option<u8>;2769 }2696 }277026972771 /** @name PalletTemplateTransactionPaymentCall (291) */2698 /** @name PalletTemplateTransactionPaymentCall (289) */2772 type PalletTemplateTransactionPaymentCall = Null;2699 type PalletTemplateTransactionPaymentCall = Null;277327002774 /** @name PalletStructureCall (292) */2701 /** @name PalletStructureCall (290) */2775 type PalletStructureCall = Null;2702 type PalletStructureCall = Null;277627032777 /** @name PalletRmrkCoreCall (293) */2704 /** @name PalletRmrkCoreCall (291) */2778 interface PalletRmrkCoreCall extends Enum {2705 interface PalletRmrkCoreCall extends Enum {2779 readonly isCreateCollection: boolean;2706 readonly isCreateCollection: boolean;2780 readonly asCreateCollection: {2707 readonly asCreateCollection: {2880 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2807 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2881 }2808 }288228092883 /** @name RmrkTraitsResourceResourceTypes (299) */2810 /** @name RmrkTraitsResourceResourceTypes (297) */2884 interface RmrkTraitsResourceResourceTypes extends Enum {2811 interface RmrkTraitsResourceResourceTypes extends Enum {2885 readonly isBasic: boolean;2812 readonly isBasic: boolean;2886 readonly asBasic: RmrkTraitsResourceBasicResource;2813 readonly asBasic: RmrkTraitsResourceBasicResource;2891 readonly type: 'Basic' | 'Composable' | 'Slot';2818 readonly type: 'Basic' | 'Composable' | 'Slot';2892 }2819 }289328202894 /** @name RmrkTraitsResourceBasicResource (301) */2821 /** @name RmrkTraitsResourceBasicResource (299) */2895 interface RmrkTraitsResourceBasicResource extends Struct {2822 interface RmrkTraitsResourceBasicResource extends Struct {2896 readonly src: Option<Bytes>;2823 readonly src: Option<Bytes>;2897 readonly metadata: Option<Bytes>;2824 readonly metadata: Option<Bytes>;2898 readonly license: Option<Bytes>;2825 readonly license: Option<Bytes>;2899 readonly thumb: Option<Bytes>;2826 readonly thumb: Option<Bytes>;2900 }2827 }290128282902 /** @name RmrkTraitsResourceComposableResource (303) */2829 /** @name RmrkTraitsResourceComposableResource (301) */2903 interface RmrkTraitsResourceComposableResource extends Struct {2830 interface RmrkTraitsResourceComposableResource extends Struct {2904 readonly parts: Vec<u32>;2831 readonly parts: Vec<u32>;2905 readonly base: u32;2832 readonly base: u32;2909 readonly thumb: Option<Bytes>;2836 readonly thumb: Option<Bytes>;2910 }2837 }291128382912 /** @name RmrkTraitsResourceSlotResource (304) */2839 /** @name RmrkTraitsResourceSlotResource (302) */2913 interface RmrkTraitsResourceSlotResource extends Struct {2840 interface RmrkTraitsResourceSlotResource extends Struct {2914 readonly base: u32;2841 readonly base: u32;2915 readonly src: Option<Bytes>;2842 readonly src: Option<Bytes>;2919 readonly thumb: Option<Bytes>;2846 readonly thumb: Option<Bytes>;2920 }2847 }292128482922 /** @name PalletRmrkEquipCall (307) */2849 /** @name PalletRmrkEquipCall (305) */2923 interface PalletRmrkEquipCall extends Enum {2850 interface PalletRmrkEquipCall extends Enum {2924 readonly isCreateBase: boolean;2851 readonly isCreateBase: boolean;2925 readonly asCreateBase: {2852 readonly asCreateBase: {2941 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2868 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2942 }2869 }294328702944 /** @name RmrkTraitsPartPartType (310) */2871 /** @name RmrkTraitsPartPartType (308) */2945 interface RmrkTraitsPartPartType extends Enum {2872 interface RmrkTraitsPartPartType extends Enum {2946 readonly isFixedPart: boolean;2873 readonly isFixedPart: boolean;2947 readonly asFixedPart: RmrkTraitsPartFixedPart;2874 readonly asFixedPart: RmrkTraitsPartFixedPart;2950 readonly type: 'FixedPart' | 'SlotPart';2877 readonly type: 'FixedPart' | 'SlotPart';2951 }2878 }295228792953 /** @name RmrkTraitsPartFixedPart (312) */2880 /** @name RmrkTraitsPartFixedPart (310) */2954 interface RmrkTraitsPartFixedPart extends Struct {2881 interface RmrkTraitsPartFixedPart extends Struct {2955 readonly id: u32;2882 readonly id: u32;2956 readonly z: u32;2883 readonly z: u32;2957 readonly src: Bytes;2884 readonly src: Bytes;2958 }2885 }295928862960 /** @name RmrkTraitsPartSlotPart (313) */2887 /** @name RmrkTraitsPartSlotPart (311) */2961 interface RmrkTraitsPartSlotPart extends Struct {2888 interface RmrkTraitsPartSlotPart extends Struct {2962 readonly id: u32;2889 readonly id: u32;2963 readonly equippable: RmrkTraitsPartEquippableList;2890 readonly equippable: RmrkTraitsPartEquippableList;2964 readonly src: Bytes;2891 readonly src: Bytes;2965 readonly z: u32;2892 readonly z: u32;2966 }2893 }296728942968 /** @name RmrkTraitsPartEquippableList (314) */2895 /** @name RmrkTraitsPartEquippableList (312) */2969 interface RmrkTraitsPartEquippableList extends Enum {2896 interface RmrkTraitsPartEquippableList extends Enum {2970 readonly isAll: boolean;2897 readonly isAll: boolean;2971 readonly isEmpty: boolean;2898 readonly isEmpty: boolean;2974 readonly type: 'All' | 'Empty' | 'Custom';2901 readonly type: 'All' | 'Empty' | 'Custom';2975 }2902 }297629032977 /** @name RmrkTraitsTheme (316) */2904 /** @name RmrkTraitsTheme (314) */2978 interface RmrkTraitsTheme extends Struct {2905 interface RmrkTraitsTheme extends Struct {2979 readonly name: Bytes;2906 readonly name: Bytes;2980 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2907 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2981 readonly inherit: bool;2908 readonly inherit: bool;2982 }2909 }298329102984 /** @name RmrkTraitsThemeThemeProperty (318) */2911 /** @name RmrkTraitsThemeThemeProperty (316) */2985 interface RmrkTraitsThemeThemeProperty extends Struct {2912 interface RmrkTraitsThemeThemeProperty extends Struct {2986 readonly key: Bytes;2913 readonly key: Bytes;2987 readonly value: Bytes;2914 readonly value: Bytes;2988 }2915 }298929162990 /** @name PalletAppPromotionCall (320) */2917 /** @name PalletAppPromotionCall (318) */2991 interface PalletAppPromotionCall extends Enum {2918 interface PalletAppPromotionCall extends Enum {2992 readonly isSetAdminAddress: boolean;2919 readonly isSetAdminAddress: boolean;2993 readonly asSetAdminAddress: {2920 readonly asSetAdminAddress: {3021 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2948 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3022 }2949 }302329503024 /** @name PalletForeignAssetsModuleCall (321) */2951 /** @name PalletForeignAssetsModuleCall (319) */3025 interface PalletForeignAssetsModuleCall extends Enum {2952 interface PalletForeignAssetsModuleCall extends Enum {3026 readonly isRegisterForeignAsset: boolean;2953 readonly isRegisterForeignAsset: boolean;3027 readonly asRegisterForeignAsset: {2954 readonly asRegisterForeignAsset: {3038 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2965 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3039 }2966 }304029673041 /** @name PalletEvmCall (322) */2968 /** @name PalletEvmCall (320) */3042 interface PalletEvmCall extends Enum {2969 interface PalletEvmCall extends Enum {3043 readonly isWithdraw: boolean;2970 readonly isWithdraw: boolean;3044 readonly asWithdraw: {2971 readonly asWithdraw: {3083 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3010 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3084 }3011 }308530123086 /** @name PalletEthereumCall (328) */3013 /** @name PalletEthereumCall (326) */3087 interface PalletEthereumCall extends Enum {3014 interface PalletEthereumCall extends Enum {3088 readonly isTransact: boolean;3015 readonly isTransact: boolean;3089 readonly asTransact: {3016 readonly asTransact: {3092 readonly type: 'Transact';3019 readonly type: 'Transact';3093 }3020 }309430213095 /** @name EthereumTransactionTransactionV2 (329) */3022 /** @name EthereumTransactionTransactionV2 (327) */3096 interface EthereumTransactionTransactionV2 extends Enum {3023 interface EthereumTransactionTransactionV2 extends Enum {3097 readonly isLegacy: boolean;3024 readonly isLegacy: boolean;3098 readonly asLegacy: EthereumTransactionLegacyTransaction;3025 readonly asLegacy: EthereumTransactionLegacyTransaction;3103 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3030 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3104 }3031 }310530323106 /** @name EthereumTransactionLegacyTransaction (330) */3033 /** @name EthereumTransactionLegacyTransaction (328) */3107 interface EthereumTransactionLegacyTransaction extends Struct {3034 interface EthereumTransactionLegacyTransaction extends Struct {3108 readonly nonce: U256;3035 readonly nonce: U256;3109 readonly gasPrice: U256;3036 readonly gasPrice: U256;3114 readonly signature: EthereumTransactionTransactionSignature;3041 readonly signature: EthereumTransactionTransactionSignature;3115 }3042 }311630433117 /** @name EthereumTransactionTransactionAction (331) */3044 /** @name EthereumTransactionTransactionAction (329) */3118 interface EthereumTransactionTransactionAction extends Enum {3045 interface EthereumTransactionTransactionAction extends Enum {3119 readonly isCall: boolean;3046 readonly isCall: boolean;3120 readonly asCall: H160;3047 readonly asCall: H160;3121 readonly isCreate: boolean;3048 readonly isCreate: boolean;3122 readonly type: 'Call' | 'Create';3049 readonly type: 'Call' | 'Create';3123 }3050 }312430513125 /** @name EthereumTransactionTransactionSignature (332) */3052 /** @name EthereumTransactionTransactionSignature (330) */3126 interface EthereumTransactionTransactionSignature extends Struct {3053 interface EthereumTransactionTransactionSignature extends Struct {3127 readonly v: u64;3054 readonly v: u64;3128 readonly r: H256;3055 readonly r: H256;3129 readonly s: H256;3056 readonly s: H256;3130 }3057 }313130583132 /** @name EthereumTransactionEip2930Transaction (334) */3059 /** @name EthereumTransactionEip2930Transaction (332) */3133 interface EthereumTransactionEip2930Transaction extends Struct {3060 interface EthereumTransactionEip2930Transaction extends Struct {3134 readonly chainId: u64;3061 readonly chainId: u64;3135 readonly nonce: U256;3062 readonly nonce: U256;3144 readonly s: H256;3071 readonly s: H256;3145 }3072 }314630733147 /** @name EthereumTransactionAccessListItem (336) */3074 /** @name EthereumTransactionAccessListItem (334) */3148 interface EthereumTransactionAccessListItem extends Struct {3075 interface EthereumTransactionAccessListItem extends Struct {3149 readonly address: H160;3076 readonly address: H160;3150 readonly storageKeys: Vec<H256>;3077 readonly storageKeys: Vec<H256>;3151 }3078 }315230793153 /** @name EthereumTransactionEip1559Transaction (337) */3080 /** @name EthereumTransactionEip1559Transaction (335) */3154 interface EthereumTransactionEip1559Transaction extends Struct {3081 interface EthereumTransactionEip1559Transaction extends Struct {3155 readonly chainId: u64;3082 readonly chainId: u64;3156 readonly nonce: U256;3083 readonly nonce: U256;3166 readonly s: H256;3093 readonly s: H256;3167 }3094 }316830953169 /** @name PalletEvmMigrationCall (338) */3096 /** @name PalletEvmMigrationCall (336) */3170 interface PalletEvmMigrationCall extends Enum {3097 interface PalletEvmMigrationCall extends Enum {3171 readonly isBegin: boolean;3098 readonly isBegin: boolean;3172 readonly asBegin: {3099 readonly asBegin: {3193 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3120 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3194 }3121 }319531223196 /** @name PalletMaintenanceCall (342) */3123 /** @name PalletMaintenanceCall (340) */3197 interface PalletMaintenanceCall extends Enum {3124 interface PalletMaintenanceCall extends Enum {3198 readonly isEnable: boolean;3125 readonly isEnable: boolean;3199 readonly isDisable: boolean;3126 readonly isDisable: boolean;3200 readonly type: 'Enable' | 'Disable';3127 readonly type: 'Enable' | 'Disable';3201 }3128 }320231293203 /** @name PalletTestUtilsCall (343) */3130 /** @name PalletTestUtilsCall (341) */3204 interface PalletTestUtilsCall extends Enum {3131 interface PalletTestUtilsCall extends Enum {3205 readonly isEnable: boolean;3132 readonly isEnable: boolean;3206 readonly isSetTestValue: boolean;3133 readonly isSetTestValue: boolean;3212 readonly value: u32;3139 readonly value: u32;3213 } & Struct;3140 } & Struct;3214 readonly isIncTestValue: boolean;3141 readonly isIncTestValue: boolean;3215 readonly isSelfCancelingInc: boolean;3216 readonly asSelfCancelingInc: {3217 readonly id: U8aFixed;3218 readonly maxTestValue: u32;3219 } & Struct;3220 readonly isJustTakeFee: boolean;3142 readonly isJustTakeFee: boolean;3221 readonly isBatchAll: boolean;3143 readonly isBatchAll: boolean;3222 readonly asBatchAll: {3144 readonly asBatchAll: {3223 readonly calls: Vec<Call>;3145 readonly calls: Vec<Call>;3224 } & Struct;3146 } & Struct;3225 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3147 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3226 }3148 }322731493228 /** @name PalletSudoError (345) */3150 /** @name PalletSudoError (343) */3229 interface PalletSudoError extends Enum {3151 interface PalletSudoError extends Enum {3230 readonly isRequireSudo: boolean;3152 readonly isRequireSudo: boolean;3231 readonly type: 'RequireSudo';3153 readonly type: 'RequireSudo';3232 }3154 }323331553234 /** @name OrmlVestingModuleError (347) */3156 /** @name OrmlVestingModuleError (345) */3235 interface OrmlVestingModuleError extends Enum {3157 interface OrmlVestingModuleError extends Enum {3236 readonly isZeroVestingPeriod: boolean;3158 readonly isZeroVestingPeriod: boolean;3237 readonly isZeroVestingPeriodCount: boolean;3159 readonly isZeroVestingPeriodCount: boolean;3242 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3164 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3243 }3165 }324431663245 /** @name OrmlXtokensModuleError (348) */3167 /** @name OrmlXtokensModuleError (346) */3246 interface OrmlXtokensModuleError extends Enum {3168 interface OrmlXtokensModuleError extends Enum {3247 readonly isAssetHasNoReserve: boolean;3169 readonly isAssetHasNoReserve: boolean;3248 readonly isNotCrossChainTransfer: boolean;3170 readonly isNotCrossChainTransfer: boolean;3266 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3188 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3267 }3189 }326831903269 /** @name OrmlTokensBalanceLock (351) */3191 /** @name OrmlTokensBalanceLock (349) */3270 interface OrmlTokensBalanceLock extends Struct {3192 interface OrmlTokensBalanceLock extends Struct {3271 readonly id: U8aFixed;3193 readonly id: U8aFixed;3272 readonly amount: u128;3194 readonly amount: u128;3273 }3195 }327431963275 /** @name OrmlTokensAccountData (353) */3197 /** @name OrmlTokensAccountData (351) */3276 interface OrmlTokensAccountData extends Struct {3198 interface OrmlTokensAccountData extends Struct {3277 readonly free: u128;3199 readonly free: u128;3278 readonly reserved: u128;3200 readonly reserved: u128;3279 readonly frozen: u128;3201 readonly frozen: u128;3280 }3202 }328132033282 /** @name OrmlTokensReserveData (355) */3204 /** @name OrmlTokensReserveData (353) */3283 interface OrmlTokensReserveData extends Struct {3205 interface OrmlTokensReserveData extends Struct {3284 readonly id: Null;3206 readonly id: Null;3285 readonly amount: u128;3207 readonly amount: u128;3286 }3208 }328732093288 /** @name OrmlTokensModuleError (357) */3210 /** @name OrmlTokensModuleError (355) */3289 interface OrmlTokensModuleError extends Enum {3211 interface OrmlTokensModuleError extends Enum {3290 readonly isBalanceTooLow: boolean;3212 readonly isBalanceTooLow: boolean;3291 readonly isAmountIntoBalanceFailed: boolean;3213 readonly isAmountIntoBalanceFailed: boolean;3298 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3220 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3299 }3221 }330032223301 /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */3223 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3302 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3224 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3303 readonly sender: u32;3225 readonly sender: u32;3304 readonly state: CumulusPalletXcmpQueueInboundState;3226 readonly state: CumulusPalletXcmpQueueInboundState;3305 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3227 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3306 }3228 }330732293308 /** @name CumulusPalletXcmpQueueInboundState (360) */3230 /** @name CumulusPalletXcmpQueueInboundState (358) */3309 interface CumulusPalletXcmpQueueInboundState extends Enum {3231 interface CumulusPalletXcmpQueueInboundState extends Enum {3310 readonly isOk: boolean;3232 readonly isOk: boolean;3311 readonly isSuspended: boolean;3233 readonly isSuspended: boolean;3312 readonly type: 'Ok' | 'Suspended';3234 readonly type: 'Ok' | 'Suspended';3313 }3235 }331432363315 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */3237 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3316 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3238 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3317 readonly isConcatenatedVersionedXcm: boolean;3239 readonly isConcatenatedVersionedXcm: boolean;3318 readonly isConcatenatedEncodedBlob: boolean;3240 readonly isConcatenatedEncodedBlob: boolean;3319 readonly isSignals: boolean;3241 readonly isSignals: boolean;3320 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3242 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3321 }3243 }332232443323 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */3245 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3324 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3246 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3325 readonly recipient: u32;3247 readonly recipient: u32;3326 readonly state: CumulusPalletXcmpQueueOutboundState;3248 readonly state: CumulusPalletXcmpQueueOutboundState;3329 readonly lastIndex: u16;3251 readonly lastIndex: u16;3330 }3252 }333132533332 /** @name CumulusPalletXcmpQueueOutboundState (367) */3254 /** @name CumulusPalletXcmpQueueOutboundState (365) */3333 interface CumulusPalletXcmpQueueOutboundState extends Enum {3255 interface CumulusPalletXcmpQueueOutboundState extends Enum {3334 readonly isOk: boolean;3256 readonly isOk: boolean;3335 readonly isSuspended: boolean;3257 readonly isSuspended: boolean;3336 readonly type: 'Ok' | 'Suspended';3258 readonly type: 'Ok' | 'Suspended';3337 }3259 }333832603339 /** @name CumulusPalletXcmpQueueQueueConfigData (369) */3261 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3340 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3262 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3341 readonly suspendThreshold: u32;3263 readonly suspendThreshold: u32;3342 readonly dropThreshold: u32;3264 readonly dropThreshold: u32;3346 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3268 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3347 }3269 }334832703349 /** @name CumulusPalletXcmpQueueError (371) */3271 /** @name CumulusPalletXcmpQueueError (369) */3350 interface CumulusPalletXcmpQueueError extends Enum {3272 interface CumulusPalletXcmpQueueError extends Enum {3351 readonly isFailedToSend: boolean;3273 readonly isFailedToSend: boolean;3352 readonly isBadXcmOrigin: boolean;3274 readonly isBadXcmOrigin: boolean;3356 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3278 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3357 }3279 }335832803359 /** @name PalletXcmError (372) */3281 /** @name PalletXcmError (370) */3360 interface PalletXcmError extends Enum {3282 interface PalletXcmError extends Enum {3361 readonly isUnreachable: boolean;3283 readonly isUnreachable: boolean;3362 readonly isSendFailure: boolean;3284 readonly isSendFailure: boolean;3374 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3296 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3375 }3297 }337632983377 /** @name CumulusPalletXcmError (373) */3299 /** @name CumulusPalletXcmError (371) */3378 type CumulusPalletXcmError = Null;3300 type CumulusPalletXcmError = Null;337933013380 /** @name CumulusPalletDmpQueueConfigData (374) */3302 /** @name CumulusPalletDmpQueueConfigData (372) */3381 interface CumulusPalletDmpQueueConfigData extends Struct {3303 interface CumulusPalletDmpQueueConfigData extends Struct {3382 readonly maxIndividual: SpWeightsWeightV2Weight;3304 readonly maxIndividual: SpWeightsWeightV2Weight;3383 }3305 }338433063385 /** @name CumulusPalletDmpQueuePageIndexData (375) */3307 /** @name CumulusPalletDmpQueuePageIndexData (373) */3386 interface CumulusPalletDmpQueuePageIndexData extends Struct {3308 interface CumulusPalletDmpQueuePageIndexData extends Struct {3387 readonly beginUsed: u32;3309 readonly beginUsed: u32;3388 readonly endUsed: u32;3310 readonly endUsed: u32;3389 readonly overweightCount: u64;3311 readonly overweightCount: u64;3390 }3312 }339133133392 /** @name CumulusPalletDmpQueueError (378) */3314 /** @name CumulusPalletDmpQueueError (376) */3393 interface CumulusPalletDmpQueueError extends Enum {3315 interface CumulusPalletDmpQueueError extends Enum {3394 readonly isUnknown: boolean;3316 readonly isUnknown: boolean;3395 readonly isOverLimit: boolean;3317 readonly isOverLimit: boolean;3396 readonly type: 'Unknown' | 'OverLimit';3318 readonly type: 'Unknown' | 'OverLimit';3397 }3319 }339833203399 /** @name PalletUniqueError (382) */3321 /** @name PalletUniqueError (380) */3400 interface PalletUniqueError extends Enum {3322 interface PalletUniqueError extends Enum {3401 readonly isCollectionDecimalPointLimitExceeded: boolean;3323 readonly isCollectionDecimalPointLimitExceeded: boolean;3402 readonly isEmptyArgument: boolean;3324 readonly isEmptyArgument: boolean;3403 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3325 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3404 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3326 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3405 }3327 }34063407 /** @name PalletUniqueSchedulerV2BlockAgenda (383) */3408 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3409 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3410 readonly freePlaces: u32;3411 }34123413 /** @name PalletUniqueSchedulerV2Scheduled (386) */3414 interface PalletUniqueSchedulerV2Scheduled extends Struct {3415 readonly maybeId: Option<U8aFixed>;3416 readonly priority: u8;3417 readonly call: PalletUniqueSchedulerV2ScheduledCall;3418 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3419 readonly origin: OpalRuntimeOriginCaller;3420 }34213422 /** @name PalletUniqueSchedulerV2ScheduledCall (387) */3423 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3424 readonly isInline: boolean;3425 readonly asInline: Bytes;3426 readonly isPreimageLookup: boolean;3427 readonly asPreimageLookup: {3428 readonly hash_: H256;3429 readonly unboundedLen: u32;3430 } & Struct;3431 readonly type: 'Inline' | 'PreimageLookup';3432 }34333434 /** @name OpalRuntimeOriginCaller (389) */3435 interface OpalRuntimeOriginCaller extends Enum {3436 readonly isSystem: boolean;3437 readonly asSystem: FrameSupportDispatchRawOrigin;3438 readonly isVoid: boolean;3439 readonly isPolkadotXcm: boolean;3440 readonly asPolkadotXcm: PalletXcmOrigin;3441 readonly isCumulusXcm: boolean;3442 readonly asCumulusXcm: CumulusPalletXcmOrigin;3443 readonly isEthereum: boolean;3444 readonly asEthereum: PalletEthereumRawOrigin;3445 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3446 }34473448 /** @name FrameSupportDispatchRawOrigin (390) */3449 interface FrameSupportDispatchRawOrigin extends Enum {3450 readonly isRoot: boolean;3451 readonly isSigned: boolean;3452 readonly asSigned: AccountId32;3453 readonly isNone: boolean;3454 readonly type: 'Root' | 'Signed' | 'None';3455 }34563457 /** @name PalletXcmOrigin (391) */3458 interface PalletXcmOrigin extends Enum {3459 readonly isXcm: boolean;3460 readonly asXcm: XcmV1MultiLocation;3461 readonly isResponse: boolean;3462 readonly asResponse: XcmV1MultiLocation;3463 readonly type: 'Xcm' | 'Response';3464 }34653466 /** @name CumulusPalletXcmOrigin (392) */3467 interface CumulusPalletXcmOrigin extends Enum {3468 readonly isRelay: boolean;3469 readonly isSiblingParachain: boolean;3470 readonly asSiblingParachain: u32;3471 readonly type: 'Relay' | 'SiblingParachain';3472 }34733474 /** @name PalletEthereumRawOrigin (393) */3475 interface PalletEthereumRawOrigin extends Enum {3476 readonly isEthereumTransaction: boolean;3477 readonly asEthereumTransaction: H160;3478 readonly type: 'EthereumTransaction';3479 }34803481 /** @name SpCoreVoid (394) */3482 type SpCoreVoid = Null;34833484 /** @name PalletUniqueSchedulerV2Error (396) */3485 interface PalletUniqueSchedulerV2Error extends Enum {3486 readonly isFailedToSchedule: boolean;3487 readonly isAgendaIsExhausted: boolean;3488 readonly isScheduledCallCorrupted: boolean;3489 readonly isPreimageNotFound: boolean;3490 readonly isTooBigScheduledCall: boolean;3491 readonly isNotFound: boolean;3492 readonly isTargetBlockNumberInPast: boolean;3493 readonly isNamed: boolean;3494 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3495 }349633283497 /** @name PalletConfigurationError (400) */3329 /** @name PalletConfigurationError (381) */3498 interface PalletConfigurationError extends Enum {3330 interface PalletConfigurationError extends Enum {3499 readonly isInconsistentConfiguration: boolean;3331 readonly isInconsistentConfiguration: boolean;3500 readonly type: 'InconsistentConfiguration';3332 readonly type: 'InconsistentConfiguration';3501 }3333 }350233343503 /** @name UpDataStructsCollection (401) */3335 /** @name UpDataStructsCollection (382) */3504 interface UpDataStructsCollection extends Struct {3336 interface UpDataStructsCollection extends Struct {3505 readonly owner: AccountId32;3337 readonly owner: AccountId32;3506 readonly mode: UpDataStructsCollectionMode;3338 readonly mode: UpDataStructsCollectionMode;3513 readonly flags: U8aFixed;3345 readonly flags: U8aFixed;3514 }3346 }351533473516 /** @name UpDataStructsSponsorshipStateAccountId32 (402) */3348 /** @name UpDataStructsSponsorshipStateAccountId32 (383) */3517 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3349 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3518 readonly isDisabled: boolean;3350 readonly isDisabled: boolean;3519 readonly isUnconfirmed: boolean;3351 readonly isUnconfirmed: boolean;3523 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3355 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3524 }3356 }352533573526 /** @name UpDataStructsProperties (404) */3358 /** @name UpDataStructsProperties (385) */3527 interface UpDataStructsProperties extends Struct {3359 interface UpDataStructsProperties extends Struct {3528 readonly map: UpDataStructsPropertiesMapBoundedVec;3360 readonly map: UpDataStructsPropertiesMapBoundedVec;3529 readonly consumedSpace: u32;3361 readonly consumedSpace: u32;3530 readonly spaceLimit: u32;3362 readonly spaceLimit: u32;3531 }3363 }353233643533 /** @name UpDataStructsPropertiesMapBoundedVec (405) */3365 /** @name UpDataStructsPropertiesMapBoundedVec (386) */3534 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3366 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}353533673536 /** @name UpDataStructsPropertiesMapPropertyPermission (410) */3368 /** @name UpDataStructsPropertiesMapPropertyPermission (391) */3537 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3369 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}353833703539 /** @name UpDataStructsCollectionStats (417) */3371 /** @name UpDataStructsCollectionStats (398) */3540 interface UpDataStructsCollectionStats extends Struct {3372 interface UpDataStructsCollectionStats extends Struct {3541 readonly created: u32;3373 readonly created: u32;3542 readonly destroyed: u32;3374 readonly destroyed: u32;3543 readonly alive: u32;3375 readonly alive: u32;3544 }3376 }354533773546 /** @name UpDataStructsTokenChild (418) */3378 /** @name UpDataStructsTokenChild (399) */3547 interface UpDataStructsTokenChild extends Struct {3379 interface UpDataStructsTokenChild extends Struct {3548 readonly token: u32;3380 readonly token: u32;3549 readonly collection: u32;3381 readonly collection: u32;3550 }3382 }355133833552 /** @name PhantomTypeUpDataStructs (419) */3384 /** @name PhantomTypeUpDataStructs (400) */3553 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3385 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}355433863555 /** @name UpDataStructsTokenData (421) */3387 /** @name UpDataStructsTokenData (402) */3556 interface UpDataStructsTokenData extends Struct {3388 interface UpDataStructsTokenData extends Struct {3557 readonly properties: Vec<UpDataStructsProperty>;3389 readonly properties: Vec<UpDataStructsProperty>;3558 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3390 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3559 readonly pieces: u128;3391 readonly pieces: u128;3560 }3392 }356133933562 /** @name UpDataStructsRpcCollection (423) */3394 /** @name UpDataStructsRpcCollection (404) */3563 interface UpDataStructsRpcCollection extends Struct {3395 interface UpDataStructsRpcCollection extends Struct {3564 readonly owner: AccountId32;3396 readonly owner: AccountId32;3565 readonly mode: UpDataStructsCollectionMode;3397 readonly mode: UpDataStructsCollectionMode;3575 readonly flags: UpDataStructsRpcCollectionFlags;3407 readonly flags: UpDataStructsRpcCollectionFlags;3576 }3408 }357734093578 /** @name UpDataStructsRpcCollectionFlags (424) */3410 /** @name UpDataStructsRpcCollectionFlags (405) */3579 interface UpDataStructsRpcCollectionFlags extends Struct {3411 interface UpDataStructsRpcCollectionFlags extends Struct {3580 readonly foreign: bool;3412 readonly foreign: bool;3581 readonly erc721metadata: bool;3413 readonly erc721metadata: bool;3582 }3414 }358334153584 /** @name RmrkTraitsCollectionCollectionInfo (425) */3416 /** @name RmrkTraitsCollectionCollectionInfo (406) */3585 interface RmrkTraitsCollectionCollectionInfo extends Struct {3417 interface RmrkTraitsCollectionCollectionInfo extends Struct {3586 readonly issuer: AccountId32;3418 readonly issuer: AccountId32;3587 readonly metadata: Bytes;3419 readonly metadata: Bytes;3590 readonly nftsCount: u32;3422 readonly nftsCount: u32;3591 }3423 }359234243593 /** @name RmrkTraitsNftNftInfo (426) */3425 /** @name RmrkTraitsNftNftInfo (407) */3594 interface RmrkTraitsNftNftInfo extends Struct {3426 interface RmrkTraitsNftNftInfo extends Struct {3595 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3427 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3596 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3428 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3599 readonly pending: bool;3431 readonly pending: bool;3600 }3432 }360134333602 /** @name RmrkTraitsNftRoyaltyInfo (428) */3434 /** @name RmrkTraitsNftRoyaltyInfo (409) */3603 interface RmrkTraitsNftRoyaltyInfo extends Struct {3435 interface RmrkTraitsNftRoyaltyInfo extends Struct {3604 readonly recipient: AccountId32;3436 readonly recipient: AccountId32;3605 readonly amount: Permill;3437 readonly amount: Permill;3606 }3438 }360734393608 /** @name RmrkTraitsResourceResourceInfo (429) */3440 /** @name RmrkTraitsResourceResourceInfo (410) */3609 interface RmrkTraitsResourceResourceInfo extends Struct {3441 interface RmrkTraitsResourceResourceInfo extends Struct {3610 readonly id: u32;3442 readonly id: u32;3611 readonly resource: RmrkTraitsResourceResourceTypes;3443 readonly resource: RmrkTraitsResourceResourceTypes;3612 readonly pending: bool;3444 readonly pending: bool;3613 readonly pendingRemoval: bool;3445 readonly pendingRemoval: bool;3614 }3446 }361534473616 /** @name RmrkTraitsPropertyPropertyInfo (430) */3448 /** @name RmrkTraitsPropertyPropertyInfo (411) */3617 interface RmrkTraitsPropertyPropertyInfo extends Struct {3449 interface RmrkTraitsPropertyPropertyInfo extends Struct {3618 readonly key: Bytes;3450 readonly key: Bytes;3619 readonly value: Bytes;3451 readonly value: Bytes;3620 }3452 }362134533622 /** @name RmrkTraitsBaseBaseInfo (431) */3454 /** @name RmrkTraitsBaseBaseInfo (412) */3623 interface RmrkTraitsBaseBaseInfo extends Struct {3455 interface RmrkTraitsBaseBaseInfo extends Struct {3624 readonly issuer: AccountId32;3456 readonly issuer: AccountId32;3625 readonly baseType: Bytes;3457 readonly baseType: Bytes;3626 readonly symbol: Bytes;3458 readonly symbol: Bytes;3627 }3459 }362834603629 /** @name RmrkTraitsNftNftChild (432) */3461 /** @name RmrkTraitsNftNftChild (413) */3630 interface RmrkTraitsNftNftChild extends Struct {3462 interface RmrkTraitsNftNftChild extends Struct {3631 readonly collectionId: u32;3463 readonly collectionId: u32;3632 readonly nftId: u32;3464 readonly nftId: u32;3633 }3465 }363434663635 /** @name PalletCommonError (434) */3467 /** @name PalletCommonError (415) */3636 interface PalletCommonError extends Enum {3468 interface PalletCommonError extends Enum {3637 readonly isCollectionNotFound: boolean;3469 readonly isCollectionNotFound: boolean;3638 readonly isMustBeTokenOwner: boolean;3470 readonly isMustBeTokenOwner: boolean;3673 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';3505 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';3674 }3506 }367535073676 /** @name PalletFungibleError (436) */3508 /** @name PalletFungibleError (417) */3677 interface PalletFungibleError extends Enum {3509 interface PalletFungibleError extends Enum {3678 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3510 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3679 readonly isFungibleItemsHaveNoId: boolean;3511 readonly isFungibleItemsHaveNoId: boolean;3684 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3516 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3685 }3517 }368635183687 /** @name PalletRefungibleItemData (437) */3519 /** @name PalletRefungibleItemData (418) */3688 interface PalletRefungibleItemData extends Struct {3520 interface PalletRefungibleItemData extends Struct {3689 readonly constData: Bytes;3521 readonly constData: Bytes;3690 }3522 }369135233692 /** @name PalletRefungibleError (442) */3524 /** @name PalletRefungibleError (423) */3693 interface PalletRefungibleError extends Enum {3525 interface PalletRefungibleError extends Enum {3694 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3526 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3695 readonly isWrongRefungiblePieces: boolean;3527 readonly isWrongRefungiblePieces: boolean;3699 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3531 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3700 }3532 }370135333702 /** @name PalletNonfungibleItemData (443) */3534 /** @name PalletNonfungibleItemData (424) */3703 interface PalletNonfungibleItemData extends Struct {3535 interface PalletNonfungibleItemData extends Struct {3704 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3536 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3705 }3537 }370635383707 /** @name UpDataStructsPropertyScope (445) */3539 /** @name UpDataStructsPropertyScope (426) */3708 interface UpDataStructsPropertyScope extends Enum {3540 interface UpDataStructsPropertyScope extends Enum {3709 readonly isNone: boolean;3541 readonly isNone: boolean;3710 readonly isRmrk: boolean;3542 readonly isRmrk: boolean;3711 readonly type: 'None' | 'Rmrk';3543 readonly type: 'None' | 'Rmrk';3712 }3544 }371335453714 /** @name PalletNonfungibleError (447) */3546 /** @name PalletNonfungibleError (428) */3715 interface PalletNonfungibleError extends Enum {3547 interface PalletNonfungibleError extends Enum {3716 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3548 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3717 readonly isNonfungibleItemsHaveNoAmount: boolean;3549 readonly isNonfungibleItemsHaveNoAmount: boolean;3718 readonly isCantBurnNftWithChildren: boolean;3550 readonly isCantBurnNftWithChildren: boolean;3719 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3551 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3720 }3552 }372135533722 /** @name PalletStructureError (448) */3554 /** @name PalletStructureError (429) */3723 interface PalletStructureError extends Enum {3555 interface PalletStructureError extends Enum {3724 readonly isOuroborosDetected: boolean;3556 readonly isOuroborosDetected: boolean;3725 readonly isDepthLimit: boolean;3557 readonly isDepthLimit: boolean;3728 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3560 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3729 }3561 }373035623731 /** @name PalletRmrkCoreError (449) */3563 /** @name PalletRmrkCoreError (430) */3732 interface PalletRmrkCoreError extends Enum {3564 interface PalletRmrkCoreError extends Enum {3733 readonly isCorruptedCollectionType: boolean;3565 readonly isCorruptedCollectionType: boolean;3734 readonly isRmrkPropertyKeyIsTooLong: boolean;3566 readonly isRmrkPropertyKeyIsTooLong: boolean;3752 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3584 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3753 }3585 }375435863755 /** @name PalletRmrkEquipError (451) */3587 /** @name PalletRmrkEquipError (432) */3756 interface PalletRmrkEquipError extends Enum {3588 interface PalletRmrkEquipError extends Enum {3757 readonly isPermissionError: boolean;3589 readonly isPermissionError: boolean;3758 readonly isNoAvailableBaseId: boolean;3590 readonly isNoAvailableBaseId: boolean;3764 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3596 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3765 }3597 }376635983767 /** @name PalletAppPromotionError (457) */3599 /** @name PalletAppPromotionError (438) */3768 interface PalletAppPromotionError extends Enum {3600 interface PalletAppPromotionError extends Enum {3769 readonly isAdminNotSet: boolean;3601 readonly isAdminNotSet: boolean;3770 readonly isNoPermission: boolean;3602 readonly isNoPermission: boolean;3775 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3607 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3776 }3608 }377736093778 /** @name PalletForeignAssetsModuleError (458) */3610 /** @name PalletForeignAssetsModuleError (439) */3779 interface PalletForeignAssetsModuleError extends Enum {3611 interface PalletForeignAssetsModuleError extends Enum {3780 readonly isBadLocation: boolean;3612 readonly isBadLocation: boolean;3781 readonly isMultiLocationExisted: boolean;3613 readonly isMultiLocationExisted: boolean;3784 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3616 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3785 }3617 }378636183787 /** @name PalletEvmError (460) */3619 /** @name PalletEvmError (441) */3788 interface PalletEvmError extends Enum {3620 interface PalletEvmError extends Enum {3789 readonly isBalanceLow: boolean;3621 readonly isBalanceLow: boolean;3790 readonly isFeeOverflow: boolean;3622 readonly isFeeOverflow: boolean;3799 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3631 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3800 }3632 }380136333802 /** @name FpRpcTransactionStatus (463) */3634 /** @name FpRpcTransactionStatus (444) */3803 interface FpRpcTransactionStatus extends Struct {3635 interface FpRpcTransactionStatus extends Struct {3804 readonly transactionHash: H256;3636 readonly transactionHash: H256;3805 readonly transactionIndex: u32;3637 readonly transactionIndex: u32;3810 readonly logsBloom: EthbloomBloom;3642 readonly logsBloom: EthbloomBloom;3811 }3643 }381236443813 /** @name EthbloomBloom (465) */3645 /** @name EthbloomBloom (446) */3814 interface EthbloomBloom extends U8aFixed {}3646 interface EthbloomBloom extends U8aFixed {}381536473816 /** @name EthereumReceiptReceiptV3 (467) */3648 /** @name EthereumReceiptReceiptV3 (448) */3817 interface EthereumReceiptReceiptV3 extends Enum {3649 interface EthereumReceiptReceiptV3 extends Enum {3818 readonly isLegacy: boolean;3650 readonly isLegacy: boolean;3819 readonly asLegacy: EthereumReceiptEip658ReceiptData;3651 readonly asLegacy: EthereumReceiptEip658ReceiptData;3824 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3656 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3825 }3657 }382636583827 /** @name EthereumReceiptEip658ReceiptData (468) */3659 /** @name EthereumReceiptEip658ReceiptData (449) */3828 interface EthereumReceiptEip658ReceiptData extends Struct {3660 interface EthereumReceiptEip658ReceiptData extends Struct {3829 readonly statusCode: u8;3661 readonly statusCode: u8;3830 readonly usedGas: U256;3662 readonly usedGas: U256;3831 readonly logsBloom: EthbloomBloom;3663 readonly logsBloom: EthbloomBloom;3832 readonly logs: Vec<EthereumLog>;3664 readonly logs: Vec<EthereumLog>;3833 }3665 }383436663835 /** @name EthereumBlock (469) */3667 /** @name EthereumBlock (450) */3836 interface EthereumBlock extends Struct {3668 interface EthereumBlock extends Struct {3837 readonly header: EthereumHeader;3669 readonly header: EthereumHeader;3838 readonly transactions: Vec<EthereumTransactionTransactionV2>;3670 readonly transactions: Vec<EthereumTransactionTransactionV2>;3839 readonly ommers: Vec<EthereumHeader>;3671 readonly ommers: Vec<EthereumHeader>;3840 }3672 }384136733842 /** @name EthereumHeader (470) */3674 /** @name EthereumHeader (451) */3843 interface EthereumHeader extends Struct {3675 interface EthereumHeader extends Struct {3844 readonly parentHash: H256;3676 readonly parentHash: H256;3845 readonly ommersHash: H256;3677 readonly ommersHash: H256;3858 readonly nonce: EthereumTypesHashH64;3690 readonly nonce: EthereumTypesHashH64;3859 }3691 }386036923861 /** @name EthereumTypesHashH64 (471) */3693 /** @name EthereumTypesHashH64 (452) */3862 interface EthereumTypesHashH64 extends U8aFixed {}3694 interface EthereumTypesHashH64 extends U8aFixed {}386336953864 /** @name PalletEthereumError (476) */3696 /** @name PalletEthereumError (457) */3865 interface PalletEthereumError extends Enum {3697 interface PalletEthereumError extends Enum {3866 readonly isInvalidSignature: boolean;3698 readonly isInvalidSignature: boolean;3867 readonly isPreLogExists: boolean;3699 readonly isPreLogExists: boolean;3868 readonly type: 'InvalidSignature' | 'PreLogExists';3700 readonly type: 'InvalidSignature' | 'PreLogExists';3869 }3701 }387037023871 /** @name PalletEvmCoderSubstrateError (477) */3703 /** @name PalletEvmCoderSubstrateError (458) */3872 interface PalletEvmCoderSubstrateError extends Enum {3704 interface PalletEvmCoderSubstrateError extends Enum {3873 readonly isOutOfGas: boolean;3705 readonly isOutOfGas: boolean;3874 readonly isOutOfFund: boolean;3706 readonly isOutOfFund: boolean;3875 readonly type: 'OutOfGas' | 'OutOfFund';3707 readonly type: 'OutOfGas' | 'OutOfFund';3876 }3708 }387737093878 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (478) */3710 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (459) */3879 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3711 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3880 readonly isDisabled: boolean;3712 readonly isDisabled: boolean;3881 readonly isUnconfirmed: boolean;3713 readonly isUnconfirmed: boolean;3885 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3717 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3886 }3718 }388737193888 /** @name PalletEvmContractHelpersSponsoringModeT (479) */3720 /** @name PalletEvmContractHelpersSponsoringModeT (460) */3889 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3721 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3890 readonly isDisabled: boolean;3722 readonly isDisabled: boolean;3891 readonly isAllowlisted: boolean;3723 readonly isAllowlisted: boolean;3892 readonly isGenerous: boolean;3724 readonly isGenerous: boolean;3893 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3725 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3894 }3726 }389537273896 /** @name PalletEvmContractHelpersError (485) */3728 /** @name PalletEvmContractHelpersError (466) */3897 interface PalletEvmContractHelpersError extends Enum {3729 interface PalletEvmContractHelpersError extends Enum {3898 readonly isNoPermission: boolean;3730 readonly isNoPermission: boolean;3899 readonly isNoPendingSponsor: boolean;3731 readonly isNoPendingSponsor: boolean;3900 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3732 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3901 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3733 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3902 }3734 }390337353904 /** @name PalletEvmMigrationError (486) */3736 /** @name PalletEvmMigrationError (467) */3905 interface PalletEvmMigrationError extends Enum {3737 interface PalletEvmMigrationError extends Enum {3906 readonly isAccountNotEmpty: boolean;3738 readonly isAccountNotEmpty: boolean;3907 readonly isAccountIsNotMigrating: boolean;3739 readonly isAccountIsNotMigrating: boolean;3908 readonly isBadEvent: boolean;3740 readonly isBadEvent: boolean;3909 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3741 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3910 }3742 }391137433912 /** @name PalletMaintenanceError (487) */3744 /** @name PalletMaintenanceError (468) */3913 type PalletMaintenanceError = Null;3745 type PalletMaintenanceError = Null;391437463915 /** @name PalletTestUtilsError (488) */3747 /** @name PalletTestUtilsError (469) */3916 interface PalletTestUtilsError extends Enum {3748 interface PalletTestUtilsError extends Enum {3917 readonly isTestPalletDisabled: boolean;3749 readonly isTestPalletDisabled: boolean;3918 readonly isTriggerRollback: boolean;3750 readonly isTriggerRollback: boolean;3919 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3751 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3920 }3752 }392137533922 /** @name SpRuntimeMultiSignature (490) */3754 /** @name SpRuntimeMultiSignature (471) */3923 interface SpRuntimeMultiSignature extends Enum {3755 interface SpRuntimeMultiSignature extends Enum {3924 readonly isEd25519: boolean;3756 readonly isEd25519: boolean;3925 readonly asEd25519: SpCoreEd25519Signature;3757 readonly asEd25519: SpCoreEd25519Signature;3930 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3762 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3931 }3763 }393237643933 /** @name SpCoreEd25519Signature (491) */3765 /** @name SpCoreEd25519Signature (472) */3934 interface SpCoreEd25519Signature extends U8aFixed {}3766 interface SpCoreEd25519Signature extends U8aFixed {}393537673936 /** @name SpCoreSr25519Signature (493) */3768 /** @name SpCoreSr25519Signature (474) */3937 interface SpCoreSr25519Signature extends U8aFixed {}3769 interface SpCoreSr25519Signature extends U8aFixed {}393837703939 /** @name SpCoreEcdsaSignature (494) */3771 /** @name SpCoreEcdsaSignature (475) */3940 interface SpCoreEcdsaSignature extends U8aFixed {}3772 interface SpCoreEcdsaSignature extends U8aFixed {}394137733942 /** @name FrameSystemExtensionsCheckSpecVersion (497) */3774 /** @name FrameSystemExtensionsCheckSpecVersion (478) */3943 type FrameSystemExtensionsCheckSpecVersion = Null;3775 type FrameSystemExtensionsCheckSpecVersion = Null;394437763945 /** @name FrameSystemExtensionsCheckTxVersion (498) */3777 /** @name FrameSystemExtensionsCheckTxVersion (479) */3946 type FrameSystemExtensionsCheckTxVersion = Null;3778 type FrameSystemExtensionsCheckTxVersion = Null;394737793948 /** @name FrameSystemExtensionsCheckGenesis (499) */3780 /** @name FrameSystemExtensionsCheckGenesis (480) */3949 type FrameSystemExtensionsCheckGenesis = Null;3781 type FrameSystemExtensionsCheckGenesis = Null;395037823951 /** @name FrameSystemExtensionsCheckNonce (502) */3783 /** @name FrameSystemExtensionsCheckNonce (483) */3952 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3784 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}395337853954 /** @name FrameSystemExtensionsCheckWeight (503) */3786 /** @name FrameSystemExtensionsCheckWeight (484) */3955 type FrameSystemExtensionsCheckWeight = Null;3787 type FrameSystemExtensionsCheckWeight = Null;395637883957 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (504) */3789 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (485) */3958 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3790 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;395937913960 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (505) */3792 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (486) */3961 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3793 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}396237943963 /** @name OpalRuntimeRuntime (506) */3795 /** @name OpalRuntimeRuntime (487) */3964 type OpalRuntimeRuntime = Null;3796 type OpalRuntimeRuntime = Null;396537973966 /** @name PalletEthereumFakeTransactionFinalizer (507) */3798 /** @name PalletEthereumFakeTransactionFinalizer (488) */3967 type PalletEthereumFakeTransactionFinalizer = Null;3799 type PalletEthereumFakeTransactionFinalizer = Null;396838003969} // declare module3801} // declare module