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.tsdiffbeforeafterboth988 }988 }989 }989 }990 },990 },991 /**992 * Lookup89: pallet_unique_scheduler_v2::pallet::Event<T>993 **/994 PalletUniqueSchedulerV2Event: {995 _enum: {996 Scheduled: {997 when: 'u32',998 index: 'u32',999 },1000 Canceled: {1001 when: 'u32',1002 index: 'u32',1003 },1004 Dispatched: {1005 task: '(u32,u32)',1006 id: 'Option<[u8;32]>',1007 result: 'Result<Null, SpRuntimeDispatchError>',1008 },1009 PriorityChanged: {1010 task: '(u32,u32)',1011 priority: 'u8',1012 },1013 CallUnavailable: {1014 task: '(u32,u32)',1015 id: 'Option<[u8;32]>',1016 },1017 PermanentlyOverweight: {1018 task: '(u32,u32)',1019 id: 'Option<[u8;32]>'1020 }1021 }1022 },1023 /**991 /**1024 * Lookup92: pallet_common::pallet::Event<T>992 * Lookup89: pallet_common::pallet::Event<T>1025 **/993 **/1026 PalletCommonEvent: {994 PalletCommonEvent: {1027 _enum: {995 _enum: {1028 CollectionCreated: '(u32,u8,AccountId32)',996 CollectionCreated: '(u32,u8,AccountId32)',1049 CollectionSponsorRemoved: 'u32'1017 CollectionSponsorRemoved: 'u32'1050 }1018 }1051 },1019 },1052 /**1020 /**1053 * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1021 * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1054 **/1022 **/1055 PalletEvmAccountBasicCrossAccountIdRepr: {1023 PalletEvmAccountBasicCrossAccountIdRepr: {1056 _enum: {1024 _enum: {1057 Substrate: 'AccountId32',1025 Substrate: 'AccountId32',1058 Ethereum: 'H160'1026 Ethereum: 'H160'1059 }1027 }1060 },1028 },1061 /**1029 /**1062 * Lookup99: pallet_structure::pallet::Event<T>1030 * Lookup96: pallet_structure::pallet::Event<T>1063 **/1031 **/1064 PalletStructureEvent: {1032 PalletStructureEvent: {1065 _enum: {1033 _enum: {1066 Executed: 'Result<Null, SpRuntimeDispatchError>'1034 Executed: 'Result<Null, SpRuntimeDispatchError>'1067 }1035 }1068 },1036 },1069 /**1037 /**1070 * Lookup100: pallet_rmrk_core::pallet::Event<T>1038 * Lookup97: pallet_rmrk_core::pallet::Event<T>1071 **/1039 **/1072 PalletRmrkCoreEvent: {1040 PalletRmrkCoreEvent: {1073 _enum: {1041 _enum: {1074 CollectionCreated: {1042 CollectionCreated: {1143 }1111 }1144 }1112 }1145 },1113 },1146 /**1114 /**1147 * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1115 * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1148 **/1116 **/1149 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1117 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1150 _enum: {1118 _enum: {1151 AccountId: 'AccountId32',1119 AccountId: 'AccountId32',1152 CollectionAndNftTuple: '(u32,u32)'1120 CollectionAndNftTuple: '(u32,u32)'1153 }1121 }1154 },1122 },1155 /**1123 /**1156 * Lookup105: pallet_rmrk_equip::pallet::Event<T>1124 * Lookup102: pallet_rmrk_equip::pallet::Event<T>1157 **/1125 **/1158 PalletRmrkEquipEvent: {1126 PalletRmrkEquipEvent: {1159 _enum: {1127 _enum: {1160 BaseCreated: {1128 BaseCreated: {1167 }1135 }1168 }1136 }1169 },1137 },1170 /**1138 /**1171 * Lookup106: pallet_app_promotion::pallet::Event<T>1139 * Lookup103: pallet_app_promotion::pallet::Event<T>1172 **/1140 **/1173 PalletAppPromotionEvent: {1141 PalletAppPromotionEvent: {1174 _enum: {1142 _enum: {1175 StakingRecalculation: '(AccountId32,u128,u128)',1143 StakingRecalculation: '(AccountId32,u128,u128)',1178 SetAdmin: 'AccountId32'1146 SetAdmin: 'AccountId32'1179 }1147 }1180 },1148 },1181 /**1149 /**1182 * Lookup107: pallet_foreign_assets::module::Event<T>1150 * Lookup104: pallet_foreign_assets::module::Event<T>1183 **/1151 **/1184 PalletForeignAssetsModuleEvent: {1152 PalletForeignAssetsModuleEvent: {1185 _enum: {1153 _enum: {1186 ForeignAssetRegistered: {1154 ForeignAssetRegistered: {1203 }1171 }1204 }1172 }1205 },1173 },1206 /**1174 /**1207 * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>1175 * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>1208 **/1176 **/1209 PalletForeignAssetsModuleAssetMetadata: {1177 PalletForeignAssetsModuleAssetMetadata: {1210 name: 'Bytes',1178 name: 'Bytes',1211 symbol: 'Bytes',1179 symbol: 'Bytes',1212 decimals: 'u8',1180 decimals: 'u8',1213 minimalBalance: 'u128'1181 minimalBalance: 'u128'1214 },1182 },1215 /**1183 /**1216 * Lookup109: pallet_evm::pallet::Event<T>1184 * Lookup106: pallet_evm::pallet::Event<T>1217 **/1185 **/1218 PalletEvmEvent: {1186 PalletEvmEvent: {1219 _enum: {1187 _enum: {1220 Log: {1188 Log: {1234 }1202 }1235 }1203 }1236 },1204 },1237 /**1205 /**1238 * Lookup110: ethereum::log::Log1206 * Lookup107: ethereum::log::Log1239 **/1207 **/1240 EthereumLog: {1208 EthereumLog: {1241 address: 'H160',1209 address: 'H160',1242 topics: 'Vec<H256>',1210 topics: 'Vec<H256>',1243 data: 'Bytes'1211 data: 'Bytes'1244 },1212 },1245 /**1213 /**1246 * Lookup112: pallet_ethereum::pallet::Event1214 * Lookup109: pallet_ethereum::pallet::Event1247 **/1215 **/1248 PalletEthereumEvent: {1216 PalletEthereumEvent: {1249 _enum: {1217 _enum: {1250 Executed: {1218 Executed: {1255 }1223 }1256 }1224 }1257 },1225 },1258 /**1226 /**1259 * Lookup113: evm_core::error::ExitReason1227 * Lookup110: evm_core::error::ExitReason1260 **/1228 **/1261 EvmCoreErrorExitReason: {1229 EvmCoreErrorExitReason: {1262 _enum: {1230 _enum: {1263 Succeed: 'EvmCoreErrorExitSucceed',1231 Succeed: 'EvmCoreErrorExitSucceed',1266 Fatal: 'EvmCoreErrorExitFatal'1234 Fatal: 'EvmCoreErrorExitFatal'1267 }1235 }1268 },1236 },1269 /**1237 /**1270 * Lookup114: evm_core::error::ExitSucceed1238 * Lookup111: evm_core::error::ExitSucceed1271 **/1239 **/1272 EvmCoreErrorExitSucceed: {1240 EvmCoreErrorExitSucceed: {1273 _enum: ['Stopped', 'Returned', 'Suicided']1241 _enum: ['Stopped', 'Returned', 'Suicided']1274 },1242 },1275 /**1243 /**1276 * Lookup115: evm_core::error::ExitError1244 * Lookup112: evm_core::error::ExitError1277 **/1245 **/1278 EvmCoreErrorExitError: {1246 EvmCoreErrorExitError: {1279 _enum: {1247 _enum: {1280 StackUnderflow: 'Null',1248 StackUnderflow: 'Null',1294 InvalidCode: 'Null'1262 InvalidCode: 'Null'1295 }1263 }1296 },1264 },1297 /**1265 /**1298 * Lookup118: evm_core::error::ExitRevert1266 * Lookup115: evm_core::error::ExitRevert1299 **/1267 **/1300 EvmCoreErrorExitRevert: {1268 EvmCoreErrorExitRevert: {1301 _enum: ['Reverted']1269 _enum: ['Reverted']1302 },1270 },1303 /**1271 /**1304 * Lookup119: evm_core::error::ExitFatal1272 * Lookup116: evm_core::error::ExitFatal1305 **/1273 **/1306 EvmCoreErrorExitFatal: {1274 EvmCoreErrorExitFatal: {1307 _enum: {1275 _enum: {1308 NotSupported: 'Null',1276 NotSupported: 'Null',1311 Other: 'Text'1279 Other: 'Text'1312 }1280 }1313 },1281 },1314 /**1282 /**1315 * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>1283 * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>1316 **/1284 **/1317 PalletEvmContractHelpersEvent: {1285 PalletEvmContractHelpersEvent: {1318 _enum: {1286 _enum: {1319 ContractSponsorSet: '(H160,AccountId32)',1287 ContractSponsorSet: '(H160,AccountId32)',1320 ContractSponsorshipConfirmed: '(H160,AccountId32)',1288 ContractSponsorshipConfirmed: '(H160,AccountId32)',1321 ContractSponsorRemoved: 'H160'1289 ContractSponsorRemoved: 'H160'1322 }1290 }1323 },1291 },1324 /**1292 /**1325 * Lookup121: pallet_evm_migration::pallet::Event<T>1293 * Lookup118: pallet_evm_migration::pallet::Event<T>1326 **/1294 **/1327 PalletEvmMigrationEvent: {1295 PalletEvmMigrationEvent: {1328 _enum: ['TestEvent']1296 _enum: ['TestEvent']1329 },1297 },1330 /**1298 /**1331 * Lookup122: pallet_maintenance::pallet::Event<T>1299 * Lookup119: pallet_maintenance::pallet::Event<T>1332 **/1300 **/1333 PalletMaintenanceEvent: {1301 PalletMaintenanceEvent: {1334 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1302 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1335 },1303 },1336 /**1304 /**1337 * Lookup123: pallet_test_utils::pallet::Event<T>1305 * Lookup120: pallet_test_utils::pallet::Event<T>1338 **/1306 **/1339 PalletTestUtilsEvent: {1307 PalletTestUtilsEvent: {1340 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1308 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1341 },1309 },1342 /**1310 /**1343 * Lookup124: frame_system::Phase1311 * Lookup121: frame_system::Phase1344 **/1312 **/1345 FrameSystemPhase: {1313 FrameSystemPhase: {1346 _enum: {1314 _enum: {1347 ApplyExtrinsic: 'u32',1315 ApplyExtrinsic: 'u32',1348 Finalization: 'Null',1316 Finalization: 'Null',1349 Initialization: 'Null'1317 Initialization: 'Null'1350 }1318 }1351 },1319 },1352 /**1320 /**1353 * Lookup126: frame_system::LastRuntimeUpgradeInfo1321 * Lookup124: frame_system::LastRuntimeUpgradeInfo1354 **/1322 **/1355 FrameSystemLastRuntimeUpgradeInfo: {1323 FrameSystemLastRuntimeUpgradeInfo: {1356 specVersion: 'Compact<u32>',1324 specVersion: 'Compact<u32>',1357 specName: 'Text'1325 specName: 'Text'1358 },1326 },1359 /**1327 /**1360 * Lookup127: frame_system::pallet::Call<T>1328 * Lookup125: frame_system::pallet::Call<T>1361 **/1329 **/1362 FrameSystemCall: {1330 FrameSystemCall: {1363 _enum: {1331 _enum: {1364 fill_block: {1332 fill_block: {1394 }1362 }1395 }1363 }1396 },1364 },1397 /**1365 /**1398 * Lookup132: frame_system::limits::BlockWeights1366 * Lookup130: frame_system::limits::BlockWeights1399 **/1367 **/1400 FrameSystemLimitsBlockWeights: {1368 FrameSystemLimitsBlockWeights: {1401 baseBlock: 'SpWeightsWeightV2Weight',1369 baseBlock: 'SpWeightsWeightV2Weight',1402 maxBlock: 'SpWeightsWeightV2Weight',1370 maxBlock: 'SpWeightsWeightV2Weight',1403 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1371 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1404 },1372 },1405 /**1373 /**1406 * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1374 * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1407 **/1375 **/1408 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1376 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1409 normal: 'FrameSystemLimitsWeightsPerClass',1377 normal: 'FrameSystemLimitsWeightsPerClass',1410 operational: 'FrameSystemLimitsWeightsPerClass',1378 operational: 'FrameSystemLimitsWeightsPerClass',1411 mandatory: 'FrameSystemLimitsWeightsPerClass'1379 mandatory: 'FrameSystemLimitsWeightsPerClass'1412 },1380 },1413 /**1381 /**1414 * Lookup134: frame_system::limits::WeightsPerClass1382 * Lookup132: frame_system::limits::WeightsPerClass1415 **/1383 **/1416 FrameSystemLimitsWeightsPerClass: {1384 FrameSystemLimitsWeightsPerClass: {1417 baseExtrinsic: 'SpWeightsWeightV2Weight',1385 baseExtrinsic: 'SpWeightsWeightV2Weight',1418 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1386 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1419 maxTotal: 'Option<SpWeightsWeightV2Weight>',1387 maxTotal: 'Option<SpWeightsWeightV2Weight>',1420 reserved: 'Option<SpWeightsWeightV2Weight>'1388 reserved: 'Option<SpWeightsWeightV2Weight>'1421 },1389 },1422 /**1390 /**1423 * Lookup136: frame_system::limits::BlockLength1391 * Lookup134: frame_system::limits::BlockLength1424 **/1392 **/1425 FrameSystemLimitsBlockLength: {1393 FrameSystemLimitsBlockLength: {1426 max: 'FrameSupportDispatchPerDispatchClassU32'1394 max: 'FrameSupportDispatchPerDispatchClassU32'1427 },1395 },1428 /**1396 /**1429 * Lookup137: frame_support::dispatch::PerDispatchClass<T>1397 * Lookup135: frame_support::dispatch::PerDispatchClass<T>1430 **/1398 **/1431 FrameSupportDispatchPerDispatchClassU32: {1399 FrameSupportDispatchPerDispatchClassU32: {1432 normal: 'u32',1400 normal: 'u32',1433 operational: 'u32',1401 operational: 'u32',1434 mandatory: 'u32'1402 mandatory: 'u32'1435 },1403 },1436 /**1404 /**1437 * Lookup138: sp_weights::RuntimeDbWeight1405 * Lookup136: sp_weights::RuntimeDbWeight1438 **/1406 **/1439 SpWeightsRuntimeDbWeight: {1407 SpWeightsRuntimeDbWeight: {1440 read: 'u64',1408 read: 'u64',1441 write: 'u64'1409 write: 'u64'1442 },1410 },1443 /**1411 /**1444 * Lookup139: sp_version::RuntimeVersion1412 * Lookup137: sp_version::RuntimeVersion1445 **/1413 **/1446 SpVersionRuntimeVersion: {1414 SpVersionRuntimeVersion: {1447 specName: 'Text',1415 specName: 'Text',1448 implName: 'Text',1416 implName: 'Text',1453 transactionVersion: 'u32',1421 transactionVersion: 'u32',1454 stateVersion: 'u8'1422 stateVersion: 'u8'1455 },1423 },1456 /**1424 /**1457 * Lookup144: frame_system::pallet::Error<T>1425 * Lookup142: frame_system::pallet::Error<T>1458 **/1426 **/1459 FrameSystemError: {1427 FrameSystemError: {1460 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1428 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1461 },1429 },1462 /**1430 /**1463 * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1431 * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1464 **/1432 **/1465 PolkadotPrimitivesV2PersistedValidationData: {1433 PolkadotPrimitivesV2PersistedValidationData: {1466 parentHead: 'Bytes',1434 parentHead: 'Bytes',1467 relayParentNumber: 'u32',1435 relayParentNumber: 'u32',1468 relayParentStorageRoot: 'H256',1436 relayParentStorageRoot: 'H256',1469 maxPovSize: 'u32'1437 maxPovSize: 'u32'1470 },1438 },1471 /**1439 /**1472 * Lookup148: polkadot_primitives::v2::UpgradeRestriction1440 * Lookup146: polkadot_primitives::v2::UpgradeRestriction1473 **/1441 **/1474 PolkadotPrimitivesV2UpgradeRestriction: {1442 PolkadotPrimitivesV2UpgradeRestriction: {1475 _enum: ['Present']1443 _enum: ['Present']1476 },1444 },1477 /**1445 /**1478 * Lookup149: sp_trie::storage_proof::StorageProof1446 * Lookup147: sp_trie::storage_proof::StorageProof1479 **/1447 **/1480 SpTrieStorageProof: {1448 SpTrieStorageProof: {1481 trieNodes: 'BTreeSet<Bytes>'1449 trieNodes: 'BTreeSet<Bytes>'1482 },1450 },1483 /**1451 /**1484 * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1452 * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1485 **/1453 **/1486 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1454 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1487 dmqMqcHead: 'H256',1455 dmqMqcHead: 'H256',1488 relayDispatchQueueSize: '(u32,u32)',1456 relayDispatchQueueSize: '(u32,u32)',1489 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1457 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1490 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1458 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1491 },1459 },1492 /**1460 /**1493 * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel1461 * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel1494 **/1462 **/1495 PolkadotPrimitivesV2AbridgedHrmpChannel: {1463 PolkadotPrimitivesV2AbridgedHrmpChannel: {1496 maxCapacity: 'u32',1464 maxCapacity: 'u32',1497 maxTotalSize: 'u32',1465 maxTotalSize: 'u32',1500 totalSize: 'u32',1468 totalSize: 'u32',1501 mqcHead: 'Option<H256>'1469 mqcHead: 'Option<H256>'1502 },1470 },1503 /**1471 /**1504 * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration1472 * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration1505 **/1473 **/1506 PolkadotPrimitivesV2AbridgedHostConfiguration: {1474 PolkadotPrimitivesV2AbridgedHostConfiguration: {1507 maxCodeSize: 'u32',1475 maxCodeSize: 'u32',1508 maxHeadDataSize: 'u32',1476 maxHeadDataSize: 'u32',1514 validationUpgradeCooldown: 'u32',1482 validationUpgradeCooldown: 'u32',1515 validationUpgradeDelay: 'u32'1483 validationUpgradeDelay: 'u32'1516 },1484 },1517 /**1485 /**1518 * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1486 * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1519 **/1487 **/1520 PolkadotCorePrimitivesOutboundHrmpMessage: {1488 PolkadotCorePrimitivesOutboundHrmpMessage: {1521 recipient: 'u32',1489 recipient: 'u32',1522 data: 'Bytes'1490 data: 'Bytes'1523 },1491 },1524 /**1492 /**1525 * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>1493 * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>1526 **/1494 **/1527 CumulusPalletParachainSystemCall: {1495 CumulusPalletParachainSystemCall: {1528 _enum: {1496 _enum: {1529 set_validation_data: {1497 set_validation_data: {1540 }1508 }1541 }1509 }1542 },1510 },1543 /**1511 /**1544 * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData1512 * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData1545 **/1513 **/1546 CumulusPrimitivesParachainInherentParachainInherentData: {1514 CumulusPrimitivesParachainInherentParachainInherentData: {1547 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1515 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1548 relayChainState: 'SpTrieStorageProof',1516 relayChainState: 'SpTrieStorageProof',1549 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1517 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1550 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1518 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1551 },1519 },1552 /**1520 /**1553 * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1521 * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1554 **/1522 **/1555 PolkadotCorePrimitivesInboundDownwardMessage: {1523 PolkadotCorePrimitivesInboundDownwardMessage: {1556 sentAt: 'u32',1524 sentAt: 'u32',1557 msg: 'Bytes'1525 msg: 'Bytes'1558 },1526 },1559 /**1527 /**1560 * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1528 * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1561 **/1529 **/1562 PolkadotCorePrimitivesInboundHrmpMessage: {1530 PolkadotCorePrimitivesInboundHrmpMessage: {1563 sentAt: 'u32',1531 sentAt: 'u32',1564 data: 'Bytes'1532 data: 'Bytes'1565 },1533 },1566 /**1534 /**1567 * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>1535 * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>1568 **/1536 **/1569 CumulusPalletParachainSystemError: {1537 CumulusPalletParachainSystemError: {1570 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1538 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1571 },1539 },1572 /**1540 /**1573 * Lookup173: pallet_balances::BalanceLock<Balance>1541 * Lookup171: pallet_balances::BalanceLock<Balance>1574 **/1542 **/1575 PalletBalancesBalanceLock: {1543 PalletBalancesBalanceLock: {1576 id: '[u8;8]',1544 id: '[u8;8]',1577 amount: 'u128',1545 amount: 'u128',1578 reasons: 'PalletBalancesReasons'1546 reasons: 'PalletBalancesReasons'1579 },1547 },1580 /**1548 /**1581 * Lookup174: pallet_balances::Reasons1549 * Lookup172: pallet_balances::Reasons1582 **/1550 **/1583 PalletBalancesReasons: {1551 PalletBalancesReasons: {1584 _enum: ['Fee', 'Misc', 'All']1552 _enum: ['Fee', 'Misc', 'All']1585 },1553 },1586 /**1554 /**1587 * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>1555 * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>1588 **/1556 **/1589 PalletBalancesReserveData: {1557 PalletBalancesReserveData: {1590 id: '[u8;16]',1558 id: '[u8;16]',1591 amount: 'u128'1559 amount: 'u128'1592 },1560 },1593 /**1561 /**1594 * Lookup179: pallet_balances::Releases1562 * Lookup177: pallet_balances::Releases1595 **/1563 **/1596 PalletBalancesReleases: {1564 PalletBalancesReleases: {1597 _enum: ['V1_0_0', 'V2_0_0']1565 _enum: ['V1_0_0', 'V2_0_0']1598 },1566 },1599 /**1567 /**1600 * Lookup180: pallet_balances::pallet::Call<T, I>1568 * Lookup178: pallet_balances::pallet::Call<T, I>1601 **/1569 **/1602 PalletBalancesCall: {1570 PalletBalancesCall: {1603 _enum: {1571 _enum: {1604 transfer: {1572 transfer: {1629 }1597 }1630 }1598 }1631 },1599 },1632 /**1600 /**1633 * Lookup183: pallet_balances::pallet::Error<T, I>1601 * Lookup181: pallet_balances::pallet::Error<T, I>1634 **/1602 **/1635 PalletBalancesError: {1603 PalletBalancesError: {1636 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1604 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1637 },1605 },1638 /**1606 /**1639 * Lookup185: pallet_timestamp::pallet::Call<T>1607 * Lookup183: pallet_timestamp::pallet::Call<T>1640 **/1608 **/1641 PalletTimestampCall: {1609 PalletTimestampCall: {1642 _enum: {1610 _enum: {1643 set: {1611 set: {1644 now: 'Compact<u64>'1612 now: 'Compact<u64>'1645 }1613 }1646 }1614 }1647 },1615 },1648 /**1616 /**1649 * Lookup187: pallet_transaction_payment::Releases1617 * Lookup185: pallet_transaction_payment::Releases1650 **/1618 **/1651 PalletTransactionPaymentReleases: {1619 PalletTransactionPaymentReleases: {1652 _enum: ['V1Ancient', 'V2']1620 _enum: ['V1Ancient', 'V2']1653 },1621 },1654 /**1622 /**1655 * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1623 * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1656 **/1624 **/1657 PalletTreasuryProposal: {1625 PalletTreasuryProposal: {1658 proposer: 'AccountId32',1626 proposer: 'AccountId32',1659 value: 'u128',1627 value: 'u128',1660 beneficiary: 'AccountId32',1628 beneficiary: 'AccountId32',1661 bond: 'u128'1629 bond: 'u128'1662 },1630 },1663 /**1631 /**1664 * Lookup191: pallet_treasury::pallet::Call<T, I>1632 * Lookup189: pallet_treasury::pallet::Call<T, I>1665 **/1633 **/1666 PalletTreasuryCall: {1634 PalletTreasuryCall: {1667 _enum: {1635 _enum: {1668 propose_spend: {1636 propose_spend: {1684 }1652 }1685 }1653 }1686 },1654 },1687 /**1655 /**1688 * Lookup194: frame_support::PalletId1656 * Lookup192: frame_support::PalletId1689 **/1657 **/1690 FrameSupportPalletId: '[u8;8]',1658 FrameSupportPalletId: '[u8;8]',1691 /**1659 /**1692 * Lookup195: pallet_treasury::pallet::Error<T, I>1660 * Lookup193: pallet_treasury::pallet::Error<T, I>1693 **/1661 **/1694 PalletTreasuryError: {1662 PalletTreasuryError: {1695 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1663 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1696 },1664 },1697 /**1665 /**1698 * Lookup196: pallet_sudo::pallet::Call<T>1666 * Lookup194: pallet_sudo::pallet::Call<T>1699 **/1667 **/1700 PalletSudoCall: {1668 PalletSudoCall: {1701 _enum: {1669 _enum: {1702 sudo: {1670 sudo: {1718 }1686 }1719 }1687 }1720 },1688 },1721 /**1689 /**1722 * Lookup198: orml_vesting::module::Call<T>1690 * Lookup196: orml_vesting::module::Call<T>1723 **/1691 **/1724 OrmlVestingModuleCall: {1692 OrmlVestingModuleCall: {1725 _enum: {1693 _enum: {1726 claim: 'Null',1694 claim: 'Null',1737 }1705 }1738 }1706 }1739 },1707 },1740 /**1708 /**1741 * Lookup200: orml_xtokens::module::Call<T>1709 * Lookup198: orml_xtokens::module::Call<T>1742 **/1710 **/1743 OrmlXtokensModuleCall: {1711 OrmlXtokensModuleCall: {1744 _enum: {1712 _enum: {1745 transfer: {1713 transfer: {1780 }1748 }1781 }1749 }1782 },1750 },1783 /**1751 /**1784 * Lookup201: xcm::VersionedMultiAsset1752 * Lookup199: xcm::VersionedMultiAsset1785 **/1753 **/1786 XcmVersionedMultiAsset: {1754 XcmVersionedMultiAsset: {1787 _enum: {1755 _enum: {1788 V0: 'XcmV0MultiAsset',1756 V0: 'XcmV0MultiAsset',1789 V1: 'XcmV1MultiAsset'1757 V1: 'XcmV1MultiAsset'1790 }1758 }1791 },1759 },1792 /**1760 /**1793 * Lookup204: orml_tokens::module::Call<T>1761 * Lookup202: orml_tokens::module::Call<T>1794 **/1762 **/1795 OrmlTokensModuleCall: {1763 OrmlTokensModuleCall: {1796 _enum: {1764 _enum: {1797 transfer: {1765 transfer: {1823 }1791 }1824 }1792 }1825 },1793 },1826 /**1794 /**1827 * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>1795 * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>1828 **/1796 **/1829 CumulusPalletXcmpQueueCall: {1797 CumulusPalletXcmpQueueCall: {1830 _enum: {1798 _enum: {1831 service_overweight: {1799 service_overweight: {1872 }1840 }1873 }1841 }1874 },1842 },1875 /**1843 /**1876 * Lookup206: pallet_xcm::pallet::Call<T>1844 * Lookup204: pallet_xcm::pallet::Call<T>1877 **/1845 **/1878 PalletXcmCall: {1846 PalletXcmCall: {1879 _enum: {1847 _enum: {1880 send: {1848 send: {1926 }1894 }1927 }1895 }1928 },1896 },1929 /**1897 /**1930 * Lookup207: xcm::VersionedXcm<RuntimeCall>1898 * Lookup205: xcm::VersionedXcm<RuntimeCall>1931 **/1899 **/1932 XcmVersionedXcm: {1900 XcmVersionedXcm: {1933 _enum: {1901 _enum: {1934 V0: 'XcmV0Xcm',1902 V0: 'XcmV0Xcm',1935 V1: 'XcmV1Xcm',1903 V1: 'XcmV1Xcm',1936 V2: 'XcmV2Xcm'1904 V2: 'XcmV2Xcm'1937 }1905 }1938 },1906 },1939 /**1907 /**1940 * Lookup208: xcm::v0::Xcm<RuntimeCall>1908 * Lookup206: xcm::v0::Xcm<RuntimeCall>1941 **/1909 **/1942 XcmV0Xcm: {1910 XcmV0Xcm: {1943 _enum: {1911 _enum: {1944 WithdrawAsset: {1912 WithdrawAsset: {1990 }1958 }1991 }1959 }1992 },1960 },1993 /**1961 /**1994 * Lookup210: xcm::v0::order::Order<RuntimeCall>1962 * Lookup208: xcm::v0::order::Order<RuntimeCall>1995 **/1963 **/1996 XcmV0Order: {1964 XcmV0Order: {1997 _enum: {1965 _enum: {1998 Null: 'Null',1966 Null: 'Null',2033 }2001 }2034 }2002 }2035 },2003 },2036 /**2004 /**2037 * Lookup212: xcm::v0::Response2005 * Lookup210: xcm::v0::Response2038 **/2006 **/2039 XcmV0Response: {2007 XcmV0Response: {2040 _enum: {2008 _enum: {2041 Assets: 'Vec<XcmV0MultiAsset>'2009 Assets: 'Vec<XcmV0MultiAsset>'2042 }2010 }2043 },2011 },2044 /**2012 /**2045 * Lookup213: xcm::v1::Xcm<RuntimeCall>2013 * Lookup211: xcm::v1::Xcm<RuntimeCall>2046 **/2014 **/2047 XcmV1Xcm: {2015 XcmV1Xcm: {2048 _enum: {2016 _enum: {2049 WithdrawAsset: {2017 WithdrawAsset: {2100 UnsubscribeVersion: 'Null'2068 UnsubscribeVersion: 'Null'2101 }2069 }2102 },2070 },2103 /**2071 /**2104 * Lookup215: xcm::v1::order::Order<RuntimeCall>2072 * Lookup213: xcm::v1::order::Order<RuntimeCall>2105 **/2073 **/2106 XcmV1Order: {2074 XcmV1Order: {2107 _enum: {2075 _enum: {2108 Noop: 'Null',2076 Noop: 'Null',2145 }2113 }2146 }2114 }2147 },2115 },2148 /**2116 /**2149 * Lookup217: xcm::v1::Response2117 * Lookup215: xcm::v1::Response2150 **/2118 **/2151 XcmV1Response: {2119 XcmV1Response: {2152 _enum: {2120 _enum: {2153 Assets: 'XcmV1MultiassetMultiAssets',2121 Assets: 'XcmV1MultiassetMultiAssets',2154 Version: 'u32'2122 Version: 'u32'2155 }2123 }2156 },2124 },2157 /**2125 /**2158 * Lookup231: cumulus_pallet_xcm::pallet::Call<T>2126 * Lookup229: cumulus_pallet_xcm::pallet::Call<T>2159 **/2127 **/2160 CumulusPalletXcmCall: 'Null',2128 CumulusPalletXcmCall: 'Null',2161 /**2129 /**2162 * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>2130 * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>2163 **/2131 **/2164 CumulusPalletDmpQueueCall: {2132 CumulusPalletDmpQueueCall: {2165 _enum: {2133 _enum: {2166 service_overweight: {2134 service_overweight: {2169 }2137 }2170 }2138 }2171 },2139 },2172 /**2140 /**2173 * Lookup233: pallet_inflation::pallet::Call<T>2141 * Lookup231: pallet_inflation::pallet::Call<T>2174 **/2142 **/2175 PalletInflationCall: {2143 PalletInflationCall: {2176 _enum: {2144 _enum: {2177 start_inflation: {2145 start_inflation: {2178 inflationStartRelayBlock: 'u32'2146 inflationStartRelayBlock: 'u32'2179 }2147 }2180 }2148 }2181 },2149 },2182 /**2150 /**2183 * Lookup234: pallet_unique::Call<T>2151 * Lookup232: pallet_unique::Call<T>2184 **/2152 **/2185 PalletUniqueCall: {2153 PalletUniqueCall: {2186 _enum: {2154 _enum: {2187 create_collection: {2155 create_collection: {2316 }2284 }2317 }2285 }2318 },2286 },2319 /**2287 /**2320 * Lookup239: up_data_structs::CollectionMode2288 * Lookup237: up_data_structs::CollectionMode2321 **/2289 **/2322 UpDataStructsCollectionMode: {2290 UpDataStructsCollectionMode: {2323 _enum: {2291 _enum: {2324 NFT: 'Null',2292 NFT: 'Null',2325 Fungible: 'u8',2293 Fungible: 'u8',2326 ReFungible: 'Null'2294 ReFungible: 'Null'2327 }2295 }2328 },2296 },2329 /**2297 /**2330 * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2298 * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2331 **/2299 **/2332 UpDataStructsCreateCollectionData: {2300 UpDataStructsCreateCollectionData: {2333 mode: 'UpDataStructsCollectionMode',2301 mode: 'UpDataStructsCollectionMode',2334 access: 'Option<UpDataStructsAccessMode>',2302 access: 'Option<UpDataStructsAccessMode>',2341 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2309 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2342 properties: 'Vec<UpDataStructsProperty>'2310 properties: 'Vec<UpDataStructsProperty>'2343 },2311 },2344 /**2312 /**2345 * Lookup242: up_data_structs::AccessMode2313 * Lookup240: up_data_structs::AccessMode2346 **/2314 **/2347 UpDataStructsAccessMode: {2315 UpDataStructsAccessMode: {2348 _enum: ['Normal', 'AllowList']2316 _enum: ['Normal', 'AllowList']2349 },2317 },2350 /**2318 /**2351 * Lookup244: up_data_structs::CollectionLimits2319 * Lookup242: up_data_structs::CollectionLimits2352 **/2320 **/2353 UpDataStructsCollectionLimits: {2321 UpDataStructsCollectionLimits: {2354 accountTokenOwnershipLimit: 'Option<u32>',2322 accountTokenOwnershipLimit: 'Option<u32>',2355 sponsoredDataSize: 'Option<u32>',2323 sponsoredDataSize: 'Option<u32>',2361 ownerCanDestroy: 'Option<bool>',2329 ownerCanDestroy: 'Option<bool>',2362 transfersEnabled: 'Option<bool>'2330 transfersEnabled: 'Option<bool>'2363 },2331 },2364 /**2332 /**2365 * Lookup246: up_data_structs::SponsoringRateLimit2333 * Lookup244: up_data_structs::SponsoringRateLimit2366 **/2334 **/2367 UpDataStructsSponsoringRateLimit: {2335 UpDataStructsSponsoringRateLimit: {2368 _enum: {2336 _enum: {2369 SponsoringDisabled: 'Null',2337 SponsoringDisabled: 'Null',2370 Blocks: 'u32'2338 Blocks: 'u32'2371 }2339 }2372 },2340 },2373 /**2341 /**2374 * Lookup249: up_data_structs::CollectionPermissions2342 * Lookup247: up_data_structs::CollectionPermissions2375 **/2343 **/2376 UpDataStructsCollectionPermissions: {2344 UpDataStructsCollectionPermissions: {2377 access: 'Option<UpDataStructsAccessMode>',2345 access: 'Option<UpDataStructsAccessMode>',2378 mintMode: 'Option<bool>',2346 mintMode: 'Option<bool>',2379 nesting: 'Option<UpDataStructsNestingPermissions>'2347 nesting: 'Option<UpDataStructsNestingPermissions>'2380 },2348 },2381 /**2349 /**2382 * Lookup251: up_data_structs::NestingPermissions2350 * Lookup249: up_data_structs::NestingPermissions2383 **/2351 **/2384 UpDataStructsNestingPermissions: {2352 UpDataStructsNestingPermissions: {2385 tokenOwner: 'bool',2353 tokenOwner: 'bool',2386 collectionAdmin: 'bool',2354 collectionAdmin: 'bool',2387 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2355 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2388 },2356 },2389 /**2357 /**2390 * Lookup253: up_data_structs::OwnerRestrictedSet2358 * Lookup251: up_data_structs::OwnerRestrictedSet2391 **/2359 **/2392 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2360 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2393 /**2361 /**2394 * Lookup258: up_data_structs::PropertyKeyPermission2362 * Lookup256: up_data_structs::PropertyKeyPermission2395 **/2363 **/2396 UpDataStructsPropertyKeyPermission: {2364 UpDataStructsPropertyKeyPermission: {2397 key: 'Bytes',2365 key: 'Bytes',2398 permission: 'UpDataStructsPropertyPermission'2366 permission: 'UpDataStructsPropertyPermission'2399 },2367 },2400 /**2368 /**2401 * Lookup259: up_data_structs::PropertyPermission2369 * Lookup257: up_data_structs::PropertyPermission2402 **/2370 **/2403 UpDataStructsPropertyPermission: {2371 UpDataStructsPropertyPermission: {2404 mutable: 'bool',2372 mutable: 'bool',2405 collectionAdmin: 'bool',2373 collectionAdmin: 'bool',2406 tokenOwner: 'bool'2374 tokenOwner: 'bool'2407 },2375 },2408 /**2376 /**2409 * Lookup262: up_data_structs::Property2377 * Lookup260: up_data_structs::Property2410 **/2378 **/2411 UpDataStructsProperty: {2379 UpDataStructsProperty: {2412 key: 'Bytes',2380 key: 'Bytes',2413 value: 'Bytes'2381 value: 'Bytes'2414 },2382 },2415 /**2383 /**2416 * Lookup265: up_data_structs::CreateItemData2384 * Lookup263: up_data_structs::CreateItemData2417 **/2385 **/2418 UpDataStructsCreateItemData: {2386 UpDataStructsCreateItemData: {2419 _enum: {2387 _enum: {2420 NFT: 'UpDataStructsCreateNftData',2388 NFT: 'UpDataStructsCreateNftData',2421 Fungible: 'UpDataStructsCreateFungibleData',2389 Fungible: 'UpDataStructsCreateFungibleData',2422 ReFungible: 'UpDataStructsCreateReFungibleData'2390 ReFungible: 'UpDataStructsCreateReFungibleData'2423 }2391 }2424 },2392 },2425 /**2393 /**2426 * Lookup266: up_data_structs::CreateNftData2394 * Lookup264: up_data_structs::CreateNftData2427 **/2395 **/2428 UpDataStructsCreateNftData: {2396 UpDataStructsCreateNftData: {2429 properties: 'Vec<UpDataStructsProperty>'2397 properties: 'Vec<UpDataStructsProperty>'2430 },2398 },2431 /**2399 /**2432 * Lookup267: up_data_structs::CreateFungibleData2400 * Lookup265: up_data_structs::CreateFungibleData2433 **/2401 **/2434 UpDataStructsCreateFungibleData: {2402 UpDataStructsCreateFungibleData: {2435 value: 'u128'2403 value: 'u128'2436 },2404 },2437 /**2405 /**2438 * Lookup268: up_data_structs::CreateReFungibleData2406 * Lookup266: up_data_structs::CreateReFungibleData2439 **/2407 **/2440 UpDataStructsCreateReFungibleData: {2408 UpDataStructsCreateReFungibleData: {2441 pieces: 'u128',2409 pieces: 'u128',2442 properties: 'Vec<UpDataStructsProperty>'2410 properties: 'Vec<UpDataStructsProperty>'2443 },2411 },2444 /**2412 /**2445 * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2413 * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2446 **/2414 **/2447 UpDataStructsCreateItemExData: {2415 UpDataStructsCreateItemExData: {2448 _enum: {2416 _enum: {2449 NFT: 'Vec<UpDataStructsCreateNftExData>',2417 NFT: 'Vec<UpDataStructsCreateNftExData>',2452 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2420 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2453 }2421 }2454 },2422 },2455 /**2423 /**2456 * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2424 * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2457 **/2425 **/2458 UpDataStructsCreateNftExData: {2426 UpDataStructsCreateNftExData: {2459 properties: 'Vec<UpDataStructsProperty>',2427 properties: 'Vec<UpDataStructsProperty>',2460 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2428 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2461 },2429 },2462 /**2430 /**2463 * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2431 * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2464 **/2432 **/2465 UpDataStructsCreateRefungibleExSingleOwner: {2433 UpDataStructsCreateRefungibleExSingleOwner: {2466 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2434 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2467 pieces: 'u128',2435 pieces: 'u128',2468 properties: 'Vec<UpDataStructsProperty>'2436 properties: 'Vec<UpDataStructsProperty>'2469 },2437 },2470 /**2438 /**2471 * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2439 * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2472 **/2440 **/2473 UpDataStructsCreateRefungibleExMultipleOwners: {2441 UpDataStructsCreateRefungibleExMultipleOwners: {2474 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2442 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2475 properties: 'Vec<UpDataStructsProperty>'2443 properties: 'Vec<UpDataStructsProperty>'2476 },2444 },2477 /**2445 /**2478 * Lookup283: pallet_unique_scheduler_v2::pallet::Call<T>2446 * Lookup281: pallet_configuration::pallet::Call<T>2479 **/2447 **/2480 PalletUniqueSchedulerV2Call: {2448 PalletConfigurationCall: {2481 _enum: {2449 _enum: {2482 schedule: {2450 set_weight_to_fee_coefficient_override: {2483 when: 'u32',2484 maybePeriodic: 'Option<(u32,u32)>',2485 priority: 'Option<u8>',2451 coeff: 'Option<u32>',2486 call: 'Call',2487 },2452 },2488 cancel: {2489 when: 'u32',2490 index: 'u32',2491 },2492 schedule_named: {2453 set_min_gas_price_override: {2493 id: '[u8;32]',2494 when: 'u32',2495 maybePeriodic: 'Option<(u32,u32)>',2496 priority: 'Option<u8>',2454 coeff: 'Option<u64>',2497 call: 'Call',2498 },2455 },2499 cancel_named: {2500 id: '[u8;32]',2501 },2502 schedule_after: {2456 set_xcm_allowed_locations: {2503 after: 'u32',2504 maybePeriodic: 'Option<(u32,u32)>',2457 locations: 'Option<Vec<XcmV1MultiLocation>>',2505 priority: 'Option<u8>',2506 call: 'Call',2507 },2458 },2508 schedule_named_after: {2459 set_app_promotion_configuration_override: {2509 id: '[u8;32]',2510 after: 'u32',2511 maybePeriodic: 'Option<(u32,u32)>',2512 priority: 'Option<u8>',2460 configuration: 'PalletConfigurationAppPromotionConfiguration'2513 call: 'Call',2514 },2461 }2515 change_named_priority: {2516 id: '[u8;32]',2517 priority: 'u8'2518 }2519 }2462 }2520 },2463 },2521 /**2464 /**2522 * Lookup286: pallet_configuration::pallet::Call<T>2465 * Lookup286: pallet_configuration::AppPromotionConfiguration<BlockNumber>2523 **/2466 **/2524 PalletConfigurationCall: {2467 PalletConfigurationAppPromotionConfiguration: {2525 _enum: {2526 set_weight_to_fee_coefficient_override: {2468 recalculationInterval: 'Option<u32>',2527 coeff: 'Option<u32>',2528 },2529 set_min_gas_price_override: {2469 pendingInterval: 'Option<u32>',2530 coeff: 'Option<u64>',2531 },2532 set_xcm_allowed_locations: {2470 intervalIncome: 'Option<Perbill>',2533 locations: 'Option<Vec<XcmV1MultiLocation>>'2471 maxStakersPerCalculation: 'Option<u8>'2534 }2535 }2536 },2472 },2537 /**2473 /**2538 * Lookup291: pallet_template_transaction_payment::Call<T>2474 * Lookup289: pallet_template_transaction_payment::Call<T>2539 **/2475 **/2540 PalletTemplateTransactionPaymentCall: 'Null',2476 PalletTemplateTransactionPaymentCall: 'Null',2541 /**2477 /**2542 * Lookup292: pallet_structure::pallet::Call<T>2478 * Lookup290: pallet_structure::pallet::Call<T>2543 **/2479 **/2544 PalletStructureCall: 'Null',2480 PalletStructureCall: 'Null',2545 /**2481 /**2546 * Lookup293: pallet_rmrk_core::pallet::Call<T>2482 * Lookup291: pallet_rmrk_core::pallet::Call<T>2547 **/2483 **/2548 PalletRmrkCoreCall: {2484 PalletRmrkCoreCall: {2549 _enum: {2485 _enum: {2550 create_collection: {2486 create_collection: {2633 }2569 }2634 }2570 }2635 },2571 },2636 /**2572 /**2637 * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2573 * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2638 **/2574 **/2639 RmrkTraitsResourceResourceTypes: {2575 RmrkTraitsResourceResourceTypes: {2640 _enum: {2576 _enum: {2641 Basic: 'RmrkTraitsResourceBasicResource',2577 Basic: 'RmrkTraitsResourceBasicResource',2642 Composable: 'RmrkTraitsResourceComposableResource',2578 Composable: 'RmrkTraitsResourceComposableResource',2643 Slot: 'RmrkTraitsResourceSlotResource'2579 Slot: 'RmrkTraitsResourceSlotResource'2644 }2580 }2645 },2581 },2646 /**2582 /**2647 * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2583 * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2648 **/2584 **/2649 RmrkTraitsResourceBasicResource: {2585 RmrkTraitsResourceBasicResource: {2650 src: 'Option<Bytes>',2586 src: 'Option<Bytes>',2651 metadata: 'Option<Bytes>',2587 metadata: 'Option<Bytes>',2652 license: 'Option<Bytes>',2588 license: 'Option<Bytes>',2653 thumb: 'Option<Bytes>'2589 thumb: 'Option<Bytes>'2654 },2590 },2655 /**2591 /**2656 * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2592 * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2657 **/2593 **/2658 RmrkTraitsResourceComposableResource: {2594 RmrkTraitsResourceComposableResource: {2659 parts: 'Vec<u32>',2595 parts: 'Vec<u32>',2660 base: 'u32',2596 base: 'u32',2663 license: 'Option<Bytes>',2599 license: 'Option<Bytes>',2664 thumb: 'Option<Bytes>'2600 thumb: 'Option<Bytes>'2665 },2601 },2666 /**2602 /**2667 * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2603 * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2668 **/2604 **/2669 RmrkTraitsResourceSlotResource: {2605 RmrkTraitsResourceSlotResource: {2670 base: 'u32',2606 base: 'u32',2671 src: 'Option<Bytes>',2607 src: 'Option<Bytes>',2674 license: 'Option<Bytes>',2610 license: 'Option<Bytes>',2675 thumb: 'Option<Bytes>'2611 thumb: 'Option<Bytes>'2676 },2612 },2677 /**2613 /**2678 * Lookup307: pallet_rmrk_equip::pallet::Call<T>2614 * Lookup305: pallet_rmrk_equip::pallet::Call<T>2679 **/2615 **/2680 PalletRmrkEquipCall: {2616 PalletRmrkEquipCall: {2681 _enum: {2617 _enum: {2682 create_base: {2618 create_base: {2695 }2631 }2696 }2632 }2697 },2633 },2698 /**2634 /**2699 * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2635 * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2700 **/2636 **/2701 RmrkTraitsPartPartType: {2637 RmrkTraitsPartPartType: {2702 _enum: {2638 _enum: {2703 FixedPart: 'RmrkTraitsPartFixedPart',2639 FixedPart: 'RmrkTraitsPartFixedPart',2704 SlotPart: 'RmrkTraitsPartSlotPart'2640 SlotPart: 'RmrkTraitsPartSlotPart'2705 }2641 }2706 },2642 },2707 /**2643 /**2708 * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2644 * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2709 **/2645 **/2710 RmrkTraitsPartFixedPart: {2646 RmrkTraitsPartFixedPart: {2711 id: 'u32',2647 id: 'u32',2712 z: 'u32',2648 z: 'u32',2713 src: 'Bytes'2649 src: 'Bytes'2714 },2650 },2715 /**2651 /**2716 * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2652 * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2717 **/2653 **/2718 RmrkTraitsPartSlotPart: {2654 RmrkTraitsPartSlotPart: {2719 id: 'u32',2655 id: 'u32',2720 equippable: 'RmrkTraitsPartEquippableList',2656 equippable: 'RmrkTraitsPartEquippableList',2721 src: 'Bytes',2657 src: 'Bytes',2722 z: 'u32'2658 z: 'u32'2723 },2659 },2724 /**2660 /**2725 * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2661 * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2726 **/2662 **/2727 RmrkTraitsPartEquippableList: {2663 RmrkTraitsPartEquippableList: {2728 _enum: {2664 _enum: {2729 All: 'Null',2665 All: 'Null',2730 Empty: 'Null',2666 Empty: 'Null',2731 Custom: 'Vec<u32>'2667 Custom: 'Vec<u32>'2732 }2668 }2733 },2669 },2734 /**2670 /**2735 * 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>>2671 * 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>>2736 **/2672 **/2737 RmrkTraitsTheme: {2673 RmrkTraitsTheme: {2738 name: 'Bytes',2674 name: 'Bytes',2739 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2675 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2740 inherit: 'bool'2676 inherit: 'bool'2741 },2677 },2742 /**2678 /**2743 * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2679 * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2744 **/2680 **/2745 RmrkTraitsThemeThemeProperty: {2681 RmrkTraitsThemeThemeProperty: {2746 key: 'Bytes',2682 key: 'Bytes',2747 value: 'Bytes'2683 value: 'Bytes'2748 },2684 },2749 /**2685 /**2750 * Lookup320: pallet_app_promotion::pallet::Call<T>2686 * Lookup318: pallet_app_promotion::pallet::Call<T>2751 **/2687 **/2752 PalletAppPromotionCall: {2688 PalletAppPromotionCall: {2753 _enum: {2689 _enum: {2754 set_admin_address: {2690 set_admin_address: {2775 }2711 }2776 }2712 }2777 },2713 },2778 /**2714 /**2779 * Lookup321: pallet_foreign_assets::module::Call<T>2715 * Lookup319: pallet_foreign_assets::module::Call<T>2780 **/2716 **/2781 PalletForeignAssetsModuleCall: {2717 PalletForeignAssetsModuleCall: {2782 _enum: {2718 _enum: {2783 register_foreign_asset: {2719 register_foreign_asset: {2792 }2728 }2793 }2729 }2794 },2730 },2795 /**2731 /**2796 * Lookup322: pallet_evm::pallet::Call<T>2732 * Lookup320: pallet_evm::pallet::Call<T>2797 **/2733 **/2798 PalletEvmCall: {2734 PalletEvmCall: {2799 _enum: {2735 _enum: {2800 withdraw: {2736 withdraw: {2835 }2771 }2836 }2772 }2837 },2773 },2838 /**2774 /**2839 * Lookup328: pallet_ethereum::pallet::Call<T>2775 * Lookup326: pallet_ethereum::pallet::Call<T>2840 **/2776 **/2841 PalletEthereumCall: {2777 PalletEthereumCall: {2842 _enum: {2778 _enum: {2843 transact: {2779 transact: {2844 transaction: 'EthereumTransactionTransactionV2'2780 transaction: 'EthereumTransactionTransactionV2'2845 }2781 }2846 }2782 }2847 },2783 },2848 /**2784 /**2849 * Lookup329: ethereum::transaction::TransactionV22785 * Lookup327: ethereum::transaction::TransactionV22850 **/2786 **/2851 EthereumTransactionTransactionV2: {2787 EthereumTransactionTransactionV2: {2852 _enum: {2788 _enum: {2853 Legacy: 'EthereumTransactionLegacyTransaction',2789 Legacy: 'EthereumTransactionLegacyTransaction',2854 EIP2930: 'EthereumTransactionEip2930Transaction',2790 EIP2930: 'EthereumTransactionEip2930Transaction',2855 EIP1559: 'EthereumTransactionEip1559Transaction'2791 EIP1559: 'EthereumTransactionEip1559Transaction'2856 }2792 }2857 },2793 },2858 /**2794 /**2859 * Lookup330: ethereum::transaction::LegacyTransaction2795 * Lookup328: ethereum::transaction::LegacyTransaction2860 **/2796 **/2861 EthereumTransactionLegacyTransaction: {2797 EthereumTransactionLegacyTransaction: {2862 nonce: 'U256',2798 nonce: 'U256',2863 gasPrice: 'U256',2799 gasPrice: 'U256',2867 input: 'Bytes',2803 input: 'Bytes',2868 signature: 'EthereumTransactionTransactionSignature'2804 signature: 'EthereumTransactionTransactionSignature'2869 },2805 },2870 /**2806 /**2871 * Lookup331: ethereum::transaction::TransactionAction2807 * Lookup329: ethereum::transaction::TransactionAction2872 **/2808 **/2873 EthereumTransactionTransactionAction: {2809 EthereumTransactionTransactionAction: {2874 _enum: {2810 _enum: {2875 Call: 'H160',2811 Call: 'H160',2876 Create: 'Null'2812 Create: 'Null'2877 }2813 }2878 },2814 },2879 /**2815 /**2880 * Lookup332: ethereum::transaction::TransactionSignature2816 * Lookup330: ethereum::transaction::TransactionSignature2881 **/2817 **/2882 EthereumTransactionTransactionSignature: {2818 EthereumTransactionTransactionSignature: {2883 v: 'u64',2819 v: 'u64',2884 r: 'H256',2820 r: 'H256',2885 s: 'H256'2821 s: 'H256'2886 },2822 },2887 /**2823 /**2888 * Lookup334: ethereum::transaction::EIP2930Transaction2824 * Lookup332: ethereum::transaction::EIP2930Transaction2889 **/2825 **/2890 EthereumTransactionEip2930Transaction: {2826 EthereumTransactionEip2930Transaction: {2891 chainId: 'u64',2827 chainId: 'u64',2892 nonce: 'U256',2828 nonce: 'U256',2900 r: 'H256',2836 r: 'H256',2901 s: 'H256'2837 s: 'H256'2902 },2838 },2903 /**2839 /**2904 * Lookup336: ethereum::transaction::AccessListItem2840 * Lookup334: ethereum::transaction::AccessListItem2905 **/2841 **/2906 EthereumTransactionAccessListItem: {2842 EthereumTransactionAccessListItem: {2907 address: 'H160',2843 address: 'H160',2908 storageKeys: 'Vec<H256>'2844 storageKeys: 'Vec<H256>'2909 },2845 },2910 /**2846 /**2911 * Lookup337: ethereum::transaction::EIP1559Transaction2847 * Lookup335: ethereum::transaction::EIP1559Transaction2912 **/2848 **/2913 EthereumTransactionEip1559Transaction: {2849 EthereumTransactionEip1559Transaction: {2914 chainId: 'u64',2850 chainId: 'u64',2915 nonce: 'U256',2851 nonce: 'U256',2924 r: 'H256',2860 r: 'H256',2925 s: 'H256'2861 s: 'H256'2926 },2862 },2927 /**2863 /**2928 * Lookup338: pallet_evm_migration::pallet::Call<T>2864 * Lookup336: pallet_evm_migration::pallet::Call<T>2929 **/2865 **/2930 PalletEvmMigrationCall: {2866 PalletEvmMigrationCall: {2931 _enum: {2867 _enum: {2932 begin: {2868 begin: {2948 }2884 }2949 }2885 }2950 },2886 },2951 /**2887 /**2952 * Lookup342: pallet_maintenance::pallet::Call<T>2888 * Lookup340: pallet_maintenance::pallet::Call<T>2953 **/2889 **/2954 PalletMaintenanceCall: {2890 PalletMaintenanceCall: {2955 _enum: ['enable', 'disable']2891 _enum: ['enable', 'disable']2956 },2892 },2957 /**2893 /**2958 * Lookup343: pallet_test_utils::pallet::Call<T>2894 * Lookup341: pallet_test_utils::pallet::Call<T>2959 **/2895 **/2960 PalletTestUtilsCall: {2896 PalletTestUtilsCall: {2961 _enum: {2897 _enum: {2962 enable: 'Null',2898 enable: 'Null',2967 value: 'u32',2903 value: 'u32',2968 },2904 },2969 inc_test_value: 'Null',2905 inc_test_value: 'Null',2970 self_canceling_inc: {2971 id: '[u8;32]',2972 maxTestValue: 'u32',2973 },2974 just_take_fee: 'Null',2906 just_take_fee: 'Null',2975 batch_all: {2907 batch_all: {2976 calls: 'Vec<Call>'2908 calls: 'Vec<Call>'2977 }2909 }2978 }2910 }2979 },2911 },2980 /**2912 /**2981 * Lookup345: pallet_sudo::pallet::Error<T>2913 * Lookup343: pallet_sudo::pallet::Error<T>2982 **/2914 **/2983 PalletSudoError: {2915 PalletSudoError: {2984 _enum: ['RequireSudo']2916 _enum: ['RequireSudo']2985 },2917 },2986 /**2918 /**2987 * Lookup347: orml_vesting::module::Error<T>2919 * Lookup345: orml_vesting::module::Error<T>2988 **/2920 **/2989 OrmlVestingModuleError: {2921 OrmlVestingModuleError: {2990 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2922 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2991 },2923 },2992 /**2924 /**2993 * Lookup348: orml_xtokens::module::Error<T>2925 * Lookup346: orml_xtokens::module::Error<T>2994 **/2926 **/2995 OrmlXtokensModuleError: {2927 OrmlXtokensModuleError: {2996 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2928 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2997 },2929 },2998 /**2930 /**2999 * Lookup351: orml_tokens::BalanceLock<Balance>2931 * Lookup349: orml_tokens::BalanceLock<Balance>3000 **/2932 **/3001 OrmlTokensBalanceLock: {2933 OrmlTokensBalanceLock: {3002 id: '[u8;8]',2934 id: '[u8;8]',3003 amount: 'u128'2935 amount: 'u128'3004 },2936 },3005 /**2937 /**3006 * Lookup353: orml_tokens::AccountData<Balance>2938 * Lookup351: orml_tokens::AccountData<Balance>3007 **/2939 **/3008 OrmlTokensAccountData: {2940 OrmlTokensAccountData: {3009 free: 'u128',2941 free: 'u128',3010 reserved: 'u128',2942 reserved: 'u128',3011 frozen: 'u128'2943 frozen: 'u128'3012 },2944 },3013 /**2945 /**3014 * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>2946 * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>3015 **/2947 **/3016 OrmlTokensReserveData: {2948 OrmlTokensReserveData: {3017 id: 'Null',2949 id: 'Null',3018 amount: 'u128'2950 amount: 'u128'3019 },2951 },3020 /**2952 /**3021 * Lookup357: orml_tokens::module::Error<T>2953 * Lookup355: orml_tokens::module::Error<T>3022 **/2954 **/3023 OrmlTokensModuleError: {2955 OrmlTokensModuleError: {3024 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2956 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3025 },2957 },3026 /**2958 /**3027 * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails2959 * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails3028 **/2960 **/3029 CumulusPalletXcmpQueueInboundChannelDetails: {2961 CumulusPalletXcmpQueueInboundChannelDetails: {3030 sender: 'u32',2962 sender: 'u32',3031 state: 'CumulusPalletXcmpQueueInboundState',2963 state: 'CumulusPalletXcmpQueueInboundState',3032 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2964 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3033 },2965 },3034 /**2966 /**3035 * Lookup360: cumulus_pallet_xcmp_queue::InboundState2967 * Lookup358: cumulus_pallet_xcmp_queue::InboundState3036 **/2968 **/3037 CumulusPalletXcmpQueueInboundState: {2969 CumulusPalletXcmpQueueInboundState: {3038 _enum: ['Ok', 'Suspended']2970 _enum: ['Ok', 'Suspended']3039 },2971 },3040 /**2972 /**3041 * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat2973 * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat3042 **/2974 **/3043 PolkadotParachainPrimitivesXcmpMessageFormat: {2975 PolkadotParachainPrimitivesXcmpMessageFormat: {3044 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2976 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3045 },2977 },3046 /**2978 /**3047 * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails2979 * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails3048 **/2980 **/3049 CumulusPalletXcmpQueueOutboundChannelDetails: {2981 CumulusPalletXcmpQueueOutboundChannelDetails: {3050 recipient: 'u32',2982 recipient: 'u32',3051 state: 'CumulusPalletXcmpQueueOutboundState',2983 state: 'CumulusPalletXcmpQueueOutboundState',3052 signalsExist: 'bool',2984 signalsExist: 'bool',3053 firstIndex: 'u16',2985 firstIndex: 'u16',3054 lastIndex: 'u16'2986 lastIndex: 'u16'3055 },2987 },3056 /**2988 /**3057 * Lookup367: cumulus_pallet_xcmp_queue::OutboundState2989 * Lookup365: cumulus_pallet_xcmp_queue::OutboundState3058 **/2990 **/3059 CumulusPalletXcmpQueueOutboundState: {2991 CumulusPalletXcmpQueueOutboundState: {3060 _enum: ['Ok', 'Suspended']2992 _enum: ['Ok', 'Suspended']3061 },2993 },3062 /**2994 /**3063 * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData2995 * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData3064 **/2996 **/3065 CumulusPalletXcmpQueueQueueConfigData: {2997 CumulusPalletXcmpQueueQueueConfigData: {3066 suspendThreshold: 'u32',2998 suspendThreshold: 'u32',3067 dropThreshold: 'u32',2999 dropThreshold: 'u32',3070 weightRestrictDecay: 'SpWeightsWeightV2Weight',3002 weightRestrictDecay: 'SpWeightsWeightV2Weight',3071 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3003 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3072 },3004 },3073 /**3005 /**3074 * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>3006 * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>3075 **/3007 **/3076 CumulusPalletXcmpQueueError: {3008 CumulusPalletXcmpQueueError: {3077 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3009 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3078 },3010 },3079 /**3011 /**3080 * Lookup372: pallet_xcm::pallet::Error<T>3012 * Lookup370: pallet_xcm::pallet::Error<T>3081 **/3013 **/3082 PalletXcmError: {3014 PalletXcmError: {3083 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3015 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3084 },3016 },3085 /**3017 /**3086 * Lookup373: cumulus_pallet_xcm::pallet::Error<T>3018 * Lookup371: cumulus_pallet_xcm::pallet::Error<T>3087 **/3019 **/3088 CumulusPalletXcmError: 'Null',3020 CumulusPalletXcmError: 'Null',3089 /**3021 /**3090 * Lookup374: cumulus_pallet_dmp_queue::ConfigData3022 * Lookup372: cumulus_pallet_dmp_queue::ConfigData3091 **/3023 **/3092 CumulusPalletDmpQueueConfigData: {3024 CumulusPalletDmpQueueConfigData: {3093 maxIndividual: 'SpWeightsWeightV2Weight'3025 maxIndividual: 'SpWeightsWeightV2Weight'3094 },3026 },3095 /**3027 /**3096 * Lookup375: cumulus_pallet_dmp_queue::PageIndexData3028 * Lookup373: cumulus_pallet_dmp_queue::PageIndexData3097 **/3029 **/3098 CumulusPalletDmpQueuePageIndexData: {3030 CumulusPalletDmpQueuePageIndexData: {3099 beginUsed: 'u32',3031 beginUsed: 'u32',3100 endUsed: 'u32',3032 endUsed: 'u32',3101 overweightCount: 'u64'3033 overweightCount: 'u64'3102 },3034 },3103 /**3035 /**3104 * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>3036 * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>3105 **/3037 **/3106 CumulusPalletDmpQueueError: {3038 CumulusPalletDmpQueueError: {3107 _enum: ['Unknown', 'OverLimit']3039 _enum: ['Unknown', 'OverLimit']3108 },3040 },3109 /**3041 /**3110 * Lookup382: pallet_unique::Error<T>3042 * Lookup380: pallet_unique::Error<T>3111 **/3043 **/3112 PalletUniqueError: {3044 PalletUniqueError: {3113 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3045 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3114 },3046 },3115 /**3116 * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>3117 **/3118 PalletUniqueSchedulerV2BlockAgenda: {3119 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',3120 freePlaces: 'u32'3121 },3122 /**3123 * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3124 **/3125 PalletUniqueSchedulerV2Scheduled: {3126 maybeId: 'Option<[u8;32]>',3127 priority: 'u8',3128 call: 'PalletUniqueSchedulerV2ScheduledCall',3129 maybePeriodic: 'Option<(u32,u32)>',3130 origin: 'OpalRuntimeOriginCaller'3131 },3132 /**3133 * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>3134 **/3135 PalletUniqueSchedulerV2ScheduledCall: {3136 _enum: {3137 Inline: 'Bytes',3138 PreimageLookup: {3139 _alias: {3140 hash_: 'hash',3141 },3142 hash_: 'H256',3143 unboundedLen: 'u32'3144 }3145 }3146 },3147 /**3148 * Lookup389: opal_runtime::OriginCaller3149 **/3150 OpalRuntimeOriginCaller: {3151 _enum: {3152 system: 'FrameSupportDispatchRawOrigin',3153 __Unused1: 'Null',3154 __Unused2: 'Null',3155 __Unused3: 'Null',3156 Void: 'SpCoreVoid',3157 __Unused5: 'Null',3158 __Unused6: 'Null',3159 __Unused7: 'Null',3160 __Unused8: 'Null',3161 __Unused9: 'Null',3162 __Unused10: 'Null',3163 __Unused11: 'Null',3164 __Unused12: 'Null',3165 __Unused13: 'Null',3166 __Unused14: 'Null',3167 __Unused15: 'Null',3168 __Unused16: 'Null',3169 __Unused17: 'Null',3170 __Unused18: 'Null',3171 __Unused19: 'Null',3172 __Unused20: 'Null',3173 __Unused21: 'Null',3174 __Unused22: 'Null',3175 __Unused23: 'Null',3176 __Unused24: 'Null',3177 __Unused25: 'Null',3178 __Unused26: 'Null',3179 __Unused27: 'Null',3180 __Unused28: 'Null',3181 __Unused29: 'Null',3182 __Unused30: 'Null',3183 __Unused31: 'Null',3184 __Unused32: 'Null',3185 __Unused33: 'Null',3186 __Unused34: 'Null',3187 __Unused35: 'Null',3188 __Unused36: 'Null',3189 __Unused37: 'Null',3190 __Unused38: 'Null',3191 __Unused39: 'Null',3192 __Unused40: 'Null',3193 __Unused41: 'Null',3194 __Unused42: 'Null',3195 __Unused43: 'Null',3196 __Unused44: 'Null',3197 __Unused45: 'Null',3198 __Unused46: 'Null',3199 __Unused47: 'Null',3200 __Unused48: 'Null',3201 __Unused49: 'Null',3202 __Unused50: 'Null',3203 PolkadotXcm: 'PalletXcmOrigin',3204 CumulusXcm: 'CumulusPalletXcmOrigin',3205 __Unused53: 'Null',3206 __Unused54: 'Null',3207 __Unused55: 'Null',3208 __Unused56: 'Null',3209 __Unused57: 'Null',3210 __Unused58: 'Null',3211 __Unused59: 'Null',3212 __Unused60: 'Null',3213 __Unused61: 'Null',3214 __Unused62: 'Null',3215 __Unused63: 'Null',3216 __Unused64: 'Null',3217 __Unused65: 'Null',3218 __Unused66: 'Null',3219 __Unused67: 'Null',3220 __Unused68: 'Null',3221 __Unused69: 'Null',3222 __Unused70: 'Null',3223 __Unused71: 'Null',3224 __Unused72: 'Null',3225 __Unused73: 'Null',3226 __Unused74: 'Null',3227 __Unused75: 'Null',3228 __Unused76: 'Null',3229 __Unused77: 'Null',3230 __Unused78: 'Null',3231 __Unused79: 'Null',3232 __Unused80: 'Null',3233 __Unused81: 'Null',3234 __Unused82: 'Null',3235 __Unused83: 'Null',3236 __Unused84: 'Null',3237 __Unused85: 'Null',3238 __Unused86: 'Null',3239 __Unused87: 'Null',3240 __Unused88: 'Null',3241 __Unused89: 'Null',3242 __Unused90: 'Null',3243 __Unused91: 'Null',3244 __Unused92: 'Null',3245 __Unused93: 'Null',3246 __Unused94: 'Null',3247 __Unused95: 'Null',3248 __Unused96: 'Null',3249 __Unused97: 'Null',3250 __Unused98: 'Null',3251 __Unused99: 'Null',3252 __Unused100: 'Null',3253 Ethereum: 'PalletEthereumRawOrigin'3254 }3255 },3256 /**3257 * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3258 **/3259 FrameSupportDispatchRawOrigin: {3260 _enum: {3261 Root: 'Null',3262 Signed: 'AccountId32',3263 None: 'Null'3264 }3265 },3266 /**3267 * Lookup391: pallet_xcm::pallet::Origin3268 **/3269 PalletXcmOrigin: {3270 _enum: {3271 Xcm: 'XcmV1MultiLocation',3272 Response: 'XcmV1MultiLocation'3273 }3274 },3275 /**3276 * Lookup392: cumulus_pallet_xcm::pallet::Origin3277 **/3278 CumulusPalletXcmOrigin: {3279 _enum: {3280 Relay: 'Null',3281 SiblingParachain: 'u32'3282 }3283 },3284 /**3285 * Lookup393: pallet_ethereum::RawOrigin3286 **/3287 PalletEthereumRawOrigin: {3288 _enum: {3289 EthereumTransaction: 'H160'3290 }3291 },3292 /**3293 * Lookup394: sp_core::Void3294 **/3295 SpCoreVoid: 'Null',3296 /**3297 * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>3298 **/3299 PalletUniqueSchedulerV2Error: {3300 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']3301 },3302 /**3047 /**3303 * Lookup400: pallet_configuration::pallet::Error<T>3048 * Lookup381: pallet_configuration::pallet::Error<T>3304 **/3049 **/3305 PalletConfigurationError: {3050 PalletConfigurationError: {3306 _enum: ['InconsistentConfiguration']3051 _enum: ['InconsistentConfiguration']3307 },3052 },3308 /**3053 /**3309 * Lookup401: up_data_structs::Collection<sp_core::crypto::AccountId32>3054 * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>3310 **/3055 **/3311 UpDataStructsCollection: {3056 UpDataStructsCollection: {3312 owner: 'AccountId32',3057 owner: 'AccountId32',3313 mode: 'UpDataStructsCollectionMode',3058 mode: 'UpDataStructsCollectionMode',3319 permissions: 'UpDataStructsCollectionPermissions',3064 permissions: 'UpDataStructsCollectionPermissions',3320 flags: '[u8;1]'3065 flags: '[u8;1]'3321 },3066 },3322 /**3067 /**3323 * Lookup402: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3068 * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3324 **/3069 **/3325 UpDataStructsSponsorshipStateAccountId32: {3070 UpDataStructsSponsorshipStateAccountId32: {3326 _enum: {3071 _enum: {3327 Disabled: 'Null',3072 Disabled: 'Null',3328 Unconfirmed: 'AccountId32',3073 Unconfirmed: 'AccountId32',3329 Confirmed: 'AccountId32'3074 Confirmed: 'AccountId32'3330 }3075 }3331 },3076 },3332 /**3077 /**3333 * Lookup404: up_data_structs::Properties3078 * Lookup385: up_data_structs::Properties3334 **/3079 **/3335 UpDataStructsProperties: {3080 UpDataStructsProperties: {3336 map: 'UpDataStructsPropertiesMapBoundedVec',3081 map: 'UpDataStructsPropertiesMapBoundedVec',3337 consumedSpace: 'u32',3082 consumedSpace: 'u32',3338 spaceLimit: 'u32'3083 spaceLimit: 'u32'3339 },3084 },3340 /**3085 /**3341 * Lookup405: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3086 * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3342 **/3087 **/3343 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3088 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3344 /**3089 /**3345 * Lookup410: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3090 * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3346 **/3091 **/3347 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3092 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3348 /**3093 /**3349 * Lookup417: up_data_structs::CollectionStats3094 * Lookup398: up_data_structs::CollectionStats3350 **/3095 **/3351 UpDataStructsCollectionStats: {3096 UpDataStructsCollectionStats: {3352 created: 'u32',3097 created: 'u32',3353 destroyed: 'u32',3098 destroyed: 'u32',3354 alive: 'u32'3099 alive: 'u32'3355 },3100 },3356 /**3101 /**3357 * Lookup418: up_data_structs::TokenChild3102 * Lookup399: up_data_structs::TokenChild3358 **/3103 **/3359 UpDataStructsTokenChild: {3104 UpDataStructsTokenChild: {3360 token: 'u32',3105 token: 'u32',3361 collection: 'u32'3106 collection: 'u32'3362 },3107 },3363 /**3108 /**3364 * Lookup419: PhantomType::up_data_structs<T>3109 * Lookup400: PhantomType::up_data_structs<T>3365 **/3110 **/3366 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3111 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3367 /**3112 /**3368 * Lookup421: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3113 * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3369 **/3114 **/3370 UpDataStructsTokenData: {3115 UpDataStructsTokenData: {3371 properties: 'Vec<UpDataStructsProperty>',3116 properties: 'Vec<UpDataStructsProperty>',3372 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3117 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3373 pieces: 'u128'3118 pieces: 'u128'3374 },3119 },3375 /**3120 /**3376 * Lookup423: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3121 * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3377 **/3122 **/3378 UpDataStructsRpcCollection: {3123 UpDataStructsRpcCollection: {3379 owner: 'AccountId32',3124 owner: 'AccountId32',3380 mode: 'UpDataStructsCollectionMode',3125 mode: 'UpDataStructsCollectionMode',3389 readOnly: 'bool',3134 readOnly: 'bool',3390 flags: 'UpDataStructsRpcCollectionFlags'3135 flags: 'UpDataStructsRpcCollectionFlags'3391 },3136 },3392 /**3137 /**3393 * Lookup424: up_data_structs::RpcCollectionFlags3138 * Lookup405: up_data_structs::RpcCollectionFlags3394 **/3139 **/3395 UpDataStructsRpcCollectionFlags: {3140 UpDataStructsRpcCollectionFlags: {3396 foreign: 'bool',3141 foreign: 'bool',3397 erc721metadata: 'bool'3142 erc721metadata: 'bool'3398 },3143 },3399 /**3144 /**3400 * 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>3145 * 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>3401 **/3146 **/3402 RmrkTraitsCollectionCollectionInfo: {3147 RmrkTraitsCollectionCollectionInfo: {3403 issuer: 'AccountId32',3148 issuer: 'AccountId32',3404 metadata: 'Bytes',3149 metadata: 'Bytes',3405 max: 'Option<u32>',3150 max: 'Option<u32>',3406 symbol: 'Bytes',3151 symbol: 'Bytes',3407 nftsCount: 'u32'3152 nftsCount: 'u32'3408 },3153 },3409 /**3154 /**3410 * Lookup426: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3155 * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3411 **/3156 **/3412 RmrkTraitsNftNftInfo: {3157 RmrkTraitsNftNftInfo: {3413 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3158 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3414 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3159 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3415 metadata: 'Bytes',3160 metadata: 'Bytes',3416 equipped: 'bool',3161 equipped: 'bool',3417 pending: 'bool'3162 pending: 'bool'3418 },3163 },3419 /**3164 /**3420 * Lookup428: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3165 * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3421 **/3166 **/3422 RmrkTraitsNftRoyaltyInfo: {3167 RmrkTraitsNftRoyaltyInfo: {3423 recipient: 'AccountId32',3168 recipient: 'AccountId32',3424 amount: 'Permill'3169 amount: 'Permill'3425 },3170 },3426 /**3171 /**3427 * Lookup429: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3172 * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3428 **/3173 **/3429 RmrkTraitsResourceResourceInfo: {3174 RmrkTraitsResourceResourceInfo: {3430 id: 'u32',3175 id: 'u32',3431 resource: 'RmrkTraitsResourceResourceTypes',3176 resource: 'RmrkTraitsResourceResourceTypes',3432 pending: 'bool',3177 pending: 'bool',3433 pendingRemoval: 'bool'3178 pendingRemoval: 'bool'3434 },3179 },3435 /**3180 /**3436 * Lookup430: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3181 * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3437 **/3182 **/3438 RmrkTraitsPropertyPropertyInfo: {3183 RmrkTraitsPropertyPropertyInfo: {3439 key: 'Bytes',3184 key: 'Bytes',3440 value: 'Bytes'3185 value: 'Bytes'3441 },3186 },3442 /**3187 /**3443 * Lookup431: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3188 * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3444 **/3189 **/3445 RmrkTraitsBaseBaseInfo: {3190 RmrkTraitsBaseBaseInfo: {3446 issuer: 'AccountId32',3191 issuer: 'AccountId32',3447 baseType: 'Bytes',3192 baseType: 'Bytes',3448 symbol: 'Bytes'3193 symbol: 'Bytes'3449 },3194 },3450 /**3195 /**3451 * Lookup432: rmrk_traits::nft::NftChild3196 * Lookup413: rmrk_traits::nft::NftChild3452 **/3197 **/3453 RmrkTraitsNftNftChild: {3198 RmrkTraitsNftNftChild: {3454 collectionId: 'u32',3199 collectionId: 'u32',3455 nftId: 'u32'3200 nftId: 'u32'3456 },3201 },3457 /**3202 /**3458 * Lookup434: pallet_common::pallet::Error<T>3203 * Lookup415: pallet_common::pallet::Error<T>3459 **/3204 **/3460 PalletCommonError: {3205 PalletCommonError: {3461 _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']3206 _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']3462 },3207 },3463 /**3208 /**3464 * Lookup436: pallet_fungible::pallet::Error<T>3209 * Lookup417: pallet_fungible::pallet::Error<T>3465 **/3210 **/3466 PalletFungibleError: {3211 PalletFungibleError: {3467 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3212 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3468 },3213 },3469 /**3214 /**3470 * Lookup437: pallet_refungible::ItemData3215 * Lookup418: pallet_refungible::ItemData3471 **/3216 **/3472 PalletRefungibleItemData: {3217 PalletRefungibleItemData: {3473 constData: 'Bytes'3218 constData: 'Bytes'3474 },3219 },3475 /**3220 /**3476 * Lookup442: pallet_refungible::pallet::Error<T>3221 * Lookup423: pallet_refungible::pallet::Error<T>3477 **/3222 **/3478 PalletRefungibleError: {3223 PalletRefungibleError: {3479 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3224 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3480 },3225 },3481 /**3226 /**3482 * Lookup443: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3227 * Lookup424: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3483 **/3228 **/3484 PalletNonfungibleItemData: {3229 PalletNonfungibleItemData: {3485 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3230 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3486 },3231 },3487 /**3232 /**3488 * Lookup445: up_data_structs::PropertyScope3233 * Lookup426: up_data_structs::PropertyScope3489 **/3234 **/3490 UpDataStructsPropertyScope: {3235 UpDataStructsPropertyScope: {3491 _enum: ['None', 'Rmrk']3236 _enum: ['None', 'Rmrk']3492 },3237 },3493 /**3238 /**3494 * Lookup447: pallet_nonfungible::pallet::Error<T>3239 * Lookup428: pallet_nonfungible::pallet::Error<T>3495 **/3240 **/3496 PalletNonfungibleError: {3241 PalletNonfungibleError: {3497 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3242 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3498 },3243 },3499 /**3244 /**3500 * Lookup448: pallet_structure::pallet::Error<T>3245 * Lookup429: pallet_structure::pallet::Error<T>3501 **/3246 **/3502 PalletStructureError: {3247 PalletStructureError: {3503 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3248 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3504 },3249 },3505 /**3250 /**3506 * Lookup449: pallet_rmrk_core::pallet::Error<T>3251 * Lookup430: pallet_rmrk_core::pallet::Error<T>3507 **/3252 **/3508 PalletRmrkCoreError: {3253 PalletRmrkCoreError: {3509 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3254 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3510 },3255 },3511 /**3256 /**3512 * Lookup451: pallet_rmrk_equip::pallet::Error<T>3257 * Lookup432: pallet_rmrk_equip::pallet::Error<T>3513 **/3258 **/3514 PalletRmrkEquipError: {3259 PalletRmrkEquipError: {3515 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3260 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3516 },3261 },3517 /**3262 /**3518 * Lookup457: pallet_app_promotion::pallet::Error<T>3263 * Lookup438: pallet_app_promotion::pallet::Error<T>3519 **/3264 **/3520 PalletAppPromotionError: {3265 PalletAppPromotionError: {3521 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3266 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3522 },3267 },3523 /**3268 /**3524 * Lookup458: pallet_foreign_assets::module::Error<T>3269 * Lookup439: pallet_foreign_assets::module::Error<T>3525 **/3270 **/3526 PalletForeignAssetsModuleError: {3271 PalletForeignAssetsModuleError: {3527 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3272 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3528 },3273 },3529 /**3274 /**3530 * Lookup460: pallet_evm::pallet::Error<T>3275 * Lookup441: pallet_evm::pallet::Error<T>3531 **/3276 **/3532 PalletEvmError: {3277 PalletEvmError: {3533 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3278 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3534 },3279 },3535 /**3280 /**3536 * Lookup463: fp_rpc::TransactionStatus3281 * Lookup444: fp_rpc::TransactionStatus3537 **/3282 **/3538 FpRpcTransactionStatus: {3283 FpRpcTransactionStatus: {3539 transactionHash: 'H256',3284 transactionHash: 'H256',3540 transactionIndex: 'u32',3285 transactionIndex: 'u32',3544 logs: 'Vec<EthereumLog>',3289 logs: 'Vec<EthereumLog>',3545 logsBloom: 'EthbloomBloom'3290 logsBloom: 'EthbloomBloom'3546 },3291 },3547 /**3292 /**3548 * Lookup465: ethbloom::Bloom3293 * Lookup446: ethbloom::Bloom3549 **/3294 **/3550 EthbloomBloom: '[u8;256]',3295 EthbloomBloom: '[u8;256]',3551 /**3296 /**3552 * Lookup467: ethereum::receipt::ReceiptV33297 * Lookup448: ethereum::receipt::ReceiptV33553 **/3298 **/3554 EthereumReceiptReceiptV3: {3299 EthereumReceiptReceiptV3: {3555 _enum: {3300 _enum: {3556 Legacy: 'EthereumReceiptEip658ReceiptData',3301 Legacy: 'EthereumReceiptEip658ReceiptData',3557 EIP2930: 'EthereumReceiptEip658ReceiptData',3302 EIP2930: 'EthereumReceiptEip658ReceiptData',3558 EIP1559: 'EthereumReceiptEip658ReceiptData'3303 EIP1559: 'EthereumReceiptEip658ReceiptData'3559 }3304 }3560 },3305 },3561 /**3306 /**3562 * Lookup468: ethereum::receipt::EIP658ReceiptData3307 * Lookup449: ethereum::receipt::EIP658ReceiptData3563 **/3308 **/3564 EthereumReceiptEip658ReceiptData: {3309 EthereumReceiptEip658ReceiptData: {3565 statusCode: 'u8',3310 statusCode: 'u8',3566 usedGas: 'U256',3311 usedGas: 'U256',3567 logsBloom: 'EthbloomBloom',3312 logsBloom: 'EthbloomBloom',3568 logs: 'Vec<EthereumLog>'3313 logs: 'Vec<EthereumLog>'3569 },3314 },3570 /**3315 /**3571 * Lookup469: ethereum::block::Block<ethereum::transaction::TransactionV2>3316 * Lookup450: ethereum::block::Block<ethereum::transaction::TransactionV2>3572 **/3317 **/3573 EthereumBlock: {3318 EthereumBlock: {3574 header: 'EthereumHeader',3319 header: 'EthereumHeader',3575 transactions: 'Vec<EthereumTransactionTransactionV2>',3320 transactions: 'Vec<EthereumTransactionTransactionV2>',3576 ommers: 'Vec<EthereumHeader>'3321 ommers: 'Vec<EthereumHeader>'3577 },3322 },3578 /**3323 /**3579 * Lookup470: ethereum::header::Header3324 * Lookup451: ethereum::header::Header3580 **/3325 **/3581 EthereumHeader: {3326 EthereumHeader: {3582 parentHash: 'H256',3327 parentHash: 'H256',3583 ommersHash: 'H256',3328 ommersHash: 'H256',3595 mixHash: 'H256',3340 mixHash: 'H256',3596 nonce: 'EthereumTypesHashH64'3341 nonce: 'EthereumTypesHashH64'3597 },3342 },3598 /**3343 /**3599 * Lookup471: ethereum_types::hash::H643344 * Lookup452: ethereum_types::hash::H643600 **/3345 **/3601 EthereumTypesHashH64: '[u8;8]',3346 EthereumTypesHashH64: '[u8;8]',3602 /**3347 /**3603 * Lookup476: pallet_ethereum::pallet::Error<T>3348 * Lookup457: pallet_ethereum::pallet::Error<T>3604 **/3349 **/3605 PalletEthereumError: {3350 PalletEthereumError: {3606 _enum: ['InvalidSignature', 'PreLogExists']3351 _enum: ['InvalidSignature', 'PreLogExists']3607 },3352 },3608 /**3353 /**3609 * Lookup477: pallet_evm_coder_substrate::pallet::Error<T>3354 * Lookup458: pallet_evm_coder_substrate::pallet::Error<T>3610 **/3355 **/3611 PalletEvmCoderSubstrateError: {3356 PalletEvmCoderSubstrateError: {3612 _enum: ['OutOfGas', 'OutOfFund']3357 _enum: ['OutOfGas', 'OutOfFund']3613 },3358 },3614 /**3359 /**3615 * Lookup478: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3360 * Lookup459: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3616 **/3361 **/3617 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3362 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3618 _enum: {3363 _enum: {3619 Disabled: 'Null',3364 Disabled: 'Null',3620 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3365 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3621 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3366 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3622 }3367 }3623 },3368 },3624 /**3369 /**3625 * Lookup479: pallet_evm_contract_helpers::SponsoringModeT3370 * Lookup460: pallet_evm_contract_helpers::SponsoringModeT3626 **/3371 **/3627 PalletEvmContractHelpersSponsoringModeT: {3372 PalletEvmContractHelpersSponsoringModeT: {3628 _enum: ['Disabled', 'Allowlisted', 'Generous']3373 _enum: ['Disabled', 'Allowlisted', 'Generous']3629 },3374 },3630 /**3375 /**3631 * Lookup485: pallet_evm_contract_helpers::pallet::Error<T>3376 * Lookup466: pallet_evm_contract_helpers::pallet::Error<T>3632 **/3377 **/3633 PalletEvmContractHelpersError: {3378 PalletEvmContractHelpersError: {3634 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3379 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3635 },3380 },3636 /**3381 /**3637 * Lookup486: pallet_evm_migration::pallet::Error<T>3382 * Lookup467: pallet_evm_migration::pallet::Error<T>3638 **/3383 **/3639 PalletEvmMigrationError: {3384 PalletEvmMigrationError: {3640 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3385 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3641 },3386 },3642 /**3387 /**3643 * Lookup487: pallet_maintenance::pallet::Error<T>3388 * Lookup468: pallet_maintenance::pallet::Error<T>3644 **/3389 **/3645 PalletMaintenanceError: 'Null',3390 PalletMaintenanceError: 'Null',3646 /**3391 /**3647 * Lookup488: pallet_test_utils::pallet::Error<T>3392 * Lookup469: pallet_test_utils::pallet::Error<T>3648 **/3393 **/3649 PalletTestUtilsError: {3394 PalletTestUtilsError: {3650 _enum: ['TestPalletDisabled', 'TriggerRollback']3395 _enum: ['TestPalletDisabled', 'TriggerRollback']3651 },3396 },3652 /**3397 /**3653 * Lookup490: sp_runtime::MultiSignature3398 * Lookup471: sp_runtime::MultiSignature3654 **/3399 **/3655 SpRuntimeMultiSignature: {3400 SpRuntimeMultiSignature: {3656 _enum: {3401 _enum: {3657 Ed25519: 'SpCoreEd25519Signature',3402 Ed25519: 'SpCoreEd25519Signature',3658 Sr25519: 'SpCoreSr25519Signature',3403 Sr25519: 'SpCoreSr25519Signature',3659 Ecdsa: 'SpCoreEcdsaSignature'3404 Ecdsa: 'SpCoreEcdsaSignature'3660 }3405 }3661 },3406 },3662 /**3407 /**3663 * Lookup491: sp_core::ed25519::Signature3408 * Lookup472: sp_core::ed25519::Signature3664 **/3409 **/3665 SpCoreEd25519Signature: '[u8;64]',3410 SpCoreEd25519Signature: '[u8;64]',3666 /**3411 /**3667 * Lookup493: sp_core::sr25519::Signature3412 * Lookup474: sp_core::sr25519::Signature3668 **/3413 **/3669 SpCoreSr25519Signature: '[u8;64]',3414 SpCoreSr25519Signature: '[u8;64]',3670 /**3415 /**3671 * Lookup494: sp_core::ecdsa::Signature3416 * Lookup475: sp_core::ecdsa::Signature3672 **/3417 **/3673 SpCoreEcdsaSignature: '[u8;65]',3418 SpCoreEcdsaSignature: '[u8;65]',3674 /**3419 /**3675 * Lookup497: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3420 * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3676 **/3421 **/3677 FrameSystemExtensionsCheckSpecVersion: 'Null',3422 FrameSystemExtensionsCheckSpecVersion: 'Null',3678 /**3423 /**3679 * Lookup498: frame_system::extensions::check_tx_version::CheckTxVersion<T>3424 * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>3680 **/3425 **/3681 FrameSystemExtensionsCheckTxVersion: 'Null',3426 FrameSystemExtensionsCheckTxVersion: 'Null',3682 /**3427 /**3683 * Lookup499: frame_system::extensions::check_genesis::CheckGenesis<T>3428 * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>3684 **/3429 **/3685 FrameSystemExtensionsCheckGenesis: 'Null',3430 FrameSystemExtensionsCheckGenesis: 'Null',3686 /**3431 /**3687 * Lookup502: frame_system::extensions::check_nonce::CheckNonce<T>3432 * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>3688 **/3433 **/3689 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3434 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3690 /**3435 /**3691 * Lookup503: frame_system::extensions::check_weight::CheckWeight<T>3436 * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>3692 **/3437 **/3693 FrameSystemExtensionsCheckWeight: 'Null',3438 FrameSystemExtensionsCheckWeight: 'Null',3694 /**3439 /**3695 * Lookup504: opal_runtime::runtime_common::maintenance::CheckMaintenance3440 * Lookup485: opal_runtime::runtime_common::maintenance::CheckMaintenance3696 **/3441 **/3697 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3442 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3698 /**3443 /**3699 * Lookup505: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3444 * Lookup486: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3700 **/3445 **/3701 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3446 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3702 /**3447 /**3703 * Lookup506: opal_runtime::Runtime3448 * Lookup487: opal_runtime::Runtime3704 **/3449 **/3705 OpalRuntimeRuntime: 'Null',3450 OpalRuntimeRuntime: 'Null',3706 /**3451 /**3707 * Lookup507: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3452 * Lookup488: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3708 **/3453 **/3709 PalletEthereumFakeTransactionFinalizer: 'Null'3454 PalletEthereumFakeTransactionFinalizer: 'Null'3710};3455};37113456tests/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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1109,43 +1109,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletUniqueSchedulerV2Event (89) */
- 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 PalletCommonEvent (92) */
+ /** @name PalletCommonEvent (89) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1194,7 +1158,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
}
- /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */
+ /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */
interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
readonly isSubstrate: boolean;
readonly asSubstrate: AccountId32;
@@ -1203,14 +1167,14 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletStructureEvent (99) */
+ /** @name PalletStructureEvent (96) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (100) */
+ /** @name PalletRmrkCoreEvent (97) */
interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -1300,7 +1264,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */
interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1309,7 +1273,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name PalletRmrkEquipEvent (105) */
+ /** @name PalletRmrkEquipEvent (102) */
interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -1324,7 +1288,7 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
- /** @name PalletAppPromotionEvent (106) */
+ /** @name PalletAppPromotionEvent (103) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1337,7 +1301,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (107) */
+ /** @name PalletForeignAssetsModuleEvent (104) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1364,7 +1328,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (108) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (105) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1372,7 +1336,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (109) */
+ /** @name PalletEvmEvent (106) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: {
@@ -1397,14 +1361,14 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
}
- /** @name EthereumLog (110) */
+ /** @name EthereumLog (107) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (112) */
+ /** @name PalletEthereumEvent (109) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: {
@@ -1416,7 +1380,7 @@
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (113) */
+ /** @name EvmCoreErrorExitReason (110) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1429,7 +1393,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (114) */
+ /** @name EvmCoreErrorExitSucceed (111) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1437,7 +1401,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (115) */
+ /** @name EvmCoreErrorExitError (112) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1458,13 +1422,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (118) */
+ /** @name EvmCoreErrorExitRevert (115) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (119) */
+ /** @name EvmCoreErrorExitFatal (116) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1475,7 +1439,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (120) */
+ /** @name PalletEvmContractHelpersEvent (117) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1486,20 +1450,20 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name PalletEvmMigrationEvent (121) */
+ /** @name PalletEvmMigrationEvent (118) */
interface PalletEvmMigrationEvent extends Enum {
readonly isTestEvent: boolean;
readonly type: 'TestEvent';
}
- /** @name PalletMaintenanceEvent (122) */
+ /** @name PalletMaintenanceEvent (119) */
interface PalletMaintenanceEvent extends Enum {
readonly isMaintenanceEnabled: boolean;
readonly isMaintenanceDisabled: boolean;
readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
}
- /** @name PalletTestUtilsEvent (123) */
+ /** @name PalletTestUtilsEvent (120) */
interface PalletTestUtilsEvent extends Enum {
readonly isValueIsSet: boolean;
readonly isShouldRollback: boolean;
@@ -1507,7 +1471,7 @@
readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
}
- /** @name FrameSystemPhase (124) */
+ /** @name FrameSystemPhase (121) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1516,13 +1480,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (124) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (127) */
+ /** @name FrameSystemCall (125) */
interface FrameSystemCall extends Enum {
readonly isFillBlock: boolean;
readonly asFillBlock: {
@@ -1564,21 +1528,21 @@
readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (132) */
+ /** @name FrameSystemLimitsBlockWeights (130) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: SpWeightsWeightV2Weight;
readonly maxBlock: SpWeightsWeightV2Weight;
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (134) */
+ /** @name FrameSystemLimitsWeightsPerClass (132) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: SpWeightsWeightV2Weight;
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1586,25 +1550,25 @@
readonly reserved: Option<SpWeightsWeightV2Weight>;
}
- /** @name FrameSystemLimitsBlockLength (136) */
+ /** @name FrameSystemLimitsBlockLength (134) */
interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportDispatchPerDispatchClassU32;
}
- /** @name FrameSupportDispatchPerDispatchClassU32 (137) */
+ /** @name FrameSupportDispatchPerDispatchClassU32 (135) */
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name SpWeightsRuntimeDbWeight (138) */
+ /** @name SpWeightsRuntimeDbWeight (136) */
interface SpWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (139) */
+ /** @name SpVersionRuntimeVersion (137) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1616,7 +1580,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (144) */
+ /** @name FrameSystemError (142) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1627,7 +1591,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (145) */
+ /** @name PolkadotPrimitivesV2PersistedValidationData (143) */
interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
@@ -1635,18 +1599,18 @@
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */
interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (149) */
+ /** @name SpTrieStorageProof (147) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1654,7 +1618,7 @@
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */
interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
@@ -1664,7 +1628,7 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */
interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
@@ -1677,13 +1641,13 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (162) */
+ /** @name CumulusPalletParachainSystemCall (160) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1704,7 +1668,7 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
@@ -1712,19 +1676,19 @@
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (171) */
+ /** @name CumulusPalletParachainSystemError (169) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1737,14 +1701,14 @@
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
}
- /** @name PalletBalancesBalanceLock (173) */
+ /** @name PalletBalancesBalanceLock (171) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (174) */
+ /** @name PalletBalancesReasons (172) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -1752,20 +1716,20 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (177) */
+ /** @name PalletBalancesReserveData (175) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesReleases (179) */
+ /** @name PalletBalancesReleases (177) */
interface PalletBalancesReleases extends Enum {
readonly isV100: boolean;
readonly isV200: boolean;
readonly type: 'V100' | 'V200';
}
- /** @name PalletBalancesCall (180) */
+ /** @name PalletBalancesCall (178) */
interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1802,7 +1766,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesError (183) */
+ /** @name PalletBalancesError (181) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -1815,7 +1779,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (185) */
+ /** @name PalletTimestampCall (183) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -1824,14 +1788,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (187) */
+ /** @name PalletTransactionPaymentReleases (185) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (188) */
+ /** @name PalletTreasuryProposal (186) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -1839,7 +1803,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (191) */
+ /** @name PalletTreasuryCall (189) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -1866,10 +1830,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (194) */
+ /** @name FrameSupportPalletId (192) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (195) */
+ /** @name PalletTreasuryError (193) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -1879,7 +1843,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (196) */
+ /** @name PalletSudoCall (194) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -1902,7 +1866,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (198) */
+ /** @name OrmlVestingModuleCall (196) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -1922,7 +1886,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlXtokensModuleCall (200) */
+ /** @name OrmlXtokensModuleCall (198) */
interface OrmlXtokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1969,7 +1933,7 @@
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
- /** @name XcmVersionedMultiAsset (201) */
+ /** @name XcmVersionedMultiAsset (199) */
interface XcmVersionedMultiAsset extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiAsset;
@@ -1978,7 +1942,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name OrmlTokensModuleCall (204) */
+ /** @name OrmlTokensModuleCall (202) */
interface OrmlTokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2015,7 +1979,7 @@
readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
}
- /** @name CumulusPalletXcmpQueueCall (205) */
+ /** @name CumulusPalletXcmpQueueCall (203) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2051,7 +2015,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (206) */
+ /** @name PalletXcmCall (204) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -2113,7 +2077,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedXcm (207) */
+ /** @name XcmVersionedXcm (205) */
interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -2124,7 +2088,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (208) */
+ /** @name XcmV0Xcm (206) */
interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2187,7 +2151,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0Order (210) */
+ /** @name XcmV0Order (208) */
interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -2235,14 +2199,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (212) */
+ /** @name XcmV0Response (210) */
interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV1Xcm (213) */
+ /** @name XcmV1Xcm (211) */
interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2311,7 +2275,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1Order (215) */
+ /** @name XcmV1Order (213) */
interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -2361,7 +2325,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1Response (217) */
+ /** @name XcmV1Response (215) */
interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2370,10 +2334,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name CumulusPalletXcmCall (231) */
+ /** @name CumulusPalletXcmCall (229) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (232) */
+ /** @name CumulusPalletDmpQueueCall (230) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2383,7 +2347,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (233) */
+ /** @name PalletInflationCall (231) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2392,7 +2356,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (234) */
+ /** @name PalletUniqueCall (232) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2556,7 +2520,7 @@
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';
}
- /** @name UpDataStructsCollectionMode (239) */
+ /** @name UpDataStructsCollectionMode (237) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2565,7 +2529,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (240) */
+ /** @name UpDataStructsCreateCollectionData (238) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2579,14 +2543,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (242) */
+ /** @name UpDataStructsAccessMode (240) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (244) */
+ /** @name UpDataStructsCollectionLimits (242) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -2599,7 +2563,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (246) */
+ /** @name UpDataStructsSponsoringRateLimit (244) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -2607,43 +2571,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (249) */
+ /** @name UpDataStructsCollectionPermissions (247) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (251) */
+ /** @name UpDataStructsNestingPermissions (249) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (253) */
+ /** @name UpDataStructsOwnerRestrictedSet (251) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (258) */
+ /** @name UpDataStructsPropertyKeyPermission (256) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (259) */
+ /** @name UpDataStructsPropertyPermission (257) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (262) */
+ /** @name UpDataStructsProperty (260) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (265) */
+ /** @name UpDataStructsCreateItemData (263) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -2654,23 +2618,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (266) */
+ /** @name UpDataStructsCreateNftData (264) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (267) */
+ /** @name UpDataStructsCreateFungibleData (265) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (268) */
+ /** @name UpDataStructsCreateReFungibleData (266) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (271) */
+ /** @name UpDataStructsCreateItemExData (269) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2683,75 +2647,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (273) */
+ /** @name UpDataStructsCreateNftExData (271) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletUniqueSchedulerV2Call (283) */
- 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 PalletConfigurationCall (286) */
+ /** @name PalletConfigurationCall (281) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -2765,16 +2680,28 @@
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 PalletTemplateTransactionPaymentCall (291) */
+ /** @name PalletConfigurationAppPromotionConfiguration (286) */
+ interface PalletConfigurationAppPromotionConfiguration extends Struct {
+ readonly recalculationInterval: Option<u32>;
+ readonly pendingInterval: Option<u32>;
+ readonly intervalIncome: Option<Perbill>;
+ readonly maxStakersPerCalculation: Option<u8>;
+ }
+
+ /** @name PalletTemplateTransactionPaymentCall (289) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (292) */
+ /** @name PalletStructureCall (290) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (293) */
+ /** @name PalletRmrkCoreCall (291) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2880,7 +2807,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (299) */
+ /** @name RmrkTraitsResourceResourceTypes (297) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2891,7 +2818,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (301) */
+ /** @name RmrkTraitsResourceBasicResource (299) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2899,7 +2826,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (303) */
+ /** @name RmrkTraitsResourceComposableResource (301) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2909,7 +2836,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (304) */
+ /** @name RmrkTraitsResourceSlotResource (302) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2919,7 +2846,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (307) */
+ /** @name PalletRmrkEquipCall (305) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2941,7 +2868,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (310) */
+ /** @name RmrkTraitsPartPartType (308) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2950,14 +2877,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (312) */
+ /** @name RmrkTraitsPartFixedPart (310) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (313) */
+ /** @name RmrkTraitsPartSlotPart (311) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2965,7 +2892,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (314) */
+ /** @name RmrkTraitsPartEquippableList (312) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2974,20 +2901,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (316) */
+ /** @name RmrkTraitsTheme (314) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (318) */
+ /** @name RmrkTraitsThemeThemeProperty (316) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (320) */
+ /** @name PalletAppPromotionCall (318) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -3021,7 +2948,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (321) */
+ /** @name PalletForeignAssetsModuleCall (319) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3038,7 +2965,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (322) */
+ /** @name PalletEvmCall (320) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3083,7 +3010,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (328) */
+ /** @name PalletEthereumCall (326) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3092,7 +3019,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (329) */
+ /** @name EthereumTransactionTransactionV2 (327) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3103,7 +3030,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (330) */
+ /** @name EthereumTransactionLegacyTransaction (328) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3114,7 +3041,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (331) */
+ /** @name EthereumTransactionTransactionAction (329) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3122,14 +3049,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (332) */
+ /** @name EthereumTransactionTransactionSignature (330) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (334) */
+ /** @name EthereumTransactionEip2930Transaction (332) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3144,13 +3071,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (336) */
+ /** @name EthereumTransactionAccessListItem (334) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (337) */
+ /** @name EthereumTransactionEip1559Transaction (335) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3166,7 +3093,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (338) */
+ /** @name PalletEvmMigrationCall (336) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3193,14 +3120,14 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
- /** @name PalletMaintenanceCall (342) */
+ /** @name PalletMaintenanceCall (340) */
interface PalletMaintenanceCall extends Enum {
readonly isEnable: boolean;
readonly isDisable: boolean;
readonly type: 'Enable' | 'Disable';
}
- /** @name PalletTestUtilsCall (343) */
+ /** @name PalletTestUtilsCall (341) */
interface PalletTestUtilsCall extends Enum {
readonly isEnable: boolean;
readonly isSetTestValue: boolean;
@@ -3212,26 +3139,21 @@
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 PalletSudoError (345) */
+ /** @name PalletSudoError (343) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (347) */
+ /** @name OrmlVestingModuleError (345) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3242,7 +3164,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (348) */
+ /** @name OrmlXtokensModuleError (346) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3266,26 +3188,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (351) */
+ /** @name OrmlTokensBalanceLock (349) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (353) */
+ /** @name OrmlTokensAccountData (351) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (355) */
+ /** @name OrmlTokensReserveData (353) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (357) */
+ /** @name OrmlTokensModuleError (355) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3298,21 +3220,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (360) */
+ /** @name CumulusPalletXcmpQueueInboundState (358) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3320,7 +3242,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3329,14 +3251,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (367) */
+ /** @name CumulusPalletXcmpQueueOutboundState (365) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (369) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (367) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3346,7 +3268,7 @@
readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletXcmpQueueError (371) */
+ /** @name CumulusPalletXcmpQueueError (369) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3356,7 +3278,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (372) */
+ /** @name PalletXcmError (370) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3374,133 +3296,43 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (373) */
+ /** @name CumulusPalletXcmError (371) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (374) */
+ /** @name CumulusPalletDmpQueueConfigData (372) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (375) */
+ /** @name CumulusPalletDmpQueuePageIndexData (373) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (378) */
+ /** @name CumulusPalletDmpQueueError (376) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (382) */
+ /** @name PalletUniqueError (380) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isEmptyArgument: boolean;
readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
- }
-
- /** @name PalletUniqueSchedulerV2BlockAgenda (383) */
- interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
- readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
- readonly freePlaces: u32;
}
- /** @name PalletUniqueSchedulerV2Scheduled (386) */
- 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 (387) */
- 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 OpalRuntimeOriginCaller (389) */
- interface OpalRuntimeOriginCaller extends Enum {
- readonly isSystem: boolean;
- readonly asSystem: FrameSupportDispatchRawOrigin;
- readonly isVoid: boolean;
- 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 FrameSupportDispatchRawOrigin (390) */
- interface FrameSupportDispatchRawOrigin extends Enum {
- readonly isRoot: boolean;
- readonly isSigned: boolean;
- readonly asSigned: AccountId32;
- readonly isNone: boolean;
- readonly type: 'Root' | 'Signed' | 'None';
- }
-
- /** @name PalletXcmOrigin (391) */
- interface PalletXcmOrigin extends Enum {
- readonly isXcm: boolean;
- readonly asXcm: XcmV1MultiLocation;
- readonly isResponse: boolean;
- readonly asResponse: XcmV1MultiLocation;
- readonly type: 'Xcm' | 'Response';
- }
-
- /** @name CumulusPalletXcmOrigin (392) */
- interface CumulusPalletXcmOrigin extends Enum {
- readonly isRelay: boolean;
- readonly isSiblingParachain: boolean;
- readonly asSiblingParachain: u32;
- readonly type: 'Relay' | 'SiblingParachain';
- }
-
- /** @name PalletEthereumRawOrigin (393) */
- interface PalletEthereumRawOrigin extends Enum {
- readonly isEthereumTransaction: boolean;
- readonly asEthereumTransaction: H160;
- readonly type: 'EthereumTransaction';
- }
-
- /** @name SpCoreVoid (394) */
- type SpCoreVoid = Null;
-
- /** @name PalletUniqueSchedulerV2Error (396) */
- 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 PalletConfigurationError (400) */
+ /** @name PalletConfigurationError (381) */
interface PalletConfigurationError extends Enum {
readonly isInconsistentConfiguration: boolean;
readonly type: 'InconsistentConfiguration';
}
- /** @name UpDataStructsCollection (401) */
+ /** @name UpDataStructsCollection (382) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3513,7 +3345,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (402) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (383) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3523,43 +3355,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (404) */
+ /** @name UpDataStructsProperties (385) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (405) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (386) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (410) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (391) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (417) */
+ /** @name UpDataStructsCollectionStats (398) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (418) */
+ /** @name UpDataStructsTokenChild (399) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (419) */
+ /** @name PhantomTypeUpDataStructs (400) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (421) */
+ /** @name UpDataStructsTokenData (402) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (423) */
+ /** @name UpDataStructsRpcCollection (404) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3575,13 +3407,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (424) */
+ /** @name UpDataStructsRpcCollectionFlags (405) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (425) */
+ /** @name RmrkTraitsCollectionCollectionInfo (406) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3590,7 +3422,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (426) */
+ /** @name RmrkTraitsNftNftInfo (407) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3599,13 +3431,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (428) */
+ /** @name RmrkTraitsNftRoyaltyInfo (409) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (429) */
+ /** @name RmrkTraitsResourceResourceInfo (410) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3613,26 +3445,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (430) */
+ /** @name RmrkTraitsPropertyPropertyInfo (411) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (431) */
+ /** @name RmrkTraitsBaseBaseInfo (412) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (432) */
+ /** @name RmrkTraitsNftNftChild (413) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (434) */
+ /** @name PalletCommonError (415) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3673,7 +3505,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (436) */
+ /** @name PalletFungibleError (417) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3684,12 +3516,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
}
- /** @name PalletRefungibleItemData (437) */
+ /** @name PalletRefungibleItemData (418) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (442) */
+ /** @name PalletRefungibleError (423) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3699,19 +3531,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (443) */
+ /** @name PalletNonfungibleItemData (424) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (445) */
+ /** @name UpDataStructsPropertyScope (426) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (447) */
+ /** @name PalletNonfungibleError (428) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3719,7 +3551,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (448) */
+ /** @name PalletStructureError (429) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3728,7 +3560,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (449) */
+ /** @name PalletRmrkCoreError (430) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3752,7 +3584,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (451) */
+ /** @name PalletRmrkEquipError (432) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3764,7 +3596,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (457) */
+ /** @name PalletAppPromotionError (438) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3775,7 +3607,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (458) */
+ /** @name PalletForeignAssetsModuleError (439) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3784,7 +3616,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (460) */
+ /** @name PalletEvmError (441) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3799,7 +3631,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
}
- /** @name FpRpcTransactionStatus (463) */
+ /** @name FpRpcTransactionStatus (444) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3810,10 +3642,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (465) */
+ /** @name EthbloomBloom (446) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (467) */
+ /** @name EthereumReceiptReceiptV3 (448) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3824,7 +3656,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (468) */
+ /** @name EthereumReceiptEip658ReceiptData (449) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3832,14 +3664,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (469) */
+ /** @name EthereumBlock (450) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (470) */
+ /** @name EthereumHeader (451) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3858,24 +3690,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (471) */
+ /** @name EthereumTypesHashH64 (452) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (476) */
+ /** @name PalletEthereumError (457) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (477) */
+ /** @name PalletEvmCoderSubstrateError (458) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (478) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (459) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3885,7 +3717,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (479) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (460) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3893,7 +3725,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (485) */
+ /** @name PalletEvmContractHelpersError (466) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3901,7 +3733,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (486) */
+ /** @name PalletEvmMigrationError (467) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3909,17 +3741,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (487) */
+ /** @name PalletMaintenanceError (468) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (488) */
+ /** @name PalletTestUtilsError (469) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (490) */
+ /** @name SpRuntimeMultiSignature (471) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3930,40 +3762,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (491) */
+ /** @name SpCoreEd25519Signature (472) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (493) */
+ /** @name SpCoreSr25519Signature (474) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (494) */
+ /** @name SpCoreEcdsaSignature (475) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (497) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (478) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (498) */
+ /** @name FrameSystemExtensionsCheckTxVersion (479) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (499) */
+ /** @name FrameSystemExtensionsCheckGenesis (480) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (502) */
+ /** @name FrameSystemExtensionsCheckNonce (483) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (503) */
+ /** @name FrameSystemExtensionsCheckWeight (484) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (504) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (485) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (505) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (486) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (506) */
+ /** @name OpalRuntimeRuntime (487) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (507) */
+ /** @name PalletEthereumFakeTransactionFinalizer (488) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module