difftreelog
chore regenerate stubs & types
in: master
10 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -9,7 +9,7 @@
import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { Codec } from '@polkadot/types-codec/types';
import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
@@ -104,20 +104,6 @@
* Number of blocks that pass between treasury balance updates due to inflation
**/
inflationBlockInterval: u32 & AugmentedConst<ApiType>;
- /**
- * Generic const
- **/
- [key: string]: Codec;
- };
- scheduler: {
- /**
- * The maximum weight that may be scheduled per block for any dispatchables.
- **/
- maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
- /**
- * The maximum number of scheduled calls in the queue for a single block.
- **/
- maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
/**
* Generic const
**/
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -681,44 +681,6 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- scheduler: {
- /**
- * There is no place for a new task in the agenda
- **/
- AgendaIsExhausted: AugmentedError<ApiType>;
- /**
- * Failed to schedule a call
- **/
- FailedToSchedule: AugmentedError<ApiType>;
- /**
- * Attempt to use a non-named function on a named task.
- **/
- Named: AugmentedError<ApiType>;
- /**
- * Cannot find the scheduled call.
- **/
- NotFound: AugmentedError<ApiType>;
- /**
- * Scheduled call preimage is not found
- **/
- PreimageNotFound: AugmentedError<ApiType>;
- /**
- * Scheduled call is corrupted
- **/
- ScheduledCallCorrupted: AugmentedError<ApiType>;
- /**
- * Given target block number is in the past.
- **/
- TargetBlockNumberInPast: AugmentedError<ApiType>;
- /**
- * Scheduled call is too big
- **/
- TooBigScheduledCall: AugmentedError<ApiType>;
- /**
- * Generic error
- **/
- [key: string]: AugmentedError<ApiType>;
- };
structure: {
/**
* While nesting, reached the breadth limit of nesting, exceeding the provided budget.
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -7,7 +7,6 @@
import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
-import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
@@ -522,36 +521,6 @@
rmrkEquip: {
BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;
EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
- scheduler: {
- /**
- * The call for the provided hash was not found so the task has been aborted.
- **/
- CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Canceled some task.
- **/
- Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Dispatched some task.
- **/
- Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
- /**
- * The given task can never be executed since it is overweight.
- **/
- PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Scheduled task's priority has changed
- **/
- PriorityChanged: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, priority: u8], { task: ITuple<[u32, u32]>, priority: u8 }>;
- /**
- * Scheduled some task.
- **/
- Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
/**
* Generic event
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -6,10 +6,10 @@
import '@polkadot/api-base/types/storage';
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
-import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -30,7 +30,7 @@
**/
pendingUnstake: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u128]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
/**
- * Stores a key for record for which the next revenue recalculation would be performed.
+ * Stores a key for record for which the revenue recalculation was performed.
* If `None`, then recalculation has not yet been performed or calculations have been completed for all stakers.
**/
previousCalculatedRecord: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[AccountId32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
@@ -682,25 +682,6 @@
* Map of a Base ID and a Part ID to an NFT in the Base collection serving as the Part.
**/
inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
- scheduler: {
- /**
- * Items to be executed, indexed by the block number that they should be executed on.
- **/
- agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<PalletUniqueSchedulerV2BlockAgenda>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
- /**
- * It contains the block number from which we should service tasks.
- * It's used for delaying the servicing of future blocks' agendas if we had overweight tasks.
- **/
- incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Lookup from a name to the block number and index of the task.
- **/
- lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
/**
* Generic query
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -6,7 +6,7 @@
import '@polkadot/api-base/types/submittable';
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
-import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
@@ -834,64 +834,7 @@
* - `inherit`: Optional bool.
**/
themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- scheduler: {
- /**
- * Cancel an anonymously scheduled task.
- *
- * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
- **/
- cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
- /**
- * Cancel a named scheduled task.
- *
- * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
- **/
- cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
- /**
- * Change a named task's priority.
- *
- * Only the `T::PrioritySetOrigin` is allowed to change the task's priority.
- **/
- changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;
- /**
- * Anonymously schedule a task.
- *
- * Only `T::ScheduleOrigin` is allowed to schedule a task.
- * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
- **/
- schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
- /**
- * Anonymously schedule a task after a delay.
- *
- * # <weight>
- * Same as [`schedule`].
- * # </weight>
- **/
- scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
- /**
- * Schedule a named task.
- *
- * Only `T::ScheduleOrigin` is allowed to schedule a task.
- * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
- **/
- scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
/**
- * Schedule a named task after a delay.
- *
- * Only `T::ScheduleOrigin` is allowed to schedule a task.
- * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
- *
- * # <weight>
- * Same as [`schedule_named`](Self::schedule_named).
- * # </weight>
- **/
- scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
- /**
* Generic tx
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
@@ -1034,7 +977,6 @@
enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- selfCancelingInc: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, maxTestValue: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32]>;
setTestValue: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
setTestValueAndRollback: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
/**
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,19 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-<<<<<<< HEAD
-<<<<<<< HEAD
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
-=======
-<<<<<<< HEAD
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
-=======
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
->>>>>>> refactor: `app-promotion` configuration pallet
->>>>>>> e2b20310... refactor: `app-promotion` configuration pallet
-=======
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
->>>>>>> 4824c0e1... chore: regenerate types
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -340,7 +328,6 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
- CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -536,7 +523,6 @@
FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSystemAccountInfo: FrameSystemAccountInfo;
@@ -783,7 +769,6 @@
OffenceDetails: OffenceDetails;
Offender: Offender;
OldV1SessionInfo: OldV1SessionInfo;
- OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
OpaqueCall: OpaqueCall;
@@ -853,7 +838,6 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
- PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEventMetadataLatest: PalletEventMetadataLatest;
PalletEventMetadataV14: PalletEventMetadataV14;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
@@ -914,17 +898,10 @@
PalletTreasuryProposal: PalletTreasuryProposal;
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
- PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
- PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
- PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
- PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
- PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
- PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
PalletVersion: PalletVersion;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PalletXcmOrigin: PalletXcmOrigin;
ParachainDispatchOrigin: ParachainDispatchOrigin;
ParachainInherentData: ParachainInherentData;
ParachainProposal: ParachainProposal;
@@ -1198,7 +1175,6 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
- SpCoreVoid: SpCoreVoid;
SpecVersion: SpecVersion;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -153,14 +153,6 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
-/** @name CumulusPalletXcmOrigin */
-export interface CumulusPalletXcmOrigin extends Enum {
- readonly isRelay: boolean;
- readonly isSiblingParachain: boolean;
- readonly asSiblingParachain: u32;
- readonly type: 'Relay' | 'SiblingParachain';
-}
-
/** @name CumulusPalletXcmpQueueCall */
export interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
@@ -544,15 +536,6 @@
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
-/** @name FrameSupportDispatchRawOrigin */
-export interface FrameSupportDispatchRawOrigin extends Enum {
- readonly isRoot: boolean;
- readonly isSigned: boolean;
- readonly asSigned: AccountId32;
- readonly isNone: boolean;
- readonly type: 'Root' | 'Signed' | 'None';
-}
-
/** @name FrameSupportPalletId */
export interface FrameSupportPalletId extends U8aFixed {}
@@ -710,21 +693,6 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
-/** @name OpalRuntimeOriginCaller */
-export interface OpalRuntimeOriginCaller extends Enum {
- readonly isSystem: boolean;
- readonly asSystem: FrameSupportDispatchRawOrigin;
- readonly isVoid: boolean;
- readonly asVoid: SpCoreVoid;
- readonly isPolkadotXcm: boolean;
- readonly asPolkadotXcm: PalletXcmOrigin;
- readonly isCumulusXcm: boolean;
- readonly asCumulusXcm: CumulusPalletXcmOrigin;
- readonly isEthereum: boolean;
- readonly asEthereum: PalletEthereumRawOrigin;
- readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
-}
-
/** @name OpalRuntimeRuntime */
export interface OpalRuntimeRuntime extends Null {}
@@ -1345,7 +1313,17 @@
readonly asSetXcmAllowedLocations: {
readonly locations: Option<Vec<XcmV1MultiLocation>>;
} & Struct;
- readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
+ readonly isSetAppPromotionConfigurationOverride: boolean;
+ readonly asSetAppPromotionConfigurationOverride: {
+ readonly configuration: PalletConfigurationAppPromotionConfiguration;
+ } & Struct;
+ readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';
+}
+
+/** @name PalletConfigurationError */
+export interface PalletConfigurationError extends Enum {
+ readonly isInconsistentConfiguration: boolean;
+ readonly type: 'InconsistentConfiguration';
}
/** @name PalletEthereumCall */
@@ -1378,13 +1356,6 @@
/** @name PalletEthereumFakeTransactionFinalizer */
export interface PalletEthereumFakeTransactionFinalizer extends Null {}
-
-/** @name PalletEthereumRawOrigin */
-export interface PalletEthereumRawOrigin extends Enum {
- readonly isEthereumTransaction: boolean;
- readonly asEthereumTransaction: H160;
- readonly type: 'EthereumTransaction';
-}
/** @name PalletEvmAccountBasicCrossAccountIdRepr */
export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
@@ -2049,17 +2020,12 @@
readonly value: u32;
} & Struct;
readonly isIncTestValue: boolean;
- readonly isSelfCancelingInc: boolean;
- readonly asSelfCancelingInc: {
- readonly id: U8aFixed;
- readonly maxTestValue: u32;
- } & Struct;
readonly isJustTakeFee: boolean;
readonly isBatchAll: boolean;
readonly asBatchAll: {
readonly calls: Vec<Call>;
} & Struct;
- readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
+ readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
}
/** @name PalletTestUtilsError */
@@ -2363,131 +2329,6 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
-/** @name PalletUniqueSchedulerV2BlockAgenda */
-export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
- readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
- readonly freePlaces: u32;
-}
-
-/** @name PalletUniqueSchedulerV2Call */
-export interface PalletUniqueSchedulerV2Call extends Enum {
- readonly isSchedule: boolean;
- readonly asSchedule: {
- readonly when: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isCancel: boolean;
- readonly asCancel: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isScheduleNamed: boolean;
- readonly asScheduleNamed: {
- readonly id: U8aFixed;
- readonly when: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isCancelNamed: boolean;
- readonly asCancelNamed: {
- readonly id: U8aFixed;
- } & Struct;
- readonly isScheduleAfter: boolean;
- readonly asScheduleAfter: {
- readonly after: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isScheduleNamedAfter: boolean;
- readonly asScheduleNamedAfter: {
- readonly id: U8aFixed;
- readonly after: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: Option<u8>;
- readonly call: Call;
- } & Struct;
- readonly isChangeNamedPriority: boolean;
- readonly asChangeNamedPriority: {
- readonly id: U8aFixed;
- readonly priority: u8;
- } & Struct;
- readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
-}
-
-/** @name PalletUniqueSchedulerV2Error */
-export interface PalletUniqueSchedulerV2Error extends Enum {
- readonly isFailedToSchedule: boolean;
- readonly isAgendaIsExhausted: boolean;
- readonly isScheduledCallCorrupted: boolean;
- readonly isPreimageNotFound: boolean;
- readonly isTooBigScheduledCall: boolean;
- readonly isNotFound: boolean;
- readonly isTargetBlockNumberInPast: boolean;
- readonly isNamed: boolean;
- readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
-}
-
-/** @name PalletUniqueSchedulerV2Event */
-export interface PalletUniqueSchedulerV2Event extends Enum {
- readonly isScheduled: boolean;
- readonly asScheduled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isCanceled: boolean;
- readonly asCanceled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isDispatched: boolean;
- readonly asDispatched: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- readonly result: Result<Null, SpRuntimeDispatchError>;
- } & Struct;
- readonly isPriorityChanged: boolean;
- readonly asPriorityChanged: {
- readonly task: ITuple<[u32, u32]>;
- readonly priority: u8;
- } & Struct;
- readonly isCallUnavailable: boolean;
- readonly asCallUnavailable: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- } & Struct;
- readonly isPermanentlyOverweight: boolean;
- readonly asPermanentlyOverweight: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- } & Struct;
- readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
-}
-
-/** @name PalletUniqueSchedulerV2Scheduled */
-export interface PalletUniqueSchedulerV2Scheduled extends Struct {
- readonly maybeId: Option<U8aFixed>;
- readonly priority: u8;
- readonly call: PalletUniqueSchedulerV2ScheduledCall;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: OpalRuntimeOriginCaller;
-}
-
-/** @name PalletUniqueSchedulerV2ScheduledCall */
-export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
- readonly isInline: boolean;
- readonly asInline: Bytes;
- readonly isPreimageLookup: boolean;
- readonly asPreimageLookup: {
- readonly hash_: H256;
- readonly unboundedLen: u32;
- } & Struct;
- readonly type: 'Inline' | 'PreimageLookup';
-}
-
/** @name PalletXcmCall */
export interface PalletXcmCall extends Enum {
readonly isSend: boolean;
@@ -2607,15 +2448,6 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
}
-/** @name PalletXcmOrigin */
-export interface PalletXcmOrigin extends Enum {
- readonly isXcm: boolean;
- readonly asXcm: XcmV1MultiLocation;
- readonly isResponse: boolean;
- readonly asResponse: XcmV1MultiLocation;
- readonly type: 'Xcm' | 'Response';
-}
-
/** @name PhantomTypeUpDataStructs */
export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
@@ -2835,9 +2667,6 @@
/** @name SpCoreSr25519Signature */
export interface SpCoreSr25519Signature extends U8aFixed {}
-
-/** @name SpCoreVoid */
-export interface SpCoreVoid extends Null {}
/** @name SpRuntimeArithmeticError */
export interface SpRuntimeArithmeticError extends Enum {
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -989,39 +989,7 @@
}
},
/**
- * Lookup89: pallet_unique_scheduler_v2::pallet::Event<T>
- **/
- PalletUniqueSchedulerV2Event: {
- _enum: {
- Scheduled: {
- when: 'u32',
- index: 'u32',
- },
- Canceled: {
- when: 'u32',
- index: 'u32',
- },
- Dispatched: {
- task: '(u32,u32)',
- id: 'Option<[u8;32]>',
- result: 'Result<Null, SpRuntimeDispatchError>',
- },
- PriorityChanged: {
- task: '(u32,u32)',
- priority: 'u8',
- },
- CallUnavailable: {
- task: '(u32,u32)',
- id: 'Option<[u8;32]>',
- },
- PermanentlyOverweight: {
- task: '(u32,u32)',
- id: 'Option<[u8;32]>'
- }
- }
- },
- /**
- * Lookup92: pallet_common::pallet::Event<T>
+ * Lookup89: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1050,7 +1018,7 @@
}
},
/**
- * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
**/
PalletEvmAccountBasicCrossAccountIdRepr: {
_enum: {
@@ -1059,7 +1027,7 @@
}
},
/**
- * Lookup99: pallet_structure::pallet::Event<T>
+ * Lookup96: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1067,7 +1035,7 @@
}
},
/**
- * Lookup100: pallet_rmrk_core::pallet::Event<T>
+ * Lookup97: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1144,7 +1112,7 @@
}
},
/**
- * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1153,7 +1121,7 @@
}
},
/**
- * Lookup105: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup102: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1168,7 +1136,7 @@
}
},
/**
- * Lookup106: pallet_app_promotion::pallet::Event<T>
+ * Lookup103: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1179,7 +1147,7 @@
}
},
/**
- * Lookup107: pallet_foreign_assets::module::Event<T>
+ * Lookup104: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1204,7 +1172,7 @@
}
},
/**
- * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1213,7 +1181,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup109: pallet_evm::pallet::Event<T>
+ * Lookup106: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1235,7 +1203,7 @@
}
},
/**
- * Lookup110: ethereum::log::Log
+ * Lookup107: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1243,7 +1211,7 @@
data: 'Bytes'
},
/**
- * Lookup112: pallet_ethereum::pallet::Event
+ * Lookup109: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1256,7 +1224,7 @@
}
},
/**
- * Lookup113: evm_core::error::ExitReason
+ * Lookup110: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1267,13 +1235,13 @@
}
},
/**
- * Lookup114: evm_core::error::ExitSucceed
+ * Lookup111: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup115: evm_core::error::ExitError
+ * Lookup112: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1295,13 +1263,13 @@
}
},
/**
- * Lookup118: evm_core::error::ExitRevert
+ * Lookup115: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup119: evm_core::error::ExitFatal
+ * Lookup116: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1312,7 +1280,7 @@
}
},
/**
- * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1322,25 +1290,25 @@
}
},
/**
- * Lookup121: pallet_evm_migration::pallet::Event<T>
+ * Lookup118: pallet_evm_migration::pallet::Event<T>
**/
PalletEvmMigrationEvent: {
_enum: ['TestEvent']
},
/**
- * Lookup122: pallet_maintenance::pallet::Event<T>
+ * Lookup119: pallet_maintenance::pallet::Event<T>
**/
PalletMaintenanceEvent: {
_enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
},
/**
- * Lookup123: pallet_test_utils::pallet::Event<T>
+ * Lookup120: pallet_test_utils::pallet::Event<T>
**/
PalletTestUtilsEvent: {
_enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
},
/**
- * Lookup124: frame_system::Phase
+ * Lookup121: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1350,14 +1318,14 @@
}
},
/**
- * Lookup126: frame_system::LastRuntimeUpgradeInfo
+ * Lookup124: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup127: frame_system::pallet::Call<T>
+ * Lookup125: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1395,7 +1363,7 @@
}
},
/**
- * Lookup132: frame_system::limits::BlockWeights
+ * Lookup130: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'SpWeightsWeightV2Weight',
@@ -1403,7 +1371,7 @@
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
- * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1411,7 +1379,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup134: frame_system::limits::WeightsPerClass
+ * Lookup132: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'SpWeightsWeightV2Weight',
@@ -1420,13 +1388,13 @@
reserved: 'Option<SpWeightsWeightV2Weight>'
},
/**
- * Lookup136: frame_system::limits::BlockLength
+ * Lookup134: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportDispatchPerDispatchClassU32'
},
/**
- * Lookup137: frame_support::dispatch::PerDispatchClass<T>
+ * Lookup135: frame_support::dispatch::PerDispatchClass<T>
**/
FrameSupportDispatchPerDispatchClassU32: {
normal: 'u32',
@@ -1434,14 +1402,14 @@
mandatory: 'u32'
},
/**
- * Lookup138: sp_weights::RuntimeDbWeight
+ * Lookup136: sp_weights::RuntimeDbWeight
**/
SpWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup139: sp_version::RuntimeVersion
+ * Lookup137: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1454,13 +1422,13 @@
stateVersion: 'u8'
},
/**
- * Lookup144: frame_system::pallet::Error<T>
+ * Lookup142: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1469,19 +1437,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup148: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup146: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup149: sp_trie::storage_proof::StorageProof
+ * Lookup147: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1490,7 +1458,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1501,7 +1469,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1515,14 +1483,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1541,7 +1509,7 @@
}
},
/**
- * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1550,27 +1518,27 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
},
/**
- * Lookup173: pallet_balances::BalanceLock<Balance>
+ * Lookup171: pallet_balances::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1578,26 +1546,26 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup174: pallet_balances::Reasons
+ * Lookup172: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup179: pallet_balances::Releases
+ * Lookup177: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup180: pallet_balances::pallet::Call<T, I>
+ * Lookup178: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1630,13 +1598,13 @@
}
},
/**
- * Lookup183: pallet_balances::pallet::Error<T, I>
+ * Lookup181: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup185: pallet_timestamp::pallet::Call<T>
+ * Lookup183: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1646,13 +1614,13 @@
}
},
/**
- * Lookup187: pallet_transaction_payment::Releases
+ * Lookup185: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1661,7 +1629,7 @@
bond: 'u128'
},
/**
- * Lookup191: pallet_treasury::pallet::Call<T, I>
+ * Lookup189: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1685,17 +1653,17 @@
}
},
/**
- * Lookup194: frame_support::PalletId
+ * Lookup192: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup195: pallet_treasury::pallet::Error<T, I>
+ * Lookup193: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup196: pallet_sudo::pallet::Call<T>
+ * Lookup194: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1719,7 +1687,7 @@
}
},
/**
- * Lookup198: orml_vesting::module::Call<T>
+ * Lookup196: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -1738,7 +1706,7 @@
}
},
/**
- * Lookup200: orml_xtokens::module::Call<T>
+ * Lookup198: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -1781,7 +1749,7 @@
}
},
/**
- * Lookup201: xcm::VersionedMultiAsset
+ * Lookup199: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -1790,7 +1758,7 @@
}
},
/**
- * Lookup204: orml_tokens::module::Call<T>
+ * Lookup202: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -1824,7 +1792,7 @@
}
},
/**
- * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -1873,7 +1841,7 @@
}
},
/**
- * Lookup206: pallet_xcm::pallet::Call<T>
+ * Lookup204: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -1927,7 +1895,7 @@
}
},
/**
- * Lookup207: xcm::VersionedXcm<RuntimeCall>
+ * Lookup205: xcm::VersionedXcm<RuntimeCall>
**/
XcmVersionedXcm: {
_enum: {
@@ -1937,7 +1905,7 @@
}
},
/**
- * Lookup208: xcm::v0::Xcm<RuntimeCall>
+ * Lookup206: xcm::v0::Xcm<RuntimeCall>
**/
XcmV0Xcm: {
_enum: {
@@ -1991,7 +1959,7 @@
}
},
/**
- * Lookup210: xcm::v0::order::Order<RuntimeCall>
+ * Lookup208: xcm::v0::order::Order<RuntimeCall>
**/
XcmV0Order: {
_enum: {
@@ -2034,7 +2002,7 @@
}
},
/**
- * Lookup212: xcm::v0::Response
+ * Lookup210: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -2042,7 +2010,7 @@
}
},
/**
- * Lookup213: xcm::v1::Xcm<RuntimeCall>
+ * Lookup211: xcm::v1::Xcm<RuntimeCall>
**/
XcmV1Xcm: {
_enum: {
@@ -2101,7 +2069,7 @@
}
},
/**
- * Lookup215: xcm::v1::order::Order<RuntimeCall>
+ * Lookup213: xcm::v1::order::Order<RuntimeCall>
**/
XcmV1Order: {
_enum: {
@@ -2146,7 +2114,7 @@
}
},
/**
- * Lookup217: xcm::v1::Response
+ * Lookup215: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -2155,11 +2123,11 @@
}
},
/**
- * Lookup231: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup229: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -2170,7 +2138,7 @@
}
},
/**
- * Lookup233: pallet_inflation::pallet::Call<T>
+ * Lookup231: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2180,7 +2148,7 @@
}
},
/**
- * Lookup234: pallet_unique::Call<T>
+ * Lookup232: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2317,7 +2285,7 @@
}
},
/**
- * Lookup239: up_data_structs::CollectionMode
+ * Lookup237: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2327,7 +2295,7 @@
}
},
/**
- * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2342,13 +2310,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup242: up_data_structs::AccessMode
+ * Lookup240: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup244: up_data_structs::CollectionLimits
+ * Lookup242: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2362,7 +2330,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup246: up_data_structs::SponsoringRateLimit
+ * Lookup244: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2371,7 +2339,7 @@
}
},
/**
- * Lookup249: up_data_structs::CollectionPermissions
+ * Lookup247: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2379,7 +2347,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup251: up_data_structs::NestingPermissions
+ * Lookup249: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2387,18 +2355,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup253: up_data_structs::OwnerRestrictedSet
+ * Lookup251: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup258: up_data_structs::PropertyKeyPermission
+ * Lookup256: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup259: up_data_structs::PropertyPermission
+ * Lookup257: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2406,14 +2374,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup262: up_data_structs::Property
+ * Lookup260: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup265: up_data_structs::CreateItemData
+ * Lookup263: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2423,26 +2391,26 @@
}
},
/**
- * Lookup266: up_data_structs::CreateNftData
+ * Lookup264: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup267: up_data_structs::CreateFungibleData
+ * Lookup265: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup268: up_data_structs::CreateReFungibleData
+ * Lookup266: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2453,14 +2421,14 @@
}
},
/**
- * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2468,58 +2436,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup283: pallet_unique_scheduler_v2::pallet::Call<T>
- **/
- PalletUniqueSchedulerV2Call: {
- _enum: {
- schedule: {
- when: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- cancel: {
- when: 'u32',
- index: 'u32',
- },
- schedule_named: {
- id: '[u8;32]',
- when: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- cancel_named: {
- id: '[u8;32]',
- },
- schedule_after: {
- after: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- schedule_named_after: {
- id: '[u8;32]',
- after: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'Option<u8>',
- call: 'Call',
- },
- change_named_priority: {
- id: '[u8;32]',
- priority: 'u8'
- }
- }
- },
- /**
- * Lookup286: pallet_configuration::pallet::Call<T>
+ * Lookup281: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2530,20 +2454,32 @@
coeff: 'Option<u64>',
},
set_xcm_allowed_locations: {
- locations: 'Option<Vec<XcmV1MultiLocation>>'
+ locations: 'Option<Vec<XcmV1MultiLocation>>',
+ },
+ set_app_promotion_configuration_override: {
+ configuration: 'PalletConfigurationAppPromotionConfiguration'
}
}
},
/**
- * Lookup291: pallet_template_transaction_payment::Call<T>
+ * Lookup286: pallet_configuration::AppPromotionConfiguration<BlockNumber>
+ **/
+ PalletConfigurationAppPromotionConfiguration: {
+ recalculationInterval: 'Option<u32>',
+ pendingInterval: 'Option<u32>',
+ intervalIncome: 'Option<Perbill>',
+ maxStakersPerCalculation: 'Option<u8>'
+ },
+ /**
+ * Lookup289: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup292: pallet_structure::pallet::Call<T>
+ * Lookup290: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup293: pallet_rmrk_core::pallet::Call<T>
+ * Lookup291: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2634,7 +2570,7 @@
}
},
/**
- * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2644,7 +2580,7 @@
}
},
/**
- * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2653,7 +2589,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2664,7 +2600,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2675,7 +2611,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup307: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup305: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2696,7 +2632,7 @@
}
},
/**
- * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2705,7 +2641,7 @@
}
},
/**
- * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2713,7 +2649,7 @@
src: 'Bytes'
},
/**
- * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2722,7 +2658,7 @@
z: 'u32'
},
/**
- * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2732,7 +2668,7 @@
}
},
/**
- * Lookup316: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup314: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2740,14 +2676,14 @@
inherit: 'bool'
},
/**
- * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup320: pallet_app_promotion::pallet::Call<T>
+ * Lookup318: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2776,7 +2712,7 @@
}
},
/**
- * Lookup321: pallet_foreign_assets::module::Call<T>
+ * Lookup319: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2793,7 +2729,7 @@
}
},
/**
- * Lookup322: pallet_evm::pallet::Call<T>
+ * Lookup320: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2836,7 +2772,7 @@
}
},
/**
- * Lookup328: pallet_ethereum::pallet::Call<T>
+ * Lookup326: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2846,7 +2782,7 @@
}
},
/**
- * Lookup329: ethereum::transaction::TransactionV2
+ * Lookup327: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2856,7 +2792,7 @@
}
},
/**
- * Lookup330: ethereum::transaction::LegacyTransaction
+ * Lookup328: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2868,7 +2804,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup331: ethereum::transaction::TransactionAction
+ * Lookup329: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2877,7 +2813,7 @@
}
},
/**
- * Lookup332: ethereum::transaction::TransactionSignature
+ * Lookup330: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2885,7 +2821,7 @@
s: 'H256'
},
/**
- * Lookup334: ethereum::transaction::EIP2930Transaction
+ * Lookup332: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2901,14 +2837,14 @@
s: 'H256'
},
/**
- * Lookup336: ethereum::transaction::AccessListItem
+ * Lookup334: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup337: ethereum::transaction::EIP1559Transaction
+ * Lookup335: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2925,7 +2861,7 @@
s: 'H256'
},
/**
- * Lookup338: pallet_evm_migration::pallet::Call<T>
+ * Lookup336: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2949,13 +2885,13 @@
}
},
/**
- * Lookup342: pallet_maintenance::pallet::Call<T>
+ * Lookup340: pallet_maintenance::pallet::Call<T>
**/
PalletMaintenanceCall: {
_enum: ['enable', 'disable']
},
/**
- * Lookup343: pallet_test_utils::pallet::Call<T>
+ * Lookup341: pallet_test_utils::pallet::Call<T>
**/
PalletTestUtilsCall: {
_enum: {
@@ -2967,10 +2903,6 @@
value: 'u32',
},
inc_test_value: 'Null',
- self_canceling_inc: {
- id: '[u8;32]',
- maxTestValue: 'u32',
- },
just_take_fee: 'Null',
batch_all: {
calls: 'Vec<Call>'
@@ -2978,32 +2910,32 @@
}
},
/**
- * Lookup345: pallet_sudo::pallet::Error<T>
+ * Lookup343: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup347: orml_vesting::module::Error<T>
+ * Lookup345: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup348: orml_xtokens::module::Error<T>
+ * Lookup346: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup351: orml_tokens::BalanceLock<Balance>
+ * Lookup349: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup353: orml_tokens::AccountData<Balance>
+ * Lookup351: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -3011,20 +2943,20 @@
frozen: 'u128'
},
/**
- * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup357: orml_tokens::module::Error<T>
+ * Lookup355: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3032,19 +2964,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup360: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup358: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3054,13 +2986,13 @@
lastIndex: 'u16'
},
/**
- * Lookup367: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3071,29 +3003,29 @@
xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup372: pallet_xcm::pallet::Error<T>
+ * Lookup370: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup373: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup374: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup372: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup375: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3101,212 +3033,25 @@
overweightCount: 'u64'
},
/**
- * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup382: pallet_unique::Error<T>
+ * Lookup380: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
- },
- /**
- * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
- **/
- PalletUniqueSchedulerV2BlockAgenda: {
- agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
- freePlaces: 'u32'
- },
- /**
- * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
- **/
- PalletUniqueSchedulerV2Scheduled: {
- maybeId: 'Option<[u8;32]>',
- priority: 'u8',
- call: 'PalletUniqueSchedulerV2ScheduledCall',
- maybePeriodic: 'Option<(u32,u32)>',
- origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
- **/
- PalletUniqueSchedulerV2ScheduledCall: {
- _enum: {
- Inline: 'Bytes',
- PreimageLookup: {
- _alias: {
- hash_: 'hash',
- },
- hash_: 'H256',
- unboundedLen: 'u32'
- }
- }
- },
- /**
- * Lookup389: opal_runtime::OriginCaller
- **/
- OpalRuntimeOriginCaller: {
- _enum: {
- system: 'FrameSupportDispatchRawOrigin',
- __Unused1: 'Null',
- __Unused2: 'Null',
- __Unused3: 'Null',
- Void: 'SpCoreVoid',
- __Unused5: 'Null',
- __Unused6: 'Null',
- __Unused7: 'Null',
- __Unused8: 'Null',
- __Unused9: 'Null',
- __Unused10: 'Null',
- __Unused11: 'Null',
- __Unused12: 'Null',
- __Unused13: 'Null',
- __Unused14: 'Null',
- __Unused15: 'Null',
- __Unused16: 'Null',
- __Unused17: 'Null',
- __Unused18: 'Null',
- __Unused19: 'Null',
- __Unused20: 'Null',
- __Unused21: 'Null',
- __Unused22: 'Null',
- __Unused23: 'Null',
- __Unused24: 'Null',
- __Unused25: 'Null',
- __Unused26: 'Null',
- __Unused27: 'Null',
- __Unused28: 'Null',
- __Unused29: 'Null',
- __Unused30: 'Null',
- __Unused31: 'Null',
- __Unused32: 'Null',
- __Unused33: 'Null',
- __Unused34: 'Null',
- __Unused35: 'Null',
- __Unused36: 'Null',
- __Unused37: 'Null',
- __Unused38: 'Null',
- __Unused39: 'Null',
- __Unused40: 'Null',
- __Unused41: 'Null',
- __Unused42: 'Null',
- __Unused43: 'Null',
- __Unused44: 'Null',
- __Unused45: 'Null',
- __Unused46: 'Null',
- __Unused47: 'Null',
- __Unused48: 'Null',
- __Unused49: 'Null',
- __Unused50: 'Null',
- PolkadotXcm: 'PalletXcmOrigin',
- CumulusXcm: 'CumulusPalletXcmOrigin',
- __Unused53: 'Null',
- __Unused54: 'Null',
- __Unused55: 'Null',
- __Unused56: 'Null',
- __Unused57: 'Null',
- __Unused58: 'Null',
- __Unused59: 'Null',
- __Unused60: 'Null',
- __Unused61: 'Null',
- __Unused62: 'Null',
- __Unused63: 'Null',
- __Unused64: 'Null',
- __Unused65: 'Null',
- __Unused66: 'Null',
- __Unused67: 'Null',
- __Unused68: 'Null',
- __Unused69: 'Null',
- __Unused70: 'Null',
- __Unused71: 'Null',
- __Unused72: 'Null',
- __Unused73: 'Null',
- __Unused74: 'Null',
- __Unused75: 'Null',
- __Unused76: 'Null',
- __Unused77: 'Null',
- __Unused78: 'Null',
- __Unused79: 'Null',
- __Unused80: 'Null',
- __Unused81: 'Null',
- __Unused82: 'Null',
- __Unused83: 'Null',
- __Unused84: 'Null',
- __Unused85: 'Null',
- __Unused86: 'Null',
- __Unused87: 'Null',
- __Unused88: 'Null',
- __Unused89: 'Null',
- __Unused90: 'Null',
- __Unused91: 'Null',
- __Unused92: 'Null',
- __Unused93: 'Null',
- __Unused94: 'Null',
- __Unused95: 'Null',
- __Unused96: 'Null',
- __Unused97: 'Null',
- __Unused98: 'Null',
- __Unused99: 'Null',
- __Unused100: 'Null',
- Ethereum: 'PalletEthereumRawOrigin'
- }
- },
- /**
- * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
- **/
- FrameSupportDispatchRawOrigin: {
- _enum: {
- Root: 'Null',
- Signed: 'AccountId32',
- None: 'Null'
- }
- },
- /**
- * Lookup391: pallet_xcm::pallet::Origin
- **/
- PalletXcmOrigin: {
- _enum: {
- Xcm: 'XcmV1MultiLocation',
- Response: 'XcmV1MultiLocation'
- }
- },
- /**
- * Lookup392: cumulus_pallet_xcm::pallet::Origin
- **/
- CumulusPalletXcmOrigin: {
- _enum: {
- Relay: 'Null',
- SiblingParachain: 'u32'
- }
- },
- /**
- * Lookup393: pallet_ethereum::RawOrigin
- **/
- PalletEthereumRawOrigin: {
- _enum: {
- EthereumTransaction: 'H160'
- }
- },
- /**
- * Lookup394: sp_core::Void
+ * Lookup381: pallet_configuration::pallet::Error<T>
**/
- SpCoreVoid: 'Null',
- /**
- * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
- **/
- PalletUniqueSchedulerV2Error: {
- _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
- },
- /**
- * Lookup400: pallet_configuration::pallet::Error<T>
- **/
PalletConfigurationError: {
_enum: ['InconsistentConfiguration']
},
/**
- * Lookup401: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3320,7 +3065,7 @@
flags: '[u8;1]'
},
/**
- * Lookup402: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3330,7 +3075,7 @@
}
},
/**
- * Lookup404: up_data_structs::Properties
+ * Lookup385: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3338,15 +3083,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup405: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup410: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup417: up_data_structs::CollectionStats
+ * Lookup398: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3354,18 +3099,18 @@
alive: 'u32'
},
/**
- * Lookup418: up_data_structs::TokenChild
+ * Lookup399: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup419: PhantomType::up_data_structs<T>
+ * Lookup400: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup421: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3373,7 +3118,7 @@
pieces: 'u128'
},
/**
- * Lookup423: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3390,14 +3135,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup424: up_data_structs::RpcCollectionFlags
+ * Lookup405: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup425: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup406: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3407,7 +3152,7 @@
nftsCount: 'u32'
},
/**
- * Lookup426: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3417,14 +3162,14 @@
pending: 'bool'
},
/**
- * Lookup428: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup429: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3433,14 +3178,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup430: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup431: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3448,92 +3193,92 @@
symbol: 'Bytes'
},
/**
- * Lookup432: rmrk_traits::nft::NftChild
+ * Lookup413: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup434: pallet_common::pallet::Error<T>
+ * Lookup415: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
},
/**
- * Lookup436: pallet_fungible::pallet::Error<T>
+ * Lookup417: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
},
/**
- * Lookup437: pallet_refungible::ItemData
+ * Lookup418: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup442: pallet_refungible::pallet::Error<T>
+ * Lookup423: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup443: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup424: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup445: up_data_structs::PropertyScope
+ * Lookup426: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup447: pallet_nonfungible::pallet::Error<T>
+ * Lookup428: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup448: pallet_structure::pallet::Error<T>
+ * Lookup429: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup449: pallet_rmrk_core::pallet::Error<T>
+ * Lookup430: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup451: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup432: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup457: pallet_app_promotion::pallet::Error<T>
+ * Lookup438: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup458: pallet_foreign_assets::module::Error<T>
+ * Lookup439: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup460: pallet_evm::pallet::Error<T>
+ * Lookup441: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
},
/**
- * Lookup463: fp_rpc::TransactionStatus
+ * Lookup444: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3545,11 +3290,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup465: ethbloom::Bloom
+ * Lookup446: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup467: ethereum::receipt::ReceiptV3
+ * Lookup448: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3559,7 +3304,7 @@
}
},
/**
- * Lookup468: ethereum::receipt::EIP658ReceiptData
+ * Lookup449: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3568,7 +3313,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup469: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup450: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3576,7 +3321,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup470: ethereum::header::Header
+ * Lookup451: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3596,23 +3341,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup471: ethereum_types::hash::H64
+ * Lookup452: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup476: pallet_ethereum::pallet::Error<T>
+ * Lookup457: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup477: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup458: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup478: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup459: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3622,35 +3367,35 @@
}
},
/**
- * Lookup479: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup460: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup485: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup466: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup486: pallet_evm_migration::pallet::Error<T>
+ * Lookup467: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup487: pallet_maintenance::pallet::Error<T>
+ * Lookup468: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup488: pallet_test_utils::pallet::Error<T>
+ * Lookup469: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup490: sp_runtime::MultiSignature
+ * Lookup471: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3660,51 +3405,51 @@
}
},
/**
- * Lookup491: sp_core::ed25519::Signature
+ * Lookup472: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup493: sp_core::sr25519::Signature
+ * Lookup474: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup494: sp_core::ecdsa::Signature
+ * Lookup475: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup497: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup498: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup499: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup502: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup503: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup504: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup485: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup505: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup486: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup506: opal_runtime::Runtime
+ * Lookup487: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup507: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup488: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,19 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-<<<<<<< HEAD
-<<<<<<< HEAD
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
-=======
-<<<<<<< HEAD
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
-=======
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
->>>>>>> refactor: `app-promotion` configuration pallet
->>>>>>> e2b20310... refactor: `app-promotion` configuration pallet
-=======
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
->>>>>>> 4824c0e1... chore: regenerate types
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -33,7 +21,6 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
- CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -69,7 +56,6 @@
FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSystemAccountInfo: FrameSystemAccountInfo;
@@ -87,7 +73,6 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
- OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
OrmlTokensAccountData: OrmlTokensAccountData;
@@ -123,7 +108,6 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
- PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -176,16 +160,9 @@
PalletTreasuryProposal: PalletTreasuryProposal;
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
- PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
- PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
- PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
- PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
- PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
- PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PalletXcmOrigin: PalletXcmOrigin;
PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -216,7 +193,6 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
- SpCoreVoid: SpCoreVoid;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }4344 /** @name SpRuntimeDigest (13) */45 interface SpRuntimeDigest extends Struct {46 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 }4849 /** @name SpRuntimeDigestDigestItem (15) */50 interface SpRuntimeDigestDigestItem extends Enum {51 readonly isOther: boolean;52 readonly asOther: Bytes;53 readonly isConsensus: boolean;54 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55 readonly isSeal: boolean;56 readonly asSeal: ITuple<[U8aFixed, Bytes]>;57 readonly isPreRuntime: boolean;58 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59 readonly isRuntimeEnvironmentUpdated: boolean;60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 }6263 /** @name FrameSystemEventRecord (18) */64 interface FrameSystemEventRecord extends Struct {65 readonly phase: FrameSystemPhase;66 readonly event: Event;67 readonly topics: Vec<H256>;68 }6970 /** @name FrameSystemEvent (20) */71 interface FrameSystemEvent extends Enum {72 readonly isExtrinsicSuccess: boolean;73 readonly asExtrinsicSuccess: {74 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75 } & Struct;76 readonly isExtrinsicFailed: boolean;77 readonly asExtrinsicFailed: {78 readonly dispatchError: SpRuntimeDispatchError;79 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80 } & Struct;81 readonly isCodeUpdated: boolean;82 readonly isNewAccount: boolean;83 readonly asNewAccount: {84 readonly account: AccountId32;85 } & Struct;86 readonly isKilledAccount: boolean;87 readonly asKilledAccount: {88 readonly account: AccountId32;89 } & Struct;90 readonly isRemarked: boolean;91 readonly asRemarked: {92 readonly sender: AccountId32;93 readonly hash_: H256;94 } & Struct;95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 }9798 /** @name FrameSupportDispatchDispatchInfo (21) */99 interface FrameSupportDispatchDispatchInfo extends Struct {100 readonly weight: SpWeightsWeightV2Weight;101 readonly class: FrameSupportDispatchDispatchClass;102 readonly paysFee: FrameSupportDispatchPays;103 }104105 /** @name FrameSupportDispatchDispatchClass (22) */106 interface FrameSupportDispatchDispatchClass extends Enum {107 readonly isNormal: boolean;108 readonly isOperational: boolean;109 readonly isMandatory: boolean;110 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 }112113 /** @name FrameSupportDispatchPays (23) */114 interface FrameSupportDispatchPays extends Enum {115 readonly isYes: boolean;116 readonly isNo: boolean;117 readonly type: 'Yes' | 'No';118 }119120 /** @name SpRuntimeDispatchError (24) */121 interface SpRuntimeDispatchError extends Enum {122 readonly isOther: boolean;123 readonly isCannotLookup: boolean;124 readonly isBadOrigin: boolean;125 readonly isModule: boolean;126 readonly asModule: SpRuntimeModuleError;127 readonly isConsumerRemaining: boolean;128 readonly isNoProviders: boolean;129 readonly isTooManyConsumers: boolean;130 readonly isToken: boolean;131 readonly asToken: SpRuntimeTokenError;132 readonly isArithmetic: boolean;133 readonly asArithmetic: SpRuntimeArithmeticError;134 readonly isTransactional: boolean;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 }141142 /** @name SpRuntimeModuleError (25) */143 interface SpRuntimeModuleError extends Struct {144 readonly index: u8;145 readonly error: U8aFixed;146 }147148 /** @name SpRuntimeTokenError (26) */149 interface SpRuntimeTokenError extends Enum {150 readonly isNoFunds: boolean;151 readonly isWouldDie: boolean;152 readonly isBelowMinimum: boolean;153 readonly isCannotCreate: boolean;154 readonly isUnknownAsset: boolean;155 readonly isFrozen: boolean;156 readonly isUnsupported: boolean;157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158 }159160 /** @name SpRuntimeArithmeticError (27) */161 interface SpRuntimeArithmeticError extends Enum {162 readonly isUnderflow: boolean;163 readonly isOverflow: boolean;164 readonly isDivisionByZero: boolean;165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166 }167168 /** @name SpRuntimeTransactionalError (28) */169 interface SpRuntimeTransactionalError extends Enum {170 readonly isLimitReached: boolean;171 readonly isNoLayer: boolean;172 readonly type: 'LimitReached' | 'NoLayer';173 }174175 /** @name CumulusPalletParachainSystemEvent (29) */176 interface CumulusPalletParachainSystemEvent extends Enum {177 readonly isValidationFunctionStored: boolean;178 readonly isValidationFunctionApplied: boolean;179 readonly asValidationFunctionApplied: {180 readonly relayChainBlockNum: u32;181 } & Struct;182 readonly isValidationFunctionDiscarded: boolean;183 readonly isUpgradeAuthorized: boolean;184 readonly asUpgradeAuthorized: {185 readonly codeHash: H256;186 } & Struct;187 readonly isDownwardMessagesReceived: boolean;188 readonly asDownwardMessagesReceived: {189 readonly count: u32;190 } & Struct;191 readonly isDownwardMessagesProcessed: boolean;192 readonly asDownwardMessagesProcessed: {193 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly dmqHead: H256;195 } & Struct;196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 }198199 /** @name PalletBalancesEvent (30) */200 interface PalletBalancesEvent extends Enum {201 readonly isEndowed: boolean;202 readonly asEndowed: {203 readonly account: AccountId32;204 readonly freeBalance: u128;205 } & Struct;206 readonly isDustLost: boolean;207 readonly asDustLost: {208 readonly account: AccountId32;209 readonly amount: u128;210 } & Struct;211 readonly isTransfer: boolean;212 readonly asTransfer: {213 readonly from: AccountId32;214 readonly to: AccountId32;215 readonly amount: u128;216 } & Struct;217 readonly isBalanceSet: boolean;218 readonly asBalanceSet: {219 readonly who: AccountId32;220 readonly free: u128;221 readonly reserved: u128;222 } & Struct;223 readonly isReserved: boolean;224 readonly asReserved: {225 readonly who: AccountId32;226 readonly amount: u128;227 } & Struct;228 readonly isUnreserved: boolean;229 readonly asUnreserved: {230 readonly who: AccountId32;231 readonly amount: u128;232 } & Struct;233 readonly isReserveRepatriated: boolean;234 readonly asReserveRepatriated: {235 readonly from: AccountId32;236 readonly to: AccountId32;237 readonly amount: u128;238 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239 } & Struct;240 readonly isDeposit: boolean;241 readonly asDeposit: {242 readonly who: AccountId32;243 readonly amount: u128;244 } & Struct;245 readonly isWithdraw: boolean;246 readonly asWithdraw: {247 readonly who: AccountId32;248 readonly amount: u128;249 } & Struct;250 readonly isSlashed: boolean;251 readonly asSlashed: {252 readonly who: AccountId32;253 readonly amount: u128;254 } & Struct;255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256 }257258 /** @name FrameSupportTokensMiscBalanceStatus (31) */259 interface FrameSupportTokensMiscBalanceStatus extends Enum {260 readonly isFree: boolean;261 readonly isReserved: boolean;262 readonly type: 'Free' | 'Reserved';263 }264265 /** @name PalletTransactionPaymentEvent (32) */266 interface PalletTransactionPaymentEvent extends Enum {267 readonly isTransactionFeePaid: boolean;268 readonly asTransactionFeePaid: {269 readonly who: AccountId32;270 readonly actualFee: u128;271 readonly tip: u128;272 } & Struct;273 readonly type: 'TransactionFeePaid';274 }275276 /** @name PalletTreasuryEvent (33) */277 interface PalletTreasuryEvent extends Enum {278 readonly isProposed: boolean;279 readonly asProposed: {280 readonly proposalIndex: u32;281 } & Struct;282 readonly isSpending: boolean;283 readonly asSpending: {284 readonly budgetRemaining: u128;285 } & Struct;286 readonly isAwarded: boolean;287 readonly asAwarded: {288 readonly proposalIndex: u32;289 readonly award: u128;290 readonly account: AccountId32;291 } & Struct;292 readonly isRejected: boolean;293 readonly asRejected: {294 readonly proposalIndex: u32;295 readonly slashed: u128;296 } & Struct;297 readonly isBurnt: boolean;298 readonly asBurnt: {299 readonly burntFunds: u128;300 } & Struct;301 readonly isRollover: boolean;302 readonly asRollover: {303 readonly rolloverBalance: u128;304 } & Struct;305 readonly isDeposit: boolean;306 readonly asDeposit: {307 readonly value: u128;308 } & Struct;309 readonly isSpendApproved: boolean;310 readonly asSpendApproved: {311 readonly proposalIndex: u32;312 readonly amount: u128;313 readonly beneficiary: AccountId32;314 } & Struct;315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316 }317318 /** @name PalletSudoEvent (34) */319 interface PalletSudoEvent extends Enum {320 readonly isSudid: boolean;321 readonly asSudid: {322 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323 } & Struct;324 readonly isKeyChanged: boolean;325 readonly asKeyChanged: {326 readonly oldSudoer: Option<AccountId32>;327 } & Struct;328 readonly isSudoAsDone: boolean;329 readonly asSudoAsDone: {330 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331 } & Struct;332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333 }334335 /** @name OrmlVestingModuleEvent (38) */336 interface OrmlVestingModuleEvent extends Enum {337 readonly isVestingScheduleAdded: boolean;338 readonly asVestingScheduleAdded: {339 readonly from: AccountId32;340 readonly to: AccountId32;341 readonly vestingSchedule: OrmlVestingVestingSchedule;342 } & Struct;343 readonly isClaimed: boolean;344 readonly asClaimed: {345 readonly who: AccountId32;346 readonly amount: u128;347 } & Struct;348 readonly isVestingSchedulesUpdated: boolean;349 readonly asVestingSchedulesUpdated: {350 readonly who: AccountId32;351 } & Struct;352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353 }354355 /** @name OrmlVestingVestingSchedule (39) */356 interface OrmlVestingVestingSchedule extends Struct {357 readonly start: u32;358 readonly period: u32;359 readonly periodCount: u32;360 readonly perPeriod: Compact<u128>;361 }362363 /** @name OrmlXtokensModuleEvent (41) */364 interface OrmlXtokensModuleEvent extends Enum {365 readonly isTransferredMultiAssets: boolean;366 readonly asTransferredMultiAssets: {367 readonly sender: AccountId32;368 readonly assets: XcmV1MultiassetMultiAssets;369 readonly fee: XcmV1MultiAsset;370 readonly dest: XcmV1MultiLocation;371 } & Struct;372 readonly type: 'TransferredMultiAssets';373 }374375 /** @name XcmV1MultiassetMultiAssets (42) */376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378 /** @name XcmV1MultiAsset (44) */379 interface XcmV1MultiAsset extends Struct {380 readonly id: XcmV1MultiassetAssetId;381 readonly fun: XcmV1MultiassetFungibility;382 }383384 /** @name XcmV1MultiassetAssetId (45) */385 interface XcmV1MultiassetAssetId extends Enum {386 readonly isConcrete: boolean;387 readonly asConcrete: XcmV1MultiLocation;388 readonly isAbstract: boolean;389 readonly asAbstract: Bytes;390 readonly type: 'Concrete' | 'Abstract';391 }392393 /** @name XcmV1MultiLocation (46) */394 interface XcmV1MultiLocation extends Struct {395 readonly parents: u8;396 readonly interior: XcmV1MultilocationJunctions;397 }398399 /** @name XcmV1MultilocationJunctions (47) */400 interface XcmV1MultilocationJunctions extends Enum {401 readonly isHere: boolean;402 readonly isX1: boolean;403 readonly asX1: XcmV1Junction;404 readonly isX2: boolean;405 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406 readonly isX3: boolean;407 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408 readonly isX4: boolean;409 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410 readonly isX5: boolean;411 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412 readonly isX6: boolean;413 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414 readonly isX7: boolean;415 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416 readonly isX8: boolean;417 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419 }420421 /** @name XcmV1Junction (48) */422 interface XcmV1Junction extends Enum {423 readonly isParachain: boolean;424 readonly asParachain: Compact<u32>;425 readonly isAccountId32: boolean;426 readonly asAccountId32: {427 readonly network: XcmV0JunctionNetworkId;428 readonly id: U8aFixed;429 } & Struct;430 readonly isAccountIndex64: boolean;431 readonly asAccountIndex64: {432 readonly network: XcmV0JunctionNetworkId;433 readonly index: Compact<u64>;434 } & Struct;435 readonly isAccountKey20: boolean;436 readonly asAccountKey20: {437 readonly network: XcmV0JunctionNetworkId;438 readonly key: U8aFixed;439 } & Struct;440 readonly isPalletInstance: boolean;441 readonly asPalletInstance: u8;442 readonly isGeneralIndex: boolean;443 readonly asGeneralIndex: Compact<u128>;444 readonly isGeneralKey: boolean;445 readonly asGeneralKey: Bytes;446 readonly isOnlyChild: boolean;447 readonly isPlurality: boolean;448 readonly asPlurality: {449 readonly id: XcmV0JunctionBodyId;450 readonly part: XcmV0JunctionBodyPart;451 } & Struct;452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453 }454455 /** @name XcmV0JunctionNetworkId (50) */456 interface XcmV0JunctionNetworkId extends Enum {457 readonly isAny: boolean;458 readonly isNamed: boolean;459 readonly asNamed: Bytes;460 readonly isPolkadot: boolean;461 readonly isKusama: boolean;462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463 }464465 /** @name XcmV0JunctionBodyId (53) */466 interface XcmV0JunctionBodyId extends Enum {467 readonly isUnit: boolean;468 readonly isNamed: boolean;469 readonly asNamed: Bytes;470 readonly isIndex: boolean;471 readonly asIndex: Compact<u32>;472 readonly isExecutive: boolean;473 readonly isTechnical: boolean;474 readonly isLegislative: boolean;475 readonly isJudicial: boolean;476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477 }478479 /** @name XcmV0JunctionBodyPart (54) */480 interface XcmV0JunctionBodyPart extends Enum {481 readonly isVoice: boolean;482 readonly isMembers: boolean;483 readonly asMembers: {484 readonly count: Compact<u32>;485 } & Struct;486 readonly isFraction: boolean;487 readonly asFraction: {488 readonly nom: Compact<u32>;489 readonly denom: Compact<u32>;490 } & Struct;491 readonly isAtLeastProportion: boolean;492 readonly asAtLeastProportion: {493 readonly nom: Compact<u32>;494 readonly denom: Compact<u32>;495 } & Struct;496 readonly isMoreThanProportion: boolean;497 readonly asMoreThanProportion: {498 readonly nom: Compact<u32>;499 readonly denom: Compact<u32>;500 } & Struct;501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502 }503504 /** @name XcmV1MultiassetFungibility (55) */505 interface XcmV1MultiassetFungibility extends Enum {506 readonly isFungible: boolean;507 readonly asFungible: Compact<u128>;508 readonly isNonFungible: boolean;509 readonly asNonFungible: XcmV1MultiassetAssetInstance;510 readonly type: 'Fungible' | 'NonFungible';511 }512513 /** @name XcmV1MultiassetAssetInstance (56) */514 interface XcmV1MultiassetAssetInstance extends Enum {515 readonly isUndefined: boolean;516 readonly isIndex: boolean;517 readonly asIndex: Compact<u128>;518 readonly isArray4: boolean;519 readonly asArray4: U8aFixed;520 readonly isArray8: boolean;521 readonly asArray8: U8aFixed;522 readonly isArray16: boolean;523 readonly asArray16: U8aFixed;524 readonly isArray32: boolean;525 readonly asArray32: U8aFixed;526 readonly isBlob: boolean;527 readonly asBlob: Bytes;528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529 }530531 /** @name OrmlTokensModuleEvent (59) */532 interface OrmlTokensModuleEvent extends Enum {533 readonly isEndowed: boolean;534 readonly asEndowed: {535 readonly currencyId: PalletForeignAssetsAssetIds;536 readonly who: AccountId32;537 readonly amount: u128;538 } & Struct;539 readonly isDustLost: boolean;540 readonly asDustLost: {541 readonly currencyId: PalletForeignAssetsAssetIds;542 readonly who: AccountId32;543 readonly amount: u128;544 } & Struct;545 readonly isTransfer: boolean;546 readonly asTransfer: {547 readonly currencyId: PalletForeignAssetsAssetIds;548 readonly from: AccountId32;549 readonly to: AccountId32;550 readonly amount: u128;551 } & Struct;552 readonly isReserved: boolean;553 readonly asReserved: {554 readonly currencyId: PalletForeignAssetsAssetIds;555 readonly who: AccountId32;556 readonly amount: u128;557 } & Struct;558 readonly isUnreserved: boolean;559 readonly asUnreserved: {560 readonly currencyId: PalletForeignAssetsAssetIds;561 readonly who: AccountId32;562 readonly amount: u128;563 } & Struct;564 readonly isReserveRepatriated: boolean;565 readonly asReserveRepatriated: {566 readonly currencyId: PalletForeignAssetsAssetIds;567 readonly from: AccountId32;568 readonly to: AccountId32;569 readonly amount: u128;570 readonly status: FrameSupportTokensMiscBalanceStatus;571 } & Struct;572 readonly isBalanceSet: boolean;573 readonly asBalanceSet: {574 readonly currencyId: PalletForeignAssetsAssetIds;575 readonly who: AccountId32;576 readonly free: u128;577 readonly reserved: u128;578 } & Struct;579 readonly isTotalIssuanceSet: boolean;580 readonly asTotalIssuanceSet: {581 readonly currencyId: PalletForeignAssetsAssetIds;582 readonly amount: u128;583 } & Struct;584 readonly isWithdrawn: boolean;585 readonly asWithdrawn: {586 readonly currencyId: PalletForeignAssetsAssetIds;587 readonly who: AccountId32;588 readonly amount: u128;589 } & Struct;590 readonly isSlashed: boolean;591 readonly asSlashed: {592 readonly currencyId: PalletForeignAssetsAssetIds;593 readonly who: AccountId32;594 readonly freeAmount: u128;595 readonly reservedAmount: u128;596 } & Struct;597 readonly isDeposited: boolean;598 readonly asDeposited: {599 readonly currencyId: PalletForeignAssetsAssetIds;600 readonly who: AccountId32;601 readonly amount: u128;602 } & Struct;603 readonly isLockSet: boolean;604 readonly asLockSet: {605 readonly lockId: U8aFixed;606 readonly currencyId: PalletForeignAssetsAssetIds;607 readonly who: AccountId32;608 readonly amount: u128;609 } & Struct;610 readonly isLockRemoved: boolean;611 readonly asLockRemoved: {612 readonly lockId: U8aFixed;613 readonly currencyId: PalletForeignAssetsAssetIds;614 readonly who: AccountId32;615 } & Struct;616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617 }618619 /** @name PalletForeignAssetsAssetIds (60) */620 interface PalletForeignAssetsAssetIds extends Enum {621 readonly isForeignAssetId: boolean;622 readonly asForeignAssetId: u32;623 readonly isNativeAssetId: boolean;624 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625 readonly type: 'ForeignAssetId' | 'NativeAssetId';626 }627628 /** @name PalletForeignAssetsNativeCurrency (61) */629 interface PalletForeignAssetsNativeCurrency extends Enum {630 readonly isHere: boolean;631 readonly isParent: boolean;632 readonly type: 'Here' | 'Parent';633 }634635 /** @name CumulusPalletXcmpQueueEvent (62) */636 interface CumulusPalletXcmpQueueEvent extends Enum {637 readonly isSuccess: boolean;638 readonly asSuccess: {639 readonly messageHash: Option<H256>;640 readonly weight: SpWeightsWeightV2Weight;641 } & Struct;642 readonly isFail: boolean;643 readonly asFail: {644 readonly messageHash: Option<H256>;645 readonly error: XcmV2TraitsError;646 readonly weight: SpWeightsWeightV2Weight;647 } & Struct;648 readonly isBadVersion: boolean;649 readonly asBadVersion: {650 readonly messageHash: Option<H256>;651 } & Struct;652 readonly isBadFormat: boolean;653 readonly asBadFormat: {654 readonly messageHash: Option<H256>;655 } & Struct;656 readonly isUpwardMessageSent: boolean;657 readonly asUpwardMessageSent: {658 readonly messageHash: Option<H256>;659 } & Struct;660 readonly isXcmpMessageSent: boolean;661 readonly asXcmpMessageSent: {662 readonly messageHash: Option<H256>;663 } & Struct;664 readonly isOverweightEnqueued: boolean;665 readonly asOverweightEnqueued: {666 readonly sender: u32;667 readonly sentAt: u32;668 readonly index: u64;669 readonly required: SpWeightsWeightV2Weight;670 } & Struct;671 readonly isOverweightServiced: boolean;672 readonly asOverweightServiced: {673 readonly index: u64;674 readonly used: SpWeightsWeightV2Weight;675 } & Struct;676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677 }678679 /** @name XcmV2TraitsError (64) */680 interface XcmV2TraitsError extends Enum {681 readonly isOverflow: boolean;682 readonly isUnimplemented: boolean;683 readonly isUntrustedReserveLocation: boolean;684 readonly isUntrustedTeleportLocation: boolean;685 readonly isMultiLocationFull: boolean;686 readonly isMultiLocationNotInvertible: boolean;687 readonly isBadOrigin: boolean;688 readonly isInvalidLocation: boolean;689 readonly isAssetNotFound: boolean;690 readonly isFailedToTransactAsset: boolean;691 readonly isNotWithdrawable: boolean;692 readonly isLocationCannotHold: boolean;693 readonly isExceedsMaxMessageSize: boolean;694 readonly isDestinationUnsupported: boolean;695 readonly isTransport: boolean;696 readonly isUnroutable: boolean;697 readonly isUnknownClaim: boolean;698 readonly isFailedToDecode: boolean;699 readonly isMaxWeightInvalid: boolean;700 readonly isNotHoldingFees: boolean;701 readonly isTooExpensive: boolean;702 readonly isTrap: boolean;703 readonly asTrap: u64;704 readonly isUnhandledXcmVersion: boolean;705 readonly isWeightLimitReached: boolean;706 readonly asWeightLimitReached: u64;707 readonly isBarrier: boolean;708 readonly isWeightNotComputable: boolean;709 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';710 }711712 /** @name PalletXcmEvent (66) */713 interface PalletXcmEvent extends Enum {714 readonly isAttempted: boolean;715 readonly asAttempted: XcmV2TraitsOutcome;716 readonly isSent: boolean;717 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718 readonly isUnexpectedResponse: boolean;719 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720 readonly isResponseReady: boolean;721 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722 readonly isNotified: boolean;723 readonly asNotified: ITuple<[u64, u8, u8]>;724 readonly isNotifyOverweight: boolean;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726 readonly isNotifyDispatchError: boolean;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728 readonly isNotifyDecodeFailed: boolean;729 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730 readonly isInvalidResponder: boolean;731 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732 readonly isInvalidResponderVersion: boolean;733 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734 readonly isResponseTaken: boolean;735 readonly asResponseTaken: u64;736 readonly isAssetsTrapped: boolean;737 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738 readonly isVersionChangeNotified: boolean;739 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740 readonly isSupportedVersionChanged: boolean;741 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742 readonly isNotifyTargetSendFail: boolean;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744 readonly isNotifyTargetMigrationFail: boolean;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749 }750751 /** @name XcmV2TraitsOutcome (67) */752 interface XcmV2TraitsOutcome extends Enum {753 readonly isComplete: boolean;754 readonly asComplete: u64;755 readonly isIncomplete: boolean;756 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757 readonly isError: boolean;758 readonly asError: XcmV2TraitsError;759 readonly type: 'Complete' | 'Incomplete' | 'Error';760 }761762 /** @name XcmV2Xcm (68) */763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765 /** @name XcmV2Instruction (70) */766 interface XcmV2Instruction extends Enum {767 readonly isWithdrawAsset: boolean;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769 readonly isReserveAssetDeposited: boolean;770 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771 readonly isReceiveTeleportedAsset: boolean;772 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773 readonly isQueryResponse: boolean;774 readonly asQueryResponse: {775 readonly queryId: Compact<u64>;776 readonly response: XcmV2Response;777 readonly maxWeight: Compact<u64>;778 } & Struct;779 readonly isTransferAsset: boolean;780 readonly asTransferAsset: {781 readonly assets: XcmV1MultiassetMultiAssets;782 readonly beneficiary: XcmV1MultiLocation;783 } & Struct;784 readonly isTransferReserveAsset: boolean;785 readonly asTransferReserveAsset: {786 readonly assets: XcmV1MultiassetMultiAssets;787 readonly dest: XcmV1MultiLocation;788 readonly xcm: XcmV2Xcm;789 } & Struct;790 readonly isTransact: boolean;791 readonly asTransact: {792 readonly originType: XcmV0OriginKind;793 readonly requireWeightAtMost: Compact<u64>;794 readonly call: XcmDoubleEncoded;795 } & Struct;796 readonly isHrmpNewChannelOpenRequest: boolean;797 readonly asHrmpNewChannelOpenRequest: {798 readonly sender: Compact<u32>;799 readonly maxMessageSize: Compact<u32>;800 readonly maxCapacity: Compact<u32>;801 } & Struct;802 readonly isHrmpChannelAccepted: boolean;803 readonly asHrmpChannelAccepted: {804 readonly recipient: Compact<u32>;805 } & Struct;806 readonly isHrmpChannelClosing: boolean;807 readonly asHrmpChannelClosing: {808 readonly initiator: Compact<u32>;809 readonly sender: Compact<u32>;810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isClearOrigin: boolean;813 readonly isDescendOrigin: boolean;814 readonly asDescendOrigin: XcmV1MultilocationJunctions;815 readonly isReportError: boolean;816 readonly asReportError: {817 readonly queryId: Compact<u64>;818 readonly dest: XcmV1MultiLocation;819 readonly maxResponseWeight: Compact<u64>;820 } & Struct;821 readonly isDepositAsset: boolean;822 readonly asDepositAsset: {823 readonly assets: XcmV1MultiassetMultiAssetFilter;824 readonly maxAssets: Compact<u32>;825 readonly beneficiary: XcmV1MultiLocation;826 } & Struct;827 readonly isDepositReserveAsset: boolean;828 readonly asDepositReserveAsset: {829 readonly assets: XcmV1MultiassetMultiAssetFilter;830 readonly maxAssets: Compact<u32>;831 readonly dest: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isExchangeAsset: boolean;835 readonly asExchangeAsset: {836 readonly give: XcmV1MultiassetMultiAssetFilter;837 readonly receive: XcmV1MultiassetMultiAssets;838 } & Struct;839 readonly isInitiateReserveWithdraw: boolean;840 readonly asInitiateReserveWithdraw: {841 readonly assets: XcmV1MultiassetMultiAssetFilter;842 readonly reserve: XcmV1MultiLocation;843 readonly xcm: XcmV2Xcm;844 } & Struct;845 readonly isInitiateTeleport: boolean;846 readonly asInitiateTeleport: {847 readonly assets: XcmV1MultiassetMultiAssetFilter;848 readonly dest: XcmV1MultiLocation;849 readonly xcm: XcmV2Xcm;850 } & Struct;851 readonly isQueryHolding: boolean;852 readonly asQueryHolding: {853 readonly queryId: Compact<u64>;854 readonly dest: XcmV1MultiLocation;855 readonly assets: XcmV1MultiassetMultiAssetFilter;856 readonly maxResponseWeight: Compact<u64>;857 } & Struct;858 readonly isBuyExecution: boolean;859 readonly asBuyExecution: {860 readonly fees: XcmV1MultiAsset;861 readonly weightLimit: XcmV2WeightLimit;862 } & Struct;863 readonly isRefundSurplus: boolean;864 readonly isSetErrorHandler: boolean;865 readonly asSetErrorHandler: XcmV2Xcm;866 readonly isSetAppendix: boolean;867 readonly asSetAppendix: XcmV2Xcm;868 readonly isClearError: boolean;869 readonly isClaimAsset: boolean;870 readonly asClaimAsset: {871 readonly assets: XcmV1MultiassetMultiAssets;872 readonly ticket: XcmV1MultiLocation;873 } & Struct;874 readonly isTrap: boolean;875 readonly asTrap: Compact<u64>;876 readonly isSubscribeVersion: boolean;877 readonly asSubscribeVersion: {878 readonly queryId: Compact<u64>;879 readonly maxResponseWeight: Compact<u64>;880 } & Struct;881 readonly isUnsubscribeVersion: boolean;882 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';883 }884885 /** @name XcmV2Response (71) */886 interface XcmV2Response extends Enum {887 readonly isNull: boolean;888 readonly isAssets: boolean;889 readonly asAssets: XcmV1MultiassetMultiAssets;890 readonly isExecutionResult: boolean;891 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892 readonly isVersion: boolean;893 readonly asVersion: u32;894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895 }896897 /** @name XcmV0OriginKind (74) */898 interface XcmV0OriginKind extends Enum {899 readonly isNative: boolean;900 readonly isSovereignAccount: boolean;901 readonly isSuperuser: boolean;902 readonly isXcm: boolean;903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904 }905906 /** @name XcmDoubleEncoded (75) */907 interface XcmDoubleEncoded extends Struct {908 readonly encoded: Bytes;909 }910911 /** @name XcmV1MultiassetMultiAssetFilter (76) */912 interface XcmV1MultiassetMultiAssetFilter extends Enum {913 readonly isDefinite: boolean;914 readonly asDefinite: XcmV1MultiassetMultiAssets;915 readonly isWild: boolean;916 readonly asWild: XcmV1MultiassetWildMultiAsset;917 readonly type: 'Definite' | 'Wild';918 }919920 /** @name XcmV1MultiassetWildMultiAsset (77) */921 interface XcmV1MultiassetWildMultiAsset extends Enum {922 readonly isAll: boolean;923 readonly isAllOf: boolean;924 readonly asAllOf: {925 readonly id: XcmV1MultiassetAssetId;926 readonly fun: XcmV1MultiassetWildFungibility;927 } & Struct;928 readonly type: 'All' | 'AllOf';929 }930931 /** @name XcmV1MultiassetWildFungibility (78) */932 interface XcmV1MultiassetWildFungibility extends Enum {933 readonly isFungible: boolean;934 readonly isNonFungible: boolean;935 readonly type: 'Fungible' | 'NonFungible';936 }937938 /** @name XcmV2WeightLimit (79) */939 interface XcmV2WeightLimit extends Enum {940 readonly isUnlimited: boolean;941 readonly isLimited: boolean;942 readonly asLimited: Compact<u64>;943 readonly type: 'Unlimited' | 'Limited';944 }945946 /** @name XcmVersionedMultiAssets (81) */947 interface XcmVersionedMultiAssets extends Enum {948 readonly isV0: boolean;949 readonly asV0: Vec<XcmV0MultiAsset>;950 readonly isV1: boolean;951 readonly asV1: XcmV1MultiassetMultiAssets;952 readonly type: 'V0' | 'V1';953 }954955 /** @name XcmV0MultiAsset (83) */956 interface XcmV0MultiAsset extends Enum {957 readonly isNone: boolean;958 readonly isAll: boolean;959 readonly isAllFungible: boolean;960 readonly isAllNonFungible: boolean;961 readonly isAllAbstractFungible: boolean;962 readonly asAllAbstractFungible: {963 readonly id: Bytes;964 } & Struct;965 readonly isAllAbstractNonFungible: boolean;966 readonly asAllAbstractNonFungible: {967 readonly class: Bytes;968 } & Struct;969 readonly isAllConcreteFungible: boolean;970 readonly asAllConcreteFungible: {971 readonly id: XcmV0MultiLocation;972 } & Struct;973 readonly isAllConcreteNonFungible: boolean;974 readonly asAllConcreteNonFungible: {975 readonly class: XcmV0MultiLocation;976 } & Struct;977 readonly isAbstractFungible: boolean;978 readonly asAbstractFungible: {979 readonly id: Bytes;980 readonly amount: Compact<u128>;981 } & Struct;982 readonly isAbstractNonFungible: boolean;983 readonly asAbstractNonFungible: {984 readonly class: Bytes;985 readonly instance: XcmV1MultiassetAssetInstance;986 } & Struct;987 readonly isConcreteFungible: boolean;988 readonly asConcreteFungible: {989 readonly id: XcmV0MultiLocation;990 readonly amount: Compact<u128>;991 } & Struct;992 readonly isConcreteNonFungible: boolean;993 readonly asConcreteNonFungible: {994 readonly class: XcmV0MultiLocation;995 readonly instance: XcmV1MultiassetAssetInstance;996 } & Struct;997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998 }9991000 /** @name XcmV0MultiLocation (84) */1001 interface XcmV0MultiLocation extends Enum {1002 readonly isNull: boolean;1003 readonly isX1: boolean;1004 readonly asX1: XcmV0Junction;1005 readonly isX2: boolean;1006 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007 readonly isX3: boolean;1008 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009 readonly isX4: boolean;1010 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011 readonly isX5: boolean;1012 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013 readonly isX6: boolean;1014 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015 readonly isX7: boolean;1016 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017 readonly isX8: boolean;1018 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020 }10211022 /** @name XcmV0Junction (85) */1023 interface XcmV0Junction extends Enum {1024 readonly isParent: boolean;1025 readonly isParachain: boolean;1026 readonly asParachain: Compact<u32>;1027 readonly isAccountId32: boolean;1028 readonly asAccountId32: {1029 readonly network: XcmV0JunctionNetworkId;1030 readonly id: U8aFixed;1031 } & Struct;1032 readonly isAccountIndex64: boolean;1033 readonly asAccountIndex64: {1034 readonly network: XcmV0JunctionNetworkId;1035 readonly index: Compact<u64>;1036 } & Struct;1037 readonly isAccountKey20: boolean;1038 readonly asAccountKey20: {1039 readonly network: XcmV0JunctionNetworkId;1040 readonly key: U8aFixed;1041 } & Struct;1042 readonly isPalletInstance: boolean;1043 readonly asPalletInstance: u8;1044 readonly isGeneralIndex: boolean;1045 readonly asGeneralIndex: Compact<u128>;1046 readonly isGeneralKey: boolean;1047 readonly asGeneralKey: Bytes;1048 readonly isOnlyChild: boolean;1049 readonly isPlurality: boolean;1050 readonly asPlurality: {1051 readonly id: XcmV0JunctionBodyId;1052 readonly part: XcmV0JunctionBodyPart;1053 } & Struct;1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055 }10561057 /** @name XcmVersionedMultiLocation (86) */1058 interface XcmVersionedMultiLocation extends Enum {1059 readonly isV0: boolean;1060 readonly asV0: XcmV0MultiLocation;1061 readonly isV1: boolean;1062 readonly asV1: XcmV1MultiLocation;1063 readonly type: 'V0' | 'V1';1064 }10651066 /** @name CumulusPalletXcmEvent (87) */1067 interface CumulusPalletXcmEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: U8aFixed;1070 readonly isUnsupportedVersion: boolean;1071 readonly asUnsupportedVersion: U8aFixed;1072 readonly isExecutedDownward: boolean;1073 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075 }10761077 /** @name CumulusPalletDmpQueueEvent (88) */1078 interface CumulusPalletDmpQueueEvent extends Enum {1079 readonly isInvalidFormat: boolean;1080 readonly asInvalidFormat: {1081 readonly messageId: U8aFixed;1082 } & Struct;1083 readonly isUnsupportedVersion: boolean;1084 readonly asUnsupportedVersion: {1085 readonly messageId: U8aFixed;1086 } & Struct;1087 readonly isExecutedDownward: boolean;1088 readonly asExecutedDownward: {1089 readonly messageId: U8aFixed;1090 readonly outcome: XcmV2TraitsOutcome;1091 } & Struct;1092 readonly isWeightExhausted: boolean;1093 readonly asWeightExhausted: {1094 readonly messageId: U8aFixed;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1097 } & Struct;1098 readonly isOverweightEnqueued: boolean;1099 readonly asOverweightEnqueued: {1100 readonly messageId: U8aFixed;1101 readonly overweightIndex: u64;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1103 } & Struct;1104 readonly isOverweightServiced: boolean;1105 readonly asOverweightServiced: {1106 readonly overweightIndex: u64;1107 readonly weightUsed: SpWeightsWeightV2Weight;1108 } & Struct;1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }11111112 /** @name PalletUniqueSchedulerV2Event (89) */1113 interface PalletUniqueSchedulerV2Event extends Enum {1114 readonly isScheduled: boolean;1115 readonly asScheduled: {1116 readonly when: u32;1117 readonly index: u32;1118 } & Struct;1119 readonly isCanceled: boolean;1120 readonly asCanceled: {1121 readonly when: u32;1122 readonly index: u32;1123 } & Struct;1124 readonly isDispatched: boolean;1125 readonly asDispatched: {1126 readonly task: ITuple<[u32, u32]>;1127 readonly id: Option<U8aFixed>;1128 readonly result: Result<Null, SpRuntimeDispatchError>;1129 } & Struct;1130 readonly isPriorityChanged: boolean;1131 readonly asPriorityChanged: {1132 readonly task: ITuple<[u32, u32]>;1133 readonly priority: u8;1134 } & Struct;1135 readonly isCallUnavailable: boolean;1136 readonly asCallUnavailable: {1137 readonly task: ITuple<[u32, u32]>;1138 readonly id: Option<U8aFixed>;1139 } & Struct;1140 readonly isPermanentlyOverweight: boolean;1141 readonly asPermanentlyOverweight: {1142 readonly task: ITuple<[u32, u32]>;1143 readonly id: Option<U8aFixed>;1144 } & Struct;1145 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1146 }11471148 /** @name PalletCommonEvent (92) */1149 interface PalletCommonEvent extends Enum {1150 readonly isCollectionCreated: boolean;1151 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1152 readonly isCollectionDestroyed: boolean;1153 readonly asCollectionDestroyed: u32;1154 readonly isItemCreated: boolean;1155 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1156 readonly isItemDestroyed: boolean;1157 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1158 readonly isTransfer: boolean;1159 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1160 readonly isApproved: boolean;1161 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1162 readonly isApprovedForAll: boolean;1163 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1164 readonly isCollectionPropertySet: boolean;1165 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1166 readonly isCollectionPropertyDeleted: boolean;1167 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1168 readonly isTokenPropertySet: boolean;1169 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1170 readonly isTokenPropertyDeleted: boolean;1171 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1172 readonly isPropertyPermissionSet: boolean;1173 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1174 readonly isAllowListAddressAdded: boolean;1175 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1176 readonly isAllowListAddressRemoved: boolean;1177 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1178 readonly isCollectionAdminAdded: boolean;1179 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1180 readonly isCollectionAdminRemoved: boolean;1181 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1182 readonly isCollectionLimitSet: boolean;1183 readonly asCollectionLimitSet: u32;1184 readonly isCollectionOwnerChanged: boolean;1185 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1186 readonly isCollectionPermissionSet: boolean;1187 readonly asCollectionPermissionSet: u32;1188 readonly isCollectionSponsorSet: boolean;1189 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1190 readonly isSponsorshipConfirmed: boolean;1191 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1192 readonly isCollectionSponsorRemoved: boolean;1193 readonly asCollectionSponsorRemoved: u32;1194 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1195 }11961197 /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */1198 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1199 readonly isSubstrate: boolean;1200 readonly asSubstrate: AccountId32;1201 readonly isEthereum: boolean;1202 readonly asEthereum: H160;1203 readonly type: 'Substrate' | 'Ethereum';1204 }12051206 /** @name PalletStructureEvent (99) */1207 interface PalletStructureEvent extends Enum {1208 readonly isExecuted: boolean;1209 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1210 readonly type: 'Executed';1211 }12121213 /** @name PalletRmrkCoreEvent (100) */1214 interface PalletRmrkCoreEvent extends Enum {1215 readonly isCollectionCreated: boolean;1216 readonly asCollectionCreated: {1217 readonly issuer: AccountId32;1218 readonly collectionId: u32;1219 } & Struct;1220 readonly isCollectionDestroyed: boolean;1221 readonly asCollectionDestroyed: {1222 readonly issuer: AccountId32;1223 readonly collectionId: u32;1224 } & Struct;1225 readonly isIssuerChanged: boolean;1226 readonly asIssuerChanged: {1227 readonly oldIssuer: AccountId32;1228 readonly newIssuer: AccountId32;1229 readonly collectionId: u32;1230 } & Struct;1231 readonly isCollectionLocked: boolean;1232 readonly asCollectionLocked: {1233 readonly issuer: AccountId32;1234 readonly collectionId: u32;1235 } & Struct;1236 readonly isNftMinted: boolean;1237 readonly asNftMinted: {1238 readonly owner: AccountId32;1239 readonly collectionId: u32;1240 readonly nftId: u32;1241 } & Struct;1242 readonly isNftBurned: boolean;1243 readonly asNftBurned: {1244 readonly owner: AccountId32;1245 readonly nftId: u32;1246 } & Struct;1247 readonly isNftSent: boolean;1248 readonly asNftSent: {1249 readonly sender: AccountId32;1250 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1251 readonly collectionId: u32;1252 readonly nftId: u32;1253 readonly approvalRequired: bool;1254 } & Struct;1255 readonly isNftAccepted: boolean;1256 readonly asNftAccepted: {1257 readonly sender: AccountId32;1258 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1259 readonly collectionId: u32;1260 readonly nftId: u32;1261 } & Struct;1262 readonly isNftRejected: boolean;1263 readonly asNftRejected: {1264 readonly sender: AccountId32;1265 readonly collectionId: u32;1266 readonly nftId: u32;1267 } & Struct;1268 readonly isPropertySet: boolean;1269 readonly asPropertySet: {1270 readonly collectionId: u32;1271 readonly maybeNftId: Option<u32>;1272 readonly key: Bytes;1273 readonly value: Bytes;1274 } & Struct;1275 readonly isResourceAdded: boolean;1276 readonly asResourceAdded: {1277 readonly nftId: u32;1278 readonly resourceId: u32;1279 } & Struct;1280 readonly isResourceRemoval: boolean;1281 readonly asResourceRemoval: {1282 readonly nftId: u32;1283 readonly resourceId: u32;1284 } & Struct;1285 readonly isResourceAccepted: boolean;1286 readonly asResourceAccepted: {1287 readonly nftId: u32;1288 readonly resourceId: u32;1289 } & Struct;1290 readonly isResourceRemovalAccepted: boolean;1291 readonly asResourceRemovalAccepted: {1292 readonly nftId: u32;1293 readonly resourceId: u32;1294 } & Struct;1295 readonly isPrioritySet: boolean;1296 readonly asPrioritySet: {1297 readonly collectionId: u32;1298 readonly nftId: u32;1299 } & Struct;1300 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1301 }13021303 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1304 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1305 readonly isAccountId: boolean;1306 readonly asAccountId: AccountId32;1307 readonly isCollectionAndNftTuple: boolean;1308 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1309 readonly type: 'AccountId' | 'CollectionAndNftTuple';1310 }13111312 /** @name PalletRmrkEquipEvent (105) */1313 interface PalletRmrkEquipEvent extends Enum {1314 readonly isBaseCreated: boolean;1315 readonly asBaseCreated: {1316 readonly issuer: AccountId32;1317 readonly baseId: u32;1318 } & Struct;1319 readonly isEquippablesUpdated: boolean;1320 readonly asEquippablesUpdated: {1321 readonly baseId: u32;1322 readonly slotId: u32;1323 } & Struct;1324 readonly type: 'BaseCreated' | 'EquippablesUpdated';1325 }13261327 /** @name PalletAppPromotionEvent (106) */1328 interface PalletAppPromotionEvent extends Enum {1329 readonly isStakingRecalculation: boolean;1330 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1331 readonly isStake: boolean;1332 readonly asStake: ITuple<[AccountId32, u128]>;1333 readonly isUnstake: boolean;1334 readonly asUnstake: ITuple<[AccountId32, u128]>;1335 readonly isSetAdmin: boolean;1336 readonly asSetAdmin: AccountId32;1337 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1338 }13391340 /** @name PalletForeignAssetsModuleEvent (107) */1341 interface PalletForeignAssetsModuleEvent extends Enum {1342 readonly isForeignAssetRegistered: boolean;1343 readonly asForeignAssetRegistered: {1344 readonly assetId: u32;1345 readonly assetAddress: XcmV1MultiLocation;1346 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1347 } & Struct;1348 readonly isForeignAssetUpdated: boolean;1349 readonly asForeignAssetUpdated: {1350 readonly assetId: u32;1351 readonly assetAddress: XcmV1MultiLocation;1352 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1353 } & Struct;1354 readonly isAssetRegistered: boolean;1355 readonly asAssetRegistered: {1356 readonly assetId: PalletForeignAssetsAssetIds;1357 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1358 } & Struct;1359 readonly isAssetUpdated: boolean;1360 readonly asAssetUpdated: {1361 readonly assetId: PalletForeignAssetsAssetIds;1362 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1363 } & Struct;1364 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1365 }13661367 /** @name PalletForeignAssetsModuleAssetMetadata (108) */1368 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1369 readonly name: Bytes;1370 readonly symbol: Bytes;1371 readonly decimals: u8;1372 readonly minimalBalance: u128;1373 }13741375 /** @name PalletEvmEvent (109) */1376 interface PalletEvmEvent extends Enum {1377 readonly isLog: boolean;1378 readonly asLog: {1379 readonly log: EthereumLog;1380 } & Struct;1381 readonly isCreated: boolean;1382 readonly asCreated: {1383 readonly address: H160;1384 } & Struct;1385 readonly isCreatedFailed: boolean;1386 readonly asCreatedFailed: {1387 readonly address: H160;1388 } & Struct;1389 readonly isExecuted: boolean;1390 readonly asExecuted: {1391 readonly address: H160;1392 } & Struct;1393 readonly isExecutedFailed: boolean;1394 readonly asExecutedFailed: {1395 readonly address: H160;1396 } & Struct;1397 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1398 }13991400 /** @name EthereumLog (110) */1401 interface EthereumLog extends Struct {1402 readonly address: H160;1403 readonly topics: Vec<H256>;1404 readonly data: Bytes;1405 }14061407 /** @name PalletEthereumEvent (112) */1408 interface PalletEthereumEvent extends Enum {1409 readonly isExecuted: boolean;1410 readonly asExecuted: {1411 readonly from: H160;1412 readonly to: H160;1413 readonly transactionHash: H256;1414 readonly exitReason: EvmCoreErrorExitReason;1415 } & Struct;1416 readonly type: 'Executed';1417 }14181419 /** @name EvmCoreErrorExitReason (113) */1420 interface EvmCoreErrorExitReason extends Enum {1421 readonly isSucceed: boolean;1422 readonly asSucceed: EvmCoreErrorExitSucceed;1423 readonly isError: boolean;1424 readonly asError: EvmCoreErrorExitError;1425 readonly isRevert: boolean;1426 readonly asRevert: EvmCoreErrorExitRevert;1427 readonly isFatal: boolean;1428 readonly asFatal: EvmCoreErrorExitFatal;1429 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1430 }14311432 /** @name EvmCoreErrorExitSucceed (114) */1433 interface EvmCoreErrorExitSucceed extends Enum {1434 readonly isStopped: boolean;1435 readonly isReturned: boolean;1436 readonly isSuicided: boolean;1437 readonly type: 'Stopped' | 'Returned' | 'Suicided';1438 }14391440 /** @name EvmCoreErrorExitError (115) */1441 interface EvmCoreErrorExitError extends Enum {1442 readonly isStackUnderflow: boolean;1443 readonly isStackOverflow: boolean;1444 readonly isInvalidJump: boolean;1445 readonly isInvalidRange: boolean;1446 readonly isDesignatedInvalid: boolean;1447 readonly isCallTooDeep: boolean;1448 readonly isCreateCollision: boolean;1449 readonly isCreateContractLimit: boolean;1450 readonly isOutOfOffset: boolean;1451 readonly isOutOfGas: boolean;1452 readonly isOutOfFund: boolean;1453 readonly isPcUnderflow: boolean;1454 readonly isCreateEmpty: boolean;1455 readonly isOther: boolean;1456 readonly asOther: Text;1457 readonly isInvalidCode: boolean;1458 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1459 }14601461 /** @name EvmCoreErrorExitRevert (118) */1462 interface EvmCoreErrorExitRevert extends Enum {1463 readonly isReverted: boolean;1464 readonly type: 'Reverted';1465 }14661467 /** @name EvmCoreErrorExitFatal (119) */1468 interface EvmCoreErrorExitFatal extends Enum {1469 readonly isNotSupported: boolean;1470 readonly isUnhandledInterrupt: boolean;1471 readonly isCallErrorAsFatal: boolean;1472 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1473 readonly isOther: boolean;1474 readonly asOther: Text;1475 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1476 }14771478 /** @name PalletEvmContractHelpersEvent (120) */1479 interface PalletEvmContractHelpersEvent extends Enum {1480 readonly isContractSponsorSet: boolean;1481 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1482 readonly isContractSponsorshipConfirmed: boolean;1483 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1484 readonly isContractSponsorRemoved: boolean;1485 readonly asContractSponsorRemoved: H160;1486 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1487 }14881489 /** @name PalletEvmMigrationEvent (121) */1490 interface PalletEvmMigrationEvent extends Enum {1491 readonly isTestEvent: boolean;1492 readonly type: 'TestEvent';1493 }14941495 /** @name PalletMaintenanceEvent (122) */1496 interface PalletMaintenanceEvent extends Enum {1497 readonly isMaintenanceEnabled: boolean;1498 readonly isMaintenanceDisabled: boolean;1499 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1500 }15011502 /** @name PalletTestUtilsEvent (123) */1503 interface PalletTestUtilsEvent extends Enum {1504 readonly isValueIsSet: boolean;1505 readonly isShouldRollback: boolean;1506 readonly isBatchCompleted: boolean;1507 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1508 }15091510 /** @name FrameSystemPhase (124) */1511 interface FrameSystemPhase extends Enum {1512 readonly isApplyExtrinsic: boolean;1513 readonly asApplyExtrinsic: u32;1514 readonly isFinalization: boolean;1515 readonly isInitialization: boolean;1516 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1517 }15181519 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1520 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1521 readonly specVersion: Compact<u32>;1522 readonly specName: Text;1523 }15241525 /** @name FrameSystemCall (127) */1526 interface FrameSystemCall extends Enum {1527 readonly isFillBlock: boolean;1528 readonly asFillBlock: {1529 readonly ratio: Perbill;1530 } & Struct;1531 readonly isRemark: boolean;1532 readonly asRemark: {1533 readonly remark: Bytes;1534 } & Struct;1535 readonly isSetHeapPages: boolean;1536 readonly asSetHeapPages: {1537 readonly pages: u64;1538 } & Struct;1539 readonly isSetCode: boolean;1540 readonly asSetCode: {1541 readonly code: Bytes;1542 } & Struct;1543 readonly isSetCodeWithoutChecks: boolean;1544 readonly asSetCodeWithoutChecks: {1545 readonly code: Bytes;1546 } & Struct;1547 readonly isSetStorage: boolean;1548 readonly asSetStorage: {1549 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1550 } & Struct;1551 readonly isKillStorage: boolean;1552 readonly asKillStorage: {1553 readonly keys_: Vec<Bytes>;1554 } & Struct;1555 readonly isKillPrefix: boolean;1556 readonly asKillPrefix: {1557 readonly prefix: Bytes;1558 readonly subkeys: u32;1559 } & Struct;1560 readonly isRemarkWithEvent: boolean;1561 readonly asRemarkWithEvent: {1562 readonly remark: Bytes;1563 } & Struct;1564 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1565 }15661567 /** @name FrameSystemLimitsBlockWeights (132) */1568 interface FrameSystemLimitsBlockWeights extends Struct {1569 readonly baseBlock: SpWeightsWeightV2Weight;1570 readonly maxBlock: SpWeightsWeightV2Weight;1571 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1572 }15731574 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */1575 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1576 readonly normal: FrameSystemLimitsWeightsPerClass;1577 readonly operational: FrameSystemLimitsWeightsPerClass;1578 readonly mandatory: FrameSystemLimitsWeightsPerClass;1579 }15801581 /** @name FrameSystemLimitsWeightsPerClass (134) */1582 interface FrameSystemLimitsWeightsPerClass extends Struct {1583 readonly baseExtrinsic: SpWeightsWeightV2Weight;1584 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1585 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1586 readonly reserved: Option<SpWeightsWeightV2Weight>;1587 }15881589 /** @name FrameSystemLimitsBlockLength (136) */1590 interface FrameSystemLimitsBlockLength extends Struct {1591 readonly max: FrameSupportDispatchPerDispatchClassU32;1592 }15931594 /** @name FrameSupportDispatchPerDispatchClassU32 (137) */1595 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1596 readonly normal: u32;1597 readonly operational: u32;1598 readonly mandatory: u32;1599 }16001601 /** @name SpWeightsRuntimeDbWeight (138) */1602 interface SpWeightsRuntimeDbWeight extends Struct {1603 readonly read: u64;1604 readonly write: u64;1605 }16061607 /** @name SpVersionRuntimeVersion (139) */1608 interface SpVersionRuntimeVersion extends Struct {1609 readonly specName: Text;1610 readonly implName: Text;1611 readonly authoringVersion: u32;1612 readonly specVersion: u32;1613 readonly implVersion: u32;1614 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1615 readonly transactionVersion: u32;1616 readonly stateVersion: u8;1617 }16181619 /** @name FrameSystemError (144) */1620 interface FrameSystemError extends Enum {1621 readonly isInvalidSpecName: boolean;1622 readonly isSpecVersionNeedsToIncrease: boolean;1623 readonly isFailedToExtractRuntimeVersion: boolean;1624 readonly isNonDefaultComposite: boolean;1625 readonly isNonZeroRefCount: boolean;1626 readonly isCallFiltered: boolean;1627 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1628 }16291630 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1631 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1632 readonly parentHead: Bytes;1633 readonly relayParentNumber: u32;1634 readonly relayParentStorageRoot: H256;1635 readonly maxPovSize: u32;1636 }16371638 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1639 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1640 readonly isPresent: boolean;1641 readonly type: 'Present';1642 }16431644 /** @name SpTrieStorageProof (149) */1645 interface SpTrieStorageProof extends Struct {1646 readonly trieNodes: BTreeSet<Bytes>;1647 }16481649 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1650 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1651 readonly dmqMqcHead: H256;1652 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1653 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1654 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1655 }16561657 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1658 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1659 readonly maxCapacity: u32;1660 readonly maxTotalSize: u32;1661 readonly maxMessageSize: u32;1662 readonly msgCount: u32;1663 readonly totalSize: u32;1664 readonly mqcHead: Option<H256>;1665 }16661667 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1668 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1669 readonly maxCodeSize: u32;1670 readonly maxHeadDataSize: u32;1671 readonly maxUpwardQueueCount: u32;1672 readonly maxUpwardQueueSize: u32;1673 readonly maxUpwardMessageSize: u32;1674 readonly maxUpwardMessageNumPerCandidate: u32;1675 readonly hrmpMaxMessageNumPerCandidate: u32;1676 readonly validationUpgradeCooldown: u32;1677 readonly validationUpgradeDelay: u32;1678 }16791680 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1681 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1682 readonly recipient: u32;1683 readonly data: Bytes;1684 }16851686 /** @name CumulusPalletParachainSystemCall (162) */1687 interface CumulusPalletParachainSystemCall extends Enum {1688 readonly isSetValidationData: boolean;1689 readonly asSetValidationData: {1690 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1691 } & Struct;1692 readonly isSudoSendUpwardMessage: boolean;1693 readonly asSudoSendUpwardMessage: {1694 readonly message: Bytes;1695 } & Struct;1696 readonly isAuthorizeUpgrade: boolean;1697 readonly asAuthorizeUpgrade: {1698 readonly codeHash: H256;1699 } & Struct;1700 readonly isEnactAuthorizedUpgrade: boolean;1701 readonly asEnactAuthorizedUpgrade: {1702 readonly code: Bytes;1703 } & Struct;1704 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1705 }17061707 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1708 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1709 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1710 readonly relayChainState: SpTrieStorageProof;1711 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1712 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1713 }17141715 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1716 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1717 readonly sentAt: u32;1718 readonly msg: Bytes;1719 }17201721 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1722 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1723 readonly sentAt: u32;1724 readonly data: Bytes;1725 }17261727 /** @name CumulusPalletParachainSystemError (171) */1728 interface CumulusPalletParachainSystemError extends Enum {1729 readonly isOverlappingUpgrades: boolean;1730 readonly isProhibitedByPolkadot: boolean;1731 readonly isTooBig: boolean;1732 readonly isValidationDataNotAvailable: boolean;1733 readonly isHostConfigurationNotAvailable: boolean;1734 readonly isNotScheduled: boolean;1735 readonly isNothingAuthorized: boolean;1736 readonly isUnauthorized: boolean;1737 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1738 }17391740 /** @name PalletBalancesBalanceLock (173) */1741 interface PalletBalancesBalanceLock extends Struct {1742 readonly id: U8aFixed;1743 readonly amount: u128;1744 readonly reasons: PalletBalancesReasons;1745 }17461747 /** @name PalletBalancesReasons (174) */1748 interface PalletBalancesReasons extends Enum {1749 readonly isFee: boolean;1750 readonly isMisc: boolean;1751 readonly isAll: boolean;1752 readonly type: 'Fee' | 'Misc' | 'All';1753 }17541755 /** @name PalletBalancesReserveData (177) */1756 interface PalletBalancesReserveData extends Struct {1757 readonly id: U8aFixed;1758 readonly amount: u128;1759 }17601761 /** @name PalletBalancesReleases (179) */1762 interface PalletBalancesReleases extends Enum {1763 readonly isV100: boolean;1764 readonly isV200: boolean;1765 readonly type: 'V100' | 'V200';1766 }17671768 /** @name PalletBalancesCall (180) */1769 interface PalletBalancesCall extends Enum {1770 readonly isTransfer: boolean;1771 readonly asTransfer: {1772 readonly dest: MultiAddress;1773 readonly value: Compact<u128>;1774 } & Struct;1775 readonly isSetBalance: boolean;1776 readonly asSetBalance: {1777 readonly who: MultiAddress;1778 readonly newFree: Compact<u128>;1779 readonly newReserved: Compact<u128>;1780 } & Struct;1781 readonly isForceTransfer: boolean;1782 readonly asForceTransfer: {1783 readonly source: MultiAddress;1784 readonly dest: MultiAddress;1785 readonly value: Compact<u128>;1786 } & Struct;1787 readonly isTransferKeepAlive: boolean;1788 readonly asTransferKeepAlive: {1789 readonly dest: MultiAddress;1790 readonly value: Compact<u128>;1791 } & Struct;1792 readonly isTransferAll: boolean;1793 readonly asTransferAll: {1794 readonly dest: MultiAddress;1795 readonly keepAlive: bool;1796 } & Struct;1797 readonly isForceUnreserve: boolean;1798 readonly asForceUnreserve: {1799 readonly who: MultiAddress;1800 readonly amount: u128;1801 } & Struct;1802 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1803 }18041805 /** @name PalletBalancesError (183) */1806 interface PalletBalancesError extends Enum {1807 readonly isVestingBalance: boolean;1808 readonly isLiquidityRestrictions: boolean;1809 readonly isInsufficientBalance: boolean;1810 readonly isExistentialDeposit: boolean;1811 readonly isKeepAlive: boolean;1812 readonly isExistingVestingSchedule: boolean;1813 readonly isDeadAccount: boolean;1814 readonly isTooManyReserves: boolean;1815 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1816 }18171818 /** @name PalletTimestampCall (185) */1819 interface PalletTimestampCall extends Enum {1820 readonly isSet: boolean;1821 readonly asSet: {1822 readonly now: Compact<u64>;1823 } & Struct;1824 readonly type: 'Set';1825 }18261827 /** @name PalletTransactionPaymentReleases (187) */1828 interface PalletTransactionPaymentReleases extends Enum {1829 readonly isV1Ancient: boolean;1830 readonly isV2: boolean;1831 readonly type: 'V1Ancient' | 'V2';1832 }18331834 /** @name PalletTreasuryProposal (188) */1835 interface PalletTreasuryProposal extends Struct {1836 readonly proposer: AccountId32;1837 readonly value: u128;1838 readonly beneficiary: AccountId32;1839 readonly bond: u128;1840 }18411842 /** @name PalletTreasuryCall (191) */1843 interface PalletTreasuryCall extends Enum {1844 readonly isProposeSpend: boolean;1845 readonly asProposeSpend: {1846 readonly value: Compact<u128>;1847 readonly beneficiary: MultiAddress;1848 } & Struct;1849 readonly isRejectProposal: boolean;1850 readonly asRejectProposal: {1851 readonly proposalId: Compact<u32>;1852 } & Struct;1853 readonly isApproveProposal: boolean;1854 readonly asApproveProposal: {1855 readonly proposalId: Compact<u32>;1856 } & Struct;1857 readonly isSpend: boolean;1858 readonly asSpend: {1859 readonly amount: Compact<u128>;1860 readonly beneficiary: MultiAddress;1861 } & Struct;1862 readonly isRemoveApproval: boolean;1863 readonly asRemoveApproval: {1864 readonly proposalId: Compact<u32>;1865 } & Struct;1866 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1867 }18681869 /** @name FrameSupportPalletId (194) */1870 interface FrameSupportPalletId extends U8aFixed {}18711872 /** @name PalletTreasuryError (195) */1873 interface PalletTreasuryError extends Enum {1874 readonly isInsufficientProposersBalance: boolean;1875 readonly isInvalidIndex: boolean;1876 readonly isTooManyApprovals: boolean;1877 readonly isInsufficientPermission: boolean;1878 readonly isProposalNotApproved: boolean;1879 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1880 }18811882 /** @name PalletSudoCall (196) */1883 interface PalletSudoCall extends Enum {1884 readonly isSudo: boolean;1885 readonly asSudo: {1886 readonly call: Call;1887 } & Struct;1888 readonly isSudoUncheckedWeight: boolean;1889 readonly asSudoUncheckedWeight: {1890 readonly call: Call;1891 readonly weight: SpWeightsWeightV2Weight;1892 } & Struct;1893 readonly isSetKey: boolean;1894 readonly asSetKey: {1895 readonly new_: MultiAddress;1896 } & Struct;1897 readonly isSudoAs: boolean;1898 readonly asSudoAs: {1899 readonly who: MultiAddress;1900 readonly call: Call;1901 } & Struct;1902 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1903 }19041905 /** @name OrmlVestingModuleCall (198) */1906 interface OrmlVestingModuleCall extends Enum {1907 readonly isClaim: boolean;1908 readonly isVestedTransfer: boolean;1909 readonly asVestedTransfer: {1910 readonly dest: MultiAddress;1911 readonly schedule: OrmlVestingVestingSchedule;1912 } & Struct;1913 readonly isUpdateVestingSchedules: boolean;1914 readonly asUpdateVestingSchedules: {1915 readonly who: MultiAddress;1916 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1917 } & Struct;1918 readonly isClaimFor: boolean;1919 readonly asClaimFor: {1920 readonly dest: MultiAddress;1921 } & Struct;1922 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1923 }19241925 /** @name OrmlXtokensModuleCall (200) */1926 interface OrmlXtokensModuleCall extends Enum {1927 readonly isTransfer: boolean;1928 readonly asTransfer: {1929 readonly currencyId: PalletForeignAssetsAssetIds;1930 readonly amount: u128;1931 readonly dest: XcmVersionedMultiLocation;1932 readonly destWeightLimit: XcmV2WeightLimit;1933 } & Struct;1934 readonly isTransferMultiasset: boolean;1935 readonly asTransferMultiasset: {1936 readonly asset: XcmVersionedMultiAsset;1937 readonly dest: XcmVersionedMultiLocation;1938 readonly destWeightLimit: XcmV2WeightLimit;1939 } & Struct;1940 readonly isTransferWithFee: boolean;1941 readonly asTransferWithFee: {1942 readonly currencyId: PalletForeignAssetsAssetIds;1943 readonly amount: u128;1944 readonly fee: u128;1945 readonly dest: XcmVersionedMultiLocation;1946 readonly destWeightLimit: XcmV2WeightLimit;1947 } & Struct;1948 readonly isTransferMultiassetWithFee: boolean;1949 readonly asTransferMultiassetWithFee: {1950 readonly asset: XcmVersionedMultiAsset;1951 readonly fee: XcmVersionedMultiAsset;1952 readonly dest: XcmVersionedMultiLocation;1953 readonly destWeightLimit: XcmV2WeightLimit;1954 } & Struct;1955 readonly isTransferMulticurrencies: boolean;1956 readonly asTransferMulticurrencies: {1957 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1958 readonly feeItem: u32;1959 readonly dest: XcmVersionedMultiLocation;1960 readonly destWeightLimit: XcmV2WeightLimit;1961 } & Struct;1962 readonly isTransferMultiassets: boolean;1963 readonly asTransferMultiassets: {1964 readonly assets: XcmVersionedMultiAssets;1965 readonly feeItem: u32;1966 readonly dest: XcmVersionedMultiLocation;1967 readonly destWeightLimit: XcmV2WeightLimit;1968 } & Struct;1969 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1970 }19711972 /** @name XcmVersionedMultiAsset (201) */1973 interface XcmVersionedMultiAsset extends Enum {1974 readonly isV0: boolean;1975 readonly asV0: XcmV0MultiAsset;1976 readonly isV1: boolean;1977 readonly asV1: XcmV1MultiAsset;1978 readonly type: 'V0' | 'V1';1979 }19801981 /** @name OrmlTokensModuleCall (204) */1982 interface OrmlTokensModuleCall extends Enum {1983 readonly isTransfer: boolean;1984 readonly asTransfer: {1985 readonly dest: MultiAddress;1986 readonly currencyId: PalletForeignAssetsAssetIds;1987 readonly amount: Compact<u128>;1988 } & Struct;1989 readonly isTransferAll: boolean;1990 readonly asTransferAll: {1991 readonly dest: MultiAddress;1992 readonly currencyId: PalletForeignAssetsAssetIds;1993 readonly keepAlive: bool;1994 } & Struct;1995 readonly isTransferKeepAlive: boolean;1996 readonly asTransferKeepAlive: {1997 readonly dest: MultiAddress;1998 readonly currencyId: PalletForeignAssetsAssetIds;1999 readonly amount: Compact<u128>;2000 } & Struct;2001 readonly isForceTransfer: boolean;2002 readonly asForceTransfer: {2003 readonly source: MultiAddress;2004 readonly dest: MultiAddress;2005 readonly currencyId: PalletForeignAssetsAssetIds;2006 readonly amount: Compact<u128>;2007 } & Struct;2008 readonly isSetBalance: boolean;2009 readonly asSetBalance: {2010 readonly who: MultiAddress;2011 readonly currencyId: PalletForeignAssetsAssetIds;2012 readonly newFree: Compact<u128>;2013 readonly newReserved: Compact<u128>;2014 } & Struct;2015 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2016 }20172018 /** @name CumulusPalletXcmpQueueCall (205) */2019 interface CumulusPalletXcmpQueueCall extends Enum {2020 readonly isServiceOverweight: boolean;2021 readonly asServiceOverweight: {2022 readonly index: u64;2023 readonly weightLimit: u64;2024 } & Struct;2025 readonly isSuspendXcmExecution: boolean;2026 readonly isResumeXcmExecution: boolean;2027 readonly isUpdateSuspendThreshold: boolean;2028 readonly asUpdateSuspendThreshold: {2029 readonly new_: u32;2030 } & Struct;2031 readonly isUpdateDropThreshold: boolean;2032 readonly asUpdateDropThreshold: {2033 readonly new_: u32;2034 } & Struct;2035 readonly isUpdateResumeThreshold: boolean;2036 readonly asUpdateResumeThreshold: {2037 readonly new_: u32;2038 } & Struct;2039 readonly isUpdateThresholdWeight: boolean;2040 readonly asUpdateThresholdWeight: {2041 readonly new_: u64;2042 } & Struct;2043 readonly isUpdateWeightRestrictDecay: boolean;2044 readonly asUpdateWeightRestrictDecay: {2045 readonly new_: u64;2046 } & Struct;2047 readonly isUpdateXcmpMaxIndividualWeight: boolean;2048 readonly asUpdateXcmpMaxIndividualWeight: {2049 readonly new_: u64;2050 } & Struct;2051 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2052 }20532054 /** @name PalletXcmCall (206) */2055 interface PalletXcmCall extends Enum {2056 readonly isSend: boolean;2057 readonly asSend: {2058 readonly dest: XcmVersionedMultiLocation;2059 readonly message: XcmVersionedXcm;2060 } & Struct;2061 readonly isTeleportAssets: boolean;2062 readonly asTeleportAssets: {2063 readonly dest: XcmVersionedMultiLocation;2064 readonly beneficiary: XcmVersionedMultiLocation;2065 readonly assets: XcmVersionedMultiAssets;2066 readonly feeAssetItem: u32;2067 } & Struct;2068 readonly isReserveTransferAssets: boolean;2069 readonly asReserveTransferAssets: {2070 readonly dest: XcmVersionedMultiLocation;2071 readonly beneficiary: XcmVersionedMultiLocation;2072 readonly assets: XcmVersionedMultiAssets;2073 readonly feeAssetItem: u32;2074 } & Struct;2075 readonly isExecute: boolean;2076 readonly asExecute: {2077 readonly message: XcmVersionedXcm;2078 readonly maxWeight: u64;2079 } & Struct;2080 readonly isForceXcmVersion: boolean;2081 readonly asForceXcmVersion: {2082 readonly location: XcmV1MultiLocation;2083 readonly xcmVersion: u32;2084 } & Struct;2085 readonly isForceDefaultXcmVersion: boolean;2086 readonly asForceDefaultXcmVersion: {2087 readonly maybeXcmVersion: Option<u32>;2088 } & Struct;2089 readonly isForceSubscribeVersionNotify: boolean;2090 readonly asForceSubscribeVersionNotify: {2091 readonly location: XcmVersionedMultiLocation;2092 } & Struct;2093 readonly isForceUnsubscribeVersionNotify: boolean;2094 readonly asForceUnsubscribeVersionNotify: {2095 readonly location: XcmVersionedMultiLocation;2096 } & Struct;2097 readonly isLimitedReserveTransferAssets: boolean;2098 readonly asLimitedReserveTransferAssets: {2099 readonly dest: XcmVersionedMultiLocation;2100 readonly beneficiary: XcmVersionedMultiLocation;2101 readonly assets: XcmVersionedMultiAssets;2102 readonly feeAssetItem: u32;2103 readonly weightLimit: XcmV2WeightLimit;2104 } & Struct;2105 readonly isLimitedTeleportAssets: boolean;2106 readonly asLimitedTeleportAssets: {2107 readonly dest: XcmVersionedMultiLocation;2108 readonly beneficiary: XcmVersionedMultiLocation;2109 readonly assets: XcmVersionedMultiAssets;2110 readonly feeAssetItem: u32;2111 readonly weightLimit: XcmV2WeightLimit;2112 } & Struct;2113 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2114 }21152116 /** @name XcmVersionedXcm (207) */2117 interface XcmVersionedXcm extends Enum {2118 readonly isV0: boolean;2119 readonly asV0: XcmV0Xcm;2120 readonly isV1: boolean;2121 readonly asV1: XcmV1Xcm;2122 readonly isV2: boolean;2123 readonly asV2: XcmV2Xcm;2124 readonly type: 'V0' | 'V1' | 'V2';2125 }21262127 /** @name XcmV0Xcm (208) */2128 interface XcmV0Xcm extends Enum {2129 readonly isWithdrawAsset: boolean;2130 readonly asWithdrawAsset: {2131 readonly assets: Vec<XcmV0MultiAsset>;2132 readonly effects: Vec<XcmV0Order>;2133 } & Struct;2134 readonly isReserveAssetDeposit: boolean;2135 readonly asReserveAssetDeposit: {2136 readonly assets: Vec<XcmV0MultiAsset>;2137 readonly effects: Vec<XcmV0Order>;2138 } & Struct;2139 readonly isTeleportAsset: boolean;2140 readonly asTeleportAsset: {2141 readonly assets: Vec<XcmV0MultiAsset>;2142 readonly effects: Vec<XcmV0Order>;2143 } & Struct;2144 readonly isQueryResponse: boolean;2145 readonly asQueryResponse: {2146 readonly queryId: Compact<u64>;2147 readonly response: XcmV0Response;2148 } & Struct;2149 readonly isTransferAsset: boolean;2150 readonly asTransferAsset: {2151 readonly assets: Vec<XcmV0MultiAsset>;2152 readonly dest: XcmV0MultiLocation;2153 } & Struct;2154 readonly isTransferReserveAsset: boolean;2155 readonly asTransferReserveAsset: {2156 readonly assets: Vec<XcmV0MultiAsset>;2157 readonly dest: XcmV0MultiLocation;2158 readonly effects: Vec<XcmV0Order>;2159 } & Struct;2160 readonly isTransact: boolean;2161 readonly asTransact: {2162 readonly originType: XcmV0OriginKind;2163 readonly requireWeightAtMost: u64;2164 readonly call: XcmDoubleEncoded;2165 } & Struct;2166 readonly isHrmpNewChannelOpenRequest: boolean;2167 readonly asHrmpNewChannelOpenRequest: {2168 readonly sender: Compact<u32>;2169 readonly maxMessageSize: Compact<u32>;2170 readonly maxCapacity: Compact<u32>;2171 } & Struct;2172 readonly isHrmpChannelAccepted: boolean;2173 readonly asHrmpChannelAccepted: {2174 readonly recipient: Compact<u32>;2175 } & Struct;2176 readonly isHrmpChannelClosing: boolean;2177 readonly asHrmpChannelClosing: {2178 readonly initiator: Compact<u32>;2179 readonly sender: Compact<u32>;2180 readonly recipient: Compact<u32>;2181 } & Struct;2182 readonly isRelayedFrom: boolean;2183 readonly asRelayedFrom: {2184 readonly who: XcmV0MultiLocation;2185 readonly message: XcmV0Xcm;2186 } & Struct;2187 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2188 }21892190 /** @name XcmV0Order (210) */2191 interface XcmV0Order extends Enum {2192 readonly isNull: boolean;2193 readonly isDepositAsset: boolean;2194 readonly asDepositAsset: {2195 readonly assets: Vec<XcmV0MultiAsset>;2196 readonly dest: XcmV0MultiLocation;2197 } & Struct;2198 readonly isDepositReserveAsset: boolean;2199 readonly asDepositReserveAsset: {2200 readonly assets: Vec<XcmV0MultiAsset>;2201 readonly dest: XcmV0MultiLocation;2202 readonly effects: Vec<XcmV0Order>;2203 } & Struct;2204 readonly isExchangeAsset: boolean;2205 readonly asExchangeAsset: {2206 readonly give: Vec<XcmV0MultiAsset>;2207 readonly receive: Vec<XcmV0MultiAsset>;2208 } & Struct;2209 readonly isInitiateReserveWithdraw: boolean;2210 readonly asInitiateReserveWithdraw: {2211 readonly assets: Vec<XcmV0MultiAsset>;2212 readonly reserve: XcmV0MultiLocation;2213 readonly effects: Vec<XcmV0Order>;2214 } & Struct;2215 readonly isInitiateTeleport: boolean;2216 readonly asInitiateTeleport: {2217 readonly assets: Vec<XcmV0MultiAsset>;2218 readonly dest: XcmV0MultiLocation;2219 readonly effects: Vec<XcmV0Order>;2220 } & Struct;2221 readonly isQueryHolding: boolean;2222 readonly asQueryHolding: {2223 readonly queryId: Compact<u64>;2224 readonly dest: XcmV0MultiLocation;2225 readonly assets: Vec<XcmV0MultiAsset>;2226 } & Struct;2227 readonly isBuyExecution: boolean;2228 readonly asBuyExecution: {2229 readonly fees: XcmV0MultiAsset;2230 readonly weight: u64;2231 readonly debt: u64;2232 readonly haltOnError: bool;2233 readonly xcm: Vec<XcmV0Xcm>;2234 } & Struct;2235 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2236 }22372238 /** @name XcmV0Response (212) */2239 interface XcmV0Response extends Enum {2240 readonly isAssets: boolean;2241 readonly asAssets: Vec<XcmV0MultiAsset>;2242 readonly type: 'Assets';2243 }22442245 /** @name XcmV1Xcm (213) */2246 interface XcmV1Xcm extends Enum {2247 readonly isWithdrawAsset: boolean;2248 readonly asWithdrawAsset: {2249 readonly assets: XcmV1MultiassetMultiAssets;2250 readonly effects: Vec<XcmV1Order>;2251 } & Struct;2252 readonly isReserveAssetDeposited: boolean;2253 readonly asReserveAssetDeposited: {2254 readonly assets: XcmV1MultiassetMultiAssets;2255 readonly effects: Vec<XcmV1Order>;2256 } & Struct;2257 readonly isReceiveTeleportedAsset: boolean;2258 readonly asReceiveTeleportedAsset: {2259 readonly assets: XcmV1MultiassetMultiAssets;2260 readonly effects: Vec<XcmV1Order>;2261 } & Struct;2262 readonly isQueryResponse: boolean;2263 readonly asQueryResponse: {2264 readonly queryId: Compact<u64>;2265 readonly response: XcmV1Response;2266 } & Struct;2267 readonly isTransferAsset: boolean;2268 readonly asTransferAsset: {2269 readonly assets: XcmV1MultiassetMultiAssets;2270 readonly beneficiary: XcmV1MultiLocation;2271 } & Struct;2272 readonly isTransferReserveAsset: boolean;2273 readonly asTransferReserveAsset: {2274 readonly assets: XcmV1MultiassetMultiAssets;2275 readonly dest: XcmV1MultiLocation;2276 readonly effects: Vec<XcmV1Order>;2277 } & Struct;2278 readonly isTransact: boolean;2279 readonly asTransact: {2280 readonly originType: XcmV0OriginKind;2281 readonly requireWeightAtMost: u64;2282 readonly call: XcmDoubleEncoded;2283 } & Struct;2284 readonly isHrmpNewChannelOpenRequest: boolean;2285 readonly asHrmpNewChannelOpenRequest: {2286 readonly sender: Compact<u32>;2287 readonly maxMessageSize: Compact<u32>;2288 readonly maxCapacity: Compact<u32>;2289 } & Struct;2290 readonly isHrmpChannelAccepted: boolean;2291 readonly asHrmpChannelAccepted: {2292 readonly recipient: Compact<u32>;2293 } & Struct;2294 readonly isHrmpChannelClosing: boolean;2295 readonly asHrmpChannelClosing: {2296 readonly initiator: Compact<u32>;2297 readonly sender: Compact<u32>;2298 readonly recipient: Compact<u32>;2299 } & Struct;2300 readonly isRelayedFrom: boolean;2301 readonly asRelayedFrom: {2302 readonly who: XcmV1MultilocationJunctions;2303 readonly message: XcmV1Xcm;2304 } & Struct;2305 readonly isSubscribeVersion: boolean;2306 readonly asSubscribeVersion: {2307 readonly queryId: Compact<u64>;2308 readonly maxResponseWeight: Compact<u64>;2309 } & Struct;2310 readonly isUnsubscribeVersion: boolean;2311 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2312 }23132314 /** @name XcmV1Order (215) */2315 interface XcmV1Order extends Enum {2316 readonly isNoop: boolean;2317 readonly isDepositAsset: boolean;2318 readonly asDepositAsset: {2319 readonly assets: XcmV1MultiassetMultiAssetFilter;2320 readonly maxAssets: u32;2321 readonly beneficiary: XcmV1MultiLocation;2322 } & Struct;2323 readonly isDepositReserveAsset: boolean;2324 readonly asDepositReserveAsset: {2325 readonly assets: XcmV1MultiassetMultiAssetFilter;2326 readonly maxAssets: u32;2327 readonly dest: XcmV1MultiLocation;2328 readonly effects: Vec<XcmV1Order>;2329 } & Struct;2330 readonly isExchangeAsset: boolean;2331 readonly asExchangeAsset: {2332 readonly give: XcmV1MultiassetMultiAssetFilter;2333 readonly receive: XcmV1MultiassetMultiAssets;2334 } & Struct;2335 readonly isInitiateReserveWithdraw: boolean;2336 readonly asInitiateReserveWithdraw: {2337 readonly assets: XcmV1MultiassetMultiAssetFilter;2338 readonly reserve: XcmV1MultiLocation;2339 readonly effects: Vec<XcmV1Order>;2340 } & Struct;2341 readonly isInitiateTeleport: boolean;2342 readonly asInitiateTeleport: {2343 readonly assets: XcmV1MultiassetMultiAssetFilter;2344 readonly dest: XcmV1MultiLocation;2345 readonly effects: Vec<XcmV1Order>;2346 } & Struct;2347 readonly isQueryHolding: boolean;2348 readonly asQueryHolding: {2349 readonly queryId: Compact<u64>;2350 readonly dest: XcmV1MultiLocation;2351 readonly assets: XcmV1MultiassetMultiAssetFilter;2352 } & Struct;2353 readonly isBuyExecution: boolean;2354 readonly asBuyExecution: {2355 readonly fees: XcmV1MultiAsset;2356 readonly weight: u64;2357 readonly debt: u64;2358 readonly haltOnError: bool;2359 readonly instructions: Vec<XcmV1Xcm>;2360 } & Struct;2361 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2362 }23632364 /** @name XcmV1Response (217) */2365 interface XcmV1Response extends Enum {2366 readonly isAssets: boolean;2367 readonly asAssets: XcmV1MultiassetMultiAssets;2368 readonly isVersion: boolean;2369 readonly asVersion: u32;2370 readonly type: 'Assets' | 'Version';2371 }23722373 /** @name CumulusPalletXcmCall (231) */2374 type CumulusPalletXcmCall = Null;23752376 /** @name CumulusPalletDmpQueueCall (232) */2377 interface CumulusPalletDmpQueueCall extends Enum {2378 readonly isServiceOverweight: boolean;2379 readonly asServiceOverweight: {2380 readonly index: u64;2381 readonly weightLimit: u64;2382 } & Struct;2383 readonly type: 'ServiceOverweight';2384 }23852386 /** @name PalletInflationCall (233) */2387 interface PalletInflationCall extends Enum {2388 readonly isStartInflation: boolean;2389 readonly asStartInflation: {2390 readonly inflationStartRelayBlock: u32;2391 } & Struct;2392 readonly type: 'StartInflation';2393 }23942395 /** @name PalletUniqueCall (234) */2396 interface PalletUniqueCall extends Enum {2397 readonly isCreateCollection: boolean;2398 readonly asCreateCollection: {2399 readonly collectionName: Vec<u16>;2400 readonly collectionDescription: Vec<u16>;2401 readonly tokenPrefix: Bytes;2402 readonly mode: UpDataStructsCollectionMode;2403 } & Struct;2404 readonly isCreateCollectionEx: boolean;2405 readonly asCreateCollectionEx: {2406 readonly data: UpDataStructsCreateCollectionData;2407 } & Struct;2408 readonly isDestroyCollection: boolean;2409 readonly asDestroyCollection: {2410 readonly collectionId: u32;2411 } & Struct;2412 readonly isAddToAllowList: boolean;2413 readonly asAddToAllowList: {2414 readonly collectionId: u32;2415 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2416 } & Struct;2417 readonly isRemoveFromAllowList: boolean;2418 readonly asRemoveFromAllowList: {2419 readonly collectionId: u32;2420 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2421 } & Struct;2422 readonly isChangeCollectionOwner: boolean;2423 readonly asChangeCollectionOwner: {2424 readonly collectionId: u32;2425 readonly newOwner: AccountId32;2426 } & Struct;2427 readonly isAddCollectionAdmin: boolean;2428 readonly asAddCollectionAdmin: {2429 readonly collectionId: u32;2430 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2431 } & Struct;2432 readonly isRemoveCollectionAdmin: boolean;2433 readonly asRemoveCollectionAdmin: {2434 readonly collectionId: u32;2435 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2436 } & Struct;2437 readonly isSetCollectionSponsor: boolean;2438 readonly asSetCollectionSponsor: {2439 readonly collectionId: u32;2440 readonly newSponsor: AccountId32;2441 } & Struct;2442 readonly isConfirmSponsorship: boolean;2443 readonly asConfirmSponsorship: {2444 readonly collectionId: u32;2445 } & Struct;2446 readonly isRemoveCollectionSponsor: boolean;2447 readonly asRemoveCollectionSponsor: {2448 readonly collectionId: u32;2449 } & Struct;2450 readonly isCreateItem: boolean;2451 readonly asCreateItem: {2452 readonly collectionId: u32;2453 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2454 readonly data: UpDataStructsCreateItemData;2455 } & Struct;2456 readonly isCreateMultipleItems: boolean;2457 readonly asCreateMultipleItems: {2458 readonly collectionId: u32;2459 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2460 readonly itemsData: Vec<UpDataStructsCreateItemData>;2461 } & Struct;2462 readonly isSetCollectionProperties: boolean;2463 readonly asSetCollectionProperties: {2464 readonly collectionId: u32;2465 readonly properties: Vec<UpDataStructsProperty>;2466 } & Struct;2467 readonly isDeleteCollectionProperties: boolean;2468 readonly asDeleteCollectionProperties: {2469 readonly collectionId: u32;2470 readonly propertyKeys: Vec<Bytes>;2471 } & Struct;2472 readonly isSetTokenProperties: boolean;2473 readonly asSetTokenProperties: {2474 readonly collectionId: u32;2475 readonly tokenId: u32;2476 readonly properties: Vec<UpDataStructsProperty>;2477 } & Struct;2478 readonly isDeleteTokenProperties: boolean;2479 readonly asDeleteTokenProperties: {2480 readonly collectionId: u32;2481 readonly tokenId: u32;2482 readonly propertyKeys: Vec<Bytes>;2483 } & Struct;2484 readonly isSetTokenPropertyPermissions: boolean;2485 readonly asSetTokenPropertyPermissions: {2486 readonly collectionId: u32;2487 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2488 } & Struct;2489 readonly isCreateMultipleItemsEx: boolean;2490 readonly asCreateMultipleItemsEx: {2491 readonly collectionId: u32;2492 readonly data: UpDataStructsCreateItemExData;2493 } & Struct;2494 readonly isSetTransfersEnabledFlag: boolean;2495 readonly asSetTransfersEnabledFlag: {2496 readonly collectionId: u32;2497 readonly value: bool;2498 } & Struct;2499 readonly isBurnItem: boolean;2500 readonly asBurnItem: {2501 readonly collectionId: u32;2502 readonly itemId: u32;2503 readonly value: u128;2504 } & Struct;2505 readonly isBurnFrom: boolean;2506 readonly asBurnFrom: {2507 readonly collectionId: u32;2508 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2509 readonly itemId: u32;2510 readonly value: u128;2511 } & Struct;2512 readonly isTransfer: boolean;2513 readonly asTransfer: {2514 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2515 readonly collectionId: u32;2516 readonly itemId: u32;2517 readonly value: u128;2518 } & Struct;2519 readonly isApprove: boolean;2520 readonly asApprove: {2521 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2522 readonly collectionId: u32;2523 readonly itemId: u32;2524 readonly amount: u128;2525 } & Struct;2526 readonly isTransferFrom: boolean;2527 readonly asTransferFrom: {2528 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2529 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2530 readonly collectionId: u32;2531 readonly itemId: u32;2532 readonly value: u128;2533 } & Struct;2534 readonly isSetCollectionLimits: boolean;2535 readonly asSetCollectionLimits: {2536 readonly collectionId: u32;2537 readonly newLimit: UpDataStructsCollectionLimits;2538 } & Struct;2539 readonly isSetCollectionPermissions: boolean;2540 readonly asSetCollectionPermissions: {2541 readonly collectionId: u32;2542 readonly newPermission: UpDataStructsCollectionPermissions;2543 } & Struct;2544 readonly isRepartition: boolean;2545 readonly asRepartition: {2546 readonly collectionId: u32;2547 readonly tokenId: u32;2548 readonly amount: u128;2549 } & Struct;2550 readonly isSetAllowanceForAll: boolean;2551 readonly asSetAllowanceForAll: {2552 readonly collectionId: u32;2553 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2554 readonly approve: bool;2555 } & Struct;2556 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2557 }25582559 /** @name UpDataStructsCollectionMode (239) */2560 interface UpDataStructsCollectionMode extends Enum {2561 readonly isNft: boolean;2562 readonly isFungible: boolean;2563 readonly asFungible: u8;2564 readonly isReFungible: boolean;2565 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2566 }25672568 /** @name UpDataStructsCreateCollectionData (240) */2569 interface UpDataStructsCreateCollectionData extends Struct {2570 readonly mode: UpDataStructsCollectionMode;2571 readonly access: Option<UpDataStructsAccessMode>;2572 readonly name: Vec<u16>;2573 readonly description: Vec<u16>;2574 readonly tokenPrefix: Bytes;2575 readonly pendingSponsor: Option<AccountId32>;2576 readonly limits: Option<UpDataStructsCollectionLimits>;2577 readonly permissions: Option<UpDataStructsCollectionPermissions>;2578 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2579 readonly properties: Vec<UpDataStructsProperty>;2580 }25812582 /** @name UpDataStructsAccessMode (242) */2583 interface UpDataStructsAccessMode extends Enum {2584 readonly isNormal: boolean;2585 readonly isAllowList: boolean;2586 readonly type: 'Normal' | 'AllowList';2587 }25882589 /** @name UpDataStructsCollectionLimits (244) */2590 interface UpDataStructsCollectionLimits extends Struct {2591 readonly accountTokenOwnershipLimit: Option<u32>;2592 readonly sponsoredDataSize: Option<u32>;2593 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2594 readonly tokenLimit: Option<u32>;2595 readonly sponsorTransferTimeout: Option<u32>;2596 readonly sponsorApproveTimeout: Option<u32>;2597 readonly ownerCanTransfer: Option<bool>;2598 readonly ownerCanDestroy: Option<bool>;2599 readonly transfersEnabled: Option<bool>;2600 }26012602 /** @name UpDataStructsSponsoringRateLimit (246) */2603 interface UpDataStructsSponsoringRateLimit extends Enum {2604 readonly isSponsoringDisabled: boolean;2605 readonly isBlocks: boolean;2606 readonly asBlocks: u32;2607 readonly type: 'SponsoringDisabled' | 'Blocks';2608 }26092610 /** @name UpDataStructsCollectionPermissions (249) */2611 interface UpDataStructsCollectionPermissions extends Struct {2612 readonly access: Option<UpDataStructsAccessMode>;2613 readonly mintMode: Option<bool>;2614 readonly nesting: Option<UpDataStructsNestingPermissions>;2615 }26162617 /** @name UpDataStructsNestingPermissions (251) */2618 interface UpDataStructsNestingPermissions extends Struct {2619 readonly tokenOwner: bool;2620 readonly collectionAdmin: bool;2621 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2622 }26232624 /** @name UpDataStructsOwnerRestrictedSet (253) */2625 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26262627 /** @name UpDataStructsPropertyKeyPermission (258) */2628 interface UpDataStructsPropertyKeyPermission extends Struct {2629 readonly key: Bytes;2630 readonly permission: UpDataStructsPropertyPermission;2631 }26322633 /** @name UpDataStructsPropertyPermission (259) */2634 interface UpDataStructsPropertyPermission extends Struct {2635 readonly mutable: bool;2636 readonly collectionAdmin: bool;2637 readonly tokenOwner: bool;2638 }26392640 /** @name UpDataStructsProperty (262) */2641 interface UpDataStructsProperty extends Struct {2642 readonly key: Bytes;2643 readonly value: Bytes;2644 }26452646 /** @name UpDataStructsCreateItemData (265) */2647 interface UpDataStructsCreateItemData extends Enum {2648 readonly isNft: boolean;2649 readonly asNft: UpDataStructsCreateNftData;2650 readonly isFungible: boolean;2651 readonly asFungible: UpDataStructsCreateFungibleData;2652 readonly isReFungible: boolean;2653 readonly asReFungible: UpDataStructsCreateReFungibleData;2654 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2655 }26562657 /** @name UpDataStructsCreateNftData (266) */2658 interface UpDataStructsCreateNftData extends Struct {2659 readonly properties: Vec<UpDataStructsProperty>;2660 }26612662 /** @name UpDataStructsCreateFungibleData (267) */2663 interface UpDataStructsCreateFungibleData extends Struct {2664 readonly value: u128;2665 }26662667 /** @name UpDataStructsCreateReFungibleData (268) */2668 interface UpDataStructsCreateReFungibleData extends Struct {2669 readonly pieces: u128;2670 readonly properties: Vec<UpDataStructsProperty>;2671 }26722673 /** @name UpDataStructsCreateItemExData (271) */2674 interface UpDataStructsCreateItemExData extends Enum {2675 readonly isNft: boolean;2676 readonly asNft: Vec<UpDataStructsCreateNftExData>;2677 readonly isFungible: boolean;2678 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2679 readonly isRefungibleMultipleItems: boolean;2680 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2681 readonly isRefungibleMultipleOwners: boolean;2682 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2683 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2684 }26852686 /** @name UpDataStructsCreateNftExData (273) */2687 interface UpDataStructsCreateNftExData extends Struct {2688 readonly properties: Vec<UpDataStructsProperty>;2689 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2690 }26912692 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2693 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2694 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2695 readonly pieces: u128;2696 readonly properties: Vec<UpDataStructsProperty>;2697 }26982699 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2700 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2701 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2702 readonly properties: Vec<UpDataStructsProperty>;2703 }27042705 /** @name PalletUniqueSchedulerV2Call (283) */2706 interface PalletUniqueSchedulerV2Call extends Enum {2707 readonly isSchedule: boolean;2708 readonly asSchedule: {2709 readonly when: u32;2710 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2711 readonly priority: Option<u8>;2712 readonly call: Call;2713 } & Struct;2714 readonly isCancel: boolean;2715 readonly asCancel: {2716 readonly when: u32;2717 readonly index: u32;2718 } & Struct;2719 readonly isScheduleNamed: boolean;2720 readonly asScheduleNamed: {2721 readonly id: U8aFixed;2722 readonly when: u32;2723 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2724 readonly priority: Option<u8>;2725 readonly call: Call;2726 } & Struct;2727 readonly isCancelNamed: boolean;2728 readonly asCancelNamed: {2729 readonly id: U8aFixed;2730 } & Struct;2731 readonly isScheduleAfter: boolean;2732 readonly asScheduleAfter: {2733 readonly after: u32;2734 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2735 readonly priority: Option<u8>;2736 readonly call: Call;2737 } & Struct;2738 readonly isScheduleNamedAfter: boolean;2739 readonly asScheduleNamedAfter: {2740 readonly id: U8aFixed;2741 readonly after: u32;2742 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2743 readonly priority: Option<u8>;2744 readonly call: Call;2745 } & Struct;2746 readonly isChangeNamedPriority: boolean;2747 readonly asChangeNamedPriority: {2748 readonly id: U8aFixed;2749 readonly priority: u8;2750 } & Struct;2751 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2752 }27532754 /** @name PalletConfigurationCall (286) */2755 interface PalletConfigurationCall extends Enum {2756 readonly isSetWeightToFeeCoefficientOverride: boolean;2757 readonly asSetWeightToFeeCoefficientOverride: {2758 readonly coeff: Option<u32>;2759 } & Struct;2760 readonly isSetMinGasPriceOverride: boolean;2761 readonly asSetMinGasPriceOverride: {2762 readonly coeff: Option<u64>;2763 } & Struct;2764 readonly isSetXcmAllowedLocations: boolean;2765 readonly asSetXcmAllowedLocations: {2766 readonly locations: Option<Vec<XcmV1MultiLocation>>;2767 } & Struct;2768 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';2769 }27702771 /** @name PalletTemplateTransactionPaymentCall (291) */2772 type PalletTemplateTransactionPaymentCall = Null;27732774 /** @name PalletStructureCall (292) */2775 type PalletStructureCall = Null;27762777 /** @name PalletRmrkCoreCall (293) */2778 interface PalletRmrkCoreCall extends Enum {2779 readonly isCreateCollection: boolean;2780 readonly asCreateCollection: {2781 readonly metadata: Bytes;2782 readonly max: Option<u32>;2783 readonly symbol: Bytes;2784 } & Struct;2785 readonly isDestroyCollection: boolean;2786 readonly asDestroyCollection: {2787 readonly collectionId: u32;2788 } & Struct;2789 readonly isChangeCollectionIssuer: boolean;2790 readonly asChangeCollectionIssuer: {2791 readonly collectionId: u32;2792 readonly newIssuer: MultiAddress;2793 } & Struct;2794 readonly isLockCollection: boolean;2795 readonly asLockCollection: {2796 readonly collectionId: u32;2797 } & Struct;2798 readonly isMintNft: boolean;2799 readonly asMintNft: {2800 readonly owner: Option<AccountId32>;2801 readonly collectionId: u32;2802 readonly recipient: Option<AccountId32>;2803 readonly royaltyAmount: Option<Permill>;2804 readonly metadata: Bytes;2805 readonly transferable: bool;2806 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2807 } & Struct;2808 readonly isBurnNft: boolean;2809 readonly asBurnNft: {2810 readonly collectionId: u32;2811 readonly nftId: u32;2812 readonly maxBurns: u32;2813 } & Struct;2814 readonly isSend: boolean;2815 readonly asSend: {2816 readonly rmrkCollectionId: u32;2817 readonly rmrkNftId: u32;2818 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2819 } & Struct;2820 readonly isAcceptNft: boolean;2821 readonly asAcceptNft: {2822 readonly rmrkCollectionId: u32;2823 readonly rmrkNftId: u32;2824 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2825 } & Struct;2826 readonly isRejectNft: boolean;2827 readonly asRejectNft: {2828 readonly rmrkCollectionId: u32;2829 readonly rmrkNftId: u32;2830 } & Struct;2831 readonly isAcceptResource: boolean;2832 readonly asAcceptResource: {2833 readonly rmrkCollectionId: u32;2834 readonly rmrkNftId: u32;2835 readonly resourceId: u32;2836 } & Struct;2837 readonly isAcceptResourceRemoval: boolean;2838 readonly asAcceptResourceRemoval: {2839 readonly rmrkCollectionId: u32;2840 readonly rmrkNftId: u32;2841 readonly resourceId: u32;2842 } & Struct;2843 readonly isSetProperty: boolean;2844 readonly asSetProperty: {2845 readonly rmrkCollectionId: Compact<u32>;2846 readonly maybeNftId: Option<u32>;2847 readonly key: Bytes;2848 readonly value: Bytes;2849 } & Struct;2850 readonly isSetPriority: boolean;2851 readonly asSetPriority: {2852 readonly rmrkCollectionId: u32;2853 readonly rmrkNftId: u32;2854 readonly priorities: Vec<u32>;2855 } & Struct;2856 readonly isAddBasicResource: boolean;2857 readonly asAddBasicResource: {2858 readonly rmrkCollectionId: u32;2859 readonly nftId: u32;2860 readonly resource: RmrkTraitsResourceBasicResource;2861 } & Struct;2862 readonly isAddComposableResource: boolean;2863 readonly asAddComposableResource: {2864 readonly rmrkCollectionId: u32;2865 readonly nftId: u32;2866 readonly resource: RmrkTraitsResourceComposableResource;2867 } & Struct;2868 readonly isAddSlotResource: boolean;2869 readonly asAddSlotResource: {2870 readonly rmrkCollectionId: u32;2871 readonly nftId: u32;2872 readonly resource: RmrkTraitsResourceSlotResource;2873 } & Struct;2874 readonly isRemoveResource: boolean;2875 readonly asRemoveResource: {2876 readonly rmrkCollectionId: u32;2877 readonly nftId: u32;2878 readonly resourceId: u32;2879 } & Struct;2880 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2881 }28822883 /** @name RmrkTraitsResourceResourceTypes (299) */2884 interface RmrkTraitsResourceResourceTypes extends Enum {2885 readonly isBasic: boolean;2886 readonly asBasic: RmrkTraitsResourceBasicResource;2887 readonly isComposable: boolean;2888 readonly asComposable: RmrkTraitsResourceComposableResource;2889 readonly isSlot: boolean;2890 readonly asSlot: RmrkTraitsResourceSlotResource;2891 readonly type: 'Basic' | 'Composable' | 'Slot';2892 }28932894 /** @name RmrkTraitsResourceBasicResource (301) */2895 interface RmrkTraitsResourceBasicResource extends Struct {2896 readonly src: Option<Bytes>;2897 readonly metadata: Option<Bytes>;2898 readonly license: Option<Bytes>;2899 readonly thumb: Option<Bytes>;2900 }29012902 /** @name RmrkTraitsResourceComposableResource (303) */2903 interface RmrkTraitsResourceComposableResource extends Struct {2904 readonly parts: Vec<u32>;2905 readonly base: u32;2906 readonly src: Option<Bytes>;2907 readonly metadata: Option<Bytes>;2908 readonly license: Option<Bytes>;2909 readonly thumb: Option<Bytes>;2910 }29112912 /** @name RmrkTraitsResourceSlotResource (304) */2913 interface RmrkTraitsResourceSlotResource extends Struct {2914 readonly base: u32;2915 readonly src: Option<Bytes>;2916 readonly metadata: Option<Bytes>;2917 readonly slot: u32;2918 readonly license: Option<Bytes>;2919 readonly thumb: Option<Bytes>;2920 }29212922 /** @name PalletRmrkEquipCall (307) */2923 interface PalletRmrkEquipCall extends Enum {2924 readonly isCreateBase: boolean;2925 readonly asCreateBase: {2926 readonly baseType: Bytes;2927 readonly symbol: Bytes;2928 readonly parts: Vec<RmrkTraitsPartPartType>;2929 } & Struct;2930 readonly isThemeAdd: boolean;2931 readonly asThemeAdd: {2932 readonly baseId: u32;2933 readonly theme: RmrkTraitsTheme;2934 } & Struct;2935 readonly isEquippable: boolean;2936 readonly asEquippable: {2937 readonly baseId: u32;2938 readonly slotId: u32;2939 readonly equippables: RmrkTraitsPartEquippableList;2940 } & Struct;2941 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2942 }29432944 /** @name RmrkTraitsPartPartType (310) */2945 interface RmrkTraitsPartPartType extends Enum {2946 readonly isFixedPart: boolean;2947 readonly asFixedPart: RmrkTraitsPartFixedPart;2948 readonly isSlotPart: boolean;2949 readonly asSlotPart: RmrkTraitsPartSlotPart;2950 readonly type: 'FixedPart' | 'SlotPart';2951 }29522953 /** @name RmrkTraitsPartFixedPart (312) */2954 interface RmrkTraitsPartFixedPart extends Struct {2955 readonly id: u32;2956 readonly z: u32;2957 readonly src: Bytes;2958 }29592960 /** @name RmrkTraitsPartSlotPart (313) */2961 interface RmrkTraitsPartSlotPart extends Struct {2962 readonly id: u32;2963 readonly equippable: RmrkTraitsPartEquippableList;2964 readonly src: Bytes;2965 readonly z: u32;2966 }29672968 /** @name RmrkTraitsPartEquippableList (314) */2969 interface RmrkTraitsPartEquippableList extends Enum {2970 readonly isAll: boolean;2971 readonly isEmpty: boolean;2972 readonly isCustom: boolean;2973 readonly asCustom: Vec<u32>;2974 readonly type: 'All' | 'Empty' | 'Custom';2975 }29762977 /** @name RmrkTraitsTheme (316) */2978 interface RmrkTraitsTheme extends Struct {2979 readonly name: Bytes;2980 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2981 readonly inherit: bool;2982 }29832984 /** @name RmrkTraitsThemeThemeProperty (318) */2985 interface RmrkTraitsThemeThemeProperty extends Struct {2986 readonly key: Bytes;2987 readonly value: Bytes;2988 }29892990 /** @name PalletAppPromotionCall (320) */2991 interface PalletAppPromotionCall extends Enum {2992 readonly isSetAdminAddress: boolean;2993 readonly asSetAdminAddress: {2994 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2995 } & Struct;2996 readonly isStake: boolean;2997 readonly asStake: {2998 readonly amount: u128;2999 } & Struct;3000 readonly isUnstake: boolean;3001 readonly isSponsorCollection: boolean;3002 readonly asSponsorCollection: {3003 readonly collectionId: u32;3004 } & Struct;3005 readonly isStopSponsoringCollection: boolean;3006 readonly asStopSponsoringCollection: {3007 readonly collectionId: u32;3008 } & Struct;3009 readonly isSponsorContract: boolean;3010 readonly asSponsorContract: {3011 readonly contractId: H160;3012 } & Struct;3013 readonly isStopSponsoringContract: boolean;3014 readonly asStopSponsoringContract: {3015 readonly contractId: H160;3016 } & Struct;3017 readonly isPayoutStakers: boolean;3018 readonly asPayoutStakers: {3019 readonly stakersNumber: Option<u8>;3020 } & Struct;3021 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3022 }30233024 /** @name PalletForeignAssetsModuleCall (321) */3025 interface PalletForeignAssetsModuleCall extends Enum {3026 readonly isRegisterForeignAsset: boolean;3027 readonly asRegisterForeignAsset: {3028 readonly owner: AccountId32;3029 readonly location: XcmVersionedMultiLocation;3030 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3031 } & Struct;3032 readonly isUpdateForeignAsset: boolean;3033 readonly asUpdateForeignAsset: {3034 readonly foreignAssetId: u32;3035 readonly location: XcmVersionedMultiLocation;3036 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3037 } & Struct;3038 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3039 }30403041 /** @name PalletEvmCall (322) */3042 interface PalletEvmCall extends Enum {3043 readonly isWithdraw: boolean;3044 readonly asWithdraw: {3045 readonly address: H160;3046 readonly value: u128;3047 } & Struct;3048 readonly isCall: boolean;3049 readonly asCall: {3050 readonly source: H160;3051 readonly target: H160;3052 readonly input: Bytes;3053 readonly value: U256;3054 readonly gasLimit: u64;3055 readonly maxFeePerGas: U256;3056 readonly maxPriorityFeePerGas: Option<U256>;3057 readonly nonce: Option<U256>;3058 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3059 } & Struct;3060 readonly isCreate: boolean;3061 readonly asCreate: {3062 readonly source: H160;3063 readonly init: Bytes;3064 readonly value: U256;3065 readonly gasLimit: u64;3066 readonly maxFeePerGas: U256;3067 readonly maxPriorityFeePerGas: Option<U256>;3068 readonly nonce: Option<U256>;3069 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3070 } & Struct;3071 readonly isCreate2: boolean;3072 readonly asCreate2: {3073 readonly source: H160;3074 readonly init: Bytes;3075 readonly salt: H256;3076 readonly value: U256;3077 readonly gasLimit: u64;3078 readonly maxFeePerGas: U256;3079 readonly maxPriorityFeePerGas: Option<U256>;3080 readonly nonce: Option<U256>;3081 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3082 } & Struct;3083 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3084 }30853086 /** @name PalletEthereumCall (328) */3087 interface PalletEthereumCall extends Enum {3088 readonly isTransact: boolean;3089 readonly asTransact: {3090 readonly transaction: EthereumTransactionTransactionV2;3091 } & Struct;3092 readonly type: 'Transact';3093 }30943095 /** @name EthereumTransactionTransactionV2 (329) */3096 interface EthereumTransactionTransactionV2 extends Enum {3097 readonly isLegacy: boolean;3098 readonly asLegacy: EthereumTransactionLegacyTransaction;3099 readonly isEip2930: boolean;3100 readonly asEip2930: EthereumTransactionEip2930Transaction;3101 readonly isEip1559: boolean;3102 readonly asEip1559: EthereumTransactionEip1559Transaction;3103 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3104 }31053106 /** @name EthereumTransactionLegacyTransaction (330) */3107 interface EthereumTransactionLegacyTransaction extends Struct {3108 readonly nonce: U256;3109 readonly gasPrice: U256;3110 readonly gasLimit: U256;3111 readonly action: EthereumTransactionTransactionAction;3112 readonly value: U256;3113 readonly input: Bytes;3114 readonly signature: EthereumTransactionTransactionSignature;3115 }31163117 /** @name EthereumTransactionTransactionAction (331) */3118 interface EthereumTransactionTransactionAction extends Enum {3119 readonly isCall: boolean;3120 readonly asCall: H160;3121 readonly isCreate: boolean;3122 readonly type: 'Call' | 'Create';3123 }31243125 /** @name EthereumTransactionTransactionSignature (332) */3126 interface EthereumTransactionTransactionSignature extends Struct {3127 readonly v: u64;3128 readonly r: H256;3129 readonly s: H256;3130 }31313132 /** @name EthereumTransactionEip2930Transaction (334) */3133 interface EthereumTransactionEip2930Transaction extends Struct {3134 readonly chainId: u64;3135 readonly nonce: U256;3136 readonly gasPrice: U256;3137 readonly gasLimit: U256;3138 readonly action: EthereumTransactionTransactionAction;3139 readonly value: U256;3140 readonly input: Bytes;3141 readonly accessList: Vec<EthereumTransactionAccessListItem>;3142 readonly oddYParity: bool;3143 readonly r: H256;3144 readonly s: H256;3145 }31463147 /** @name EthereumTransactionAccessListItem (336) */3148 interface EthereumTransactionAccessListItem extends Struct {3149 readonly address: H160;3150 readonly storageKeys: Vec<H256>;3151 }31523153 /** @name EthereumTransactionEip1559Transaction (337) */3154 interface EthereumTransactionEip1559Transaction extends Struct {3155 readonly chainId: u64;3156 readonly nonce: U256;3157 readonly maxPriorityFeePerGas: U256;3158 readonly maxFeePerGas: U256;3159 readonly gasLimit: U256;3160 readonly action: EthereumTransactionTransactionAction;3161 readonly value: U256;3162 readonly input: Bytes;3163 readonly accessList: Vec<EthereumTransactionAccessListItem>;3164 readonly oddYParity: bool;3165 readonly r: H256;3166 readonly s: H256;3167 }31683169 /** @name PalletEvmMigrationCall (338) */3170 interface PalletEvmMigrationCall extends Enum {3171 readonly isBegin: boolean;3172 readonly asBegin: {3173 readonly address: H160;3174 } & Struct;3175 readonly isSetData: boolean;3176 readonly asSetData: {3177 readonly address: H160;3178 readonly data: Vec<ITuple<[H256, H256]>>;3179 } & Struct;3180 readonly isFinish: boolean;3181 readonly asFinish: {3182 readonly address: H160;3183 readonly code: Bytes;3184 } & Struct;3185 readonly isInsertEthLogs: boolean;3186 readonly asInsertEthLogs: {3187 readonly logs: Vec<EthereumLog>;3188 } & Struct;3189 readonly isInsertEvents: boolean;3190 readonly asInsertEvents: {3191 readonly events: Vec<Bytes>;3192 } & Struct;3193 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3194 }31953196 /** @name PalletMaintenanceCall (342) */3197 interface PalletMaintenanceCall extends Enum {3198 readonly isEnable: boolean;3199 readonly isDisable: boolean;3200 readonly type: 'Enable' | 'Disable';3201 }32023203 /** @name PalletTestUtilsCall (343) */3204 interface PalletTestUtilsCall extends Enum {3205 readonly isEnable: boolean;3206 readonly isSetTestValue: boolean;3207 readonly asSetTestValue: {3208 readonly value: u32;3209 } & Struct;3210 readonly isSetTestValueAndRollback: boolean;3211 readonly asSetTestValueAndRollback: {3212 readonly value: u32;3213 } & Struct;3214 readonly isIncTestValue: boolean;3215 readonly isSelfCancelingInc: boolean;3216 readonly asSelfCancelingInc: {3217 readonly id: U8aFixed;3218 readonly maxTestValue: u32;3219 } & Struct;3220 readonly isJustTakeFee: boolean;3221 readonly isBatchAll: boolean;3222 readonly asBatchAll: {3223 readonly calls: Vec<Call>;3224 } & Struct;3225 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3226 }32273228 /** @name PalletSudoError (345) */3229 interface PalletSudoError extends Enum {3230 readonly isRequireSudo: boolean;3231 readonly type: 'RequireSudo';3232 }32333234 /** @name OrmlVestingModuleError (347) */3235 interface OrmlVestingModuleError extends Enum {3236 readonly isZeroVestingPeriod: boolean;3237 readonly isZeroVestingPeriodCount: boolean;3238 readonly isInsufficientBalanceToLock: boolean;3239 readonly isTooManyVestingSchedules: boolean;3240 readonly isAmountLow: boolean;3241 readonly isMaxVestingSchedulesExceeded: boolean;3242 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3243 }32443245 /** @name OrmlXtokensModuleError (348) */3246 interface OrmlXtokensModuleError extends Enum {3247 readonly isAssetHasNoReserve: boolean;3248 readonly isNotCrossChainTransfer: boolean;3249 readonly isInvalidDest: boolean;3250 readonly isNotCrossChainTransferableCurrency: boolean;3251 readonly isUnweighableMessage: boolean;3252 readonly isXcmExecutionFailed: boolean;3253 readonly isCannotReanchor: boolean;3254 readonly isInvalidAncestry: boolean;3255 readonly isInvalidAsset: boolean;3256 readonly isDestinationNotInvertible: boolean;3257 readonly isBadVersion: boolean;3258 readonly isDistinctReserveForAssetAndFee: boolean;3259 readonly isZeroFee: boolean;3260 readonly isZeroAmount: boolean;3261 readonly isTooManyAssetsBeingSent: boolean;3262 readonly isAssetIndexNonExistent: boolean;3263 readonly isFeeNotEnough: boolean;3264 readonly isNotSupportedMultiLocation: boolean;3265 readonly isMinXcmFeeNotDefined: boolean;3266 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3267 }32683269 /** @name OrmlTokensBalanceLock (351) */3270 interface OrmlTokensBalanceLock extends Struct {3271 readonly id: U8aFixed;3272 readonly amount: u128;3273 }32743275 /** @name OrmlTokensAccountData (353) */3276 interface OrmlTokensAccountData extends Struct {3277 readonly free: u128;3278 readonly reserved: u128;3279 readonly frozen: u128;3280 }32813282 /** @name OrmlTokensReserveData (355) */3283 interface OrmlTokensReserveData extends Struct {3284 readonly id: Null;3285 readonly amount: u128;3286 }32873288 /** @name OrmlTokensModuleError (357) */3289 interface OrmlTokensModuleError extends Enum {3290 readonly isBalanceTooLow: boolean;3291 readonly isAmountIntoBalanceFailed: boolean;3292 readonly isLiquidityRestrictions: boolean;3293 readonly isMaxLocksExceeded: boolean;3294 readonly isKeepAlive: boolean;3295 readonly isExistentialDeposit: boolean;3296 readonly isDeadAccount: boolean;3297 readonly isTooManyReserves: boolean;3298 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3299 }33003301 /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */3302 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3303 readonly sender: u32;3304 readonly state: CumulusPalletXcmpQueueInboundState;3305 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3306 }33073308 /** @name CumulusPalletXcmpQueueInboundState (360) */3309 interface CumulusPalletXcmpQueueInboundState extends Enum {3310 readonly isOk: boolean;3311 readonly isSuspended: boolean;3312 readonly type: 'Ok' | 'Suspended';3313 }33143315 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */3316 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3317 readonly isConcatenatedVersionedXcm: boolean;3318 readonly isConcatenatedEncodedBlob: boolean;3319 readonly isSignals: boolean;3320 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3321 }33223323 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */3324 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3325 readonly recipient: u32;3326 readonly state: CumulusPalletXcmpQueueOutboundState;3327 readonly signalsExist: bool;3328 readonly firstIndex: u16;3329 readonly lastIndex: u16;3330 }33313332 /** @name CumulusPalletXcmpQueueOutboundState (367) */3333 interface CumulusPalletXcmpQueueOutboundState extends Enum {3334 readonly isOk: boolean;3335 readonly isSuspended: boolean;3336 readonly type: 'Ok' | 'Suspended';3337 }33383339 /** @name CumulusPalletXcmpQueueQueueConfigData (369) */3340 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3341 readonly suspendThreshold: u32;3342 readonly dropThreshold: u32;3343 readonly resumeThreshold: u32;3344 readonly thresholdWeight: SpWeightsWeightV2Weight;3345 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3346 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3347 }33483349 /** @name CumulusPalletXcmpQueueError (371) */3350 interface CumulusPalletXcmpQueueError extends Enum {3351 readonly isFailedToSend: boolean;3352 readonly isBadXcmOrigin: boolean;3353 readonly isBadXcm: boolean;3354 readonly isBadOverweightIndex: boolean;3355 readonly isWeightOverLimit: boolean;3356 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3357 }33583359 /** @name PalletXcmError (372) */3360 interface PalletXcmError extends Enum {3361 readonly isUnreachable: boolean;3362 readonly isSendFailure: boolean;3363 readonly isFiltered: boolean;3364 readonly isUnweighableMessage: boolean;3365 readonly isDestinationNotInvertible: boolean;3366 readonly isEmpty: boolean;3367 readonly isCannotReanchor: boolean;3368 readonly isTooManyAssets: boolean;3369 readonly isInvalidOrigin: boolean;3370 readonly isBadVersion: boolean;3371 readonly isBadLocation: boolean;3372 readonly isNoSubscription: boolean;3373 readonly isAlreadySubscribed: boolean;3374 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3375 }33763377 /** @name CumulusPalletXcmError (373) */3378 type CumulusPalletXcmError = Null;33793380 /** @name CumulusPalletDmpQueueConfigData (374) */3381 interface CumulusPalletDmpQueueConfigData extends Struct {3382 readonly maxIndividual: SpWeightsWeightV2Weight;3383 }33843385 /** @name CumulusPalletDmpQueuePageIndexData (375) */3386 interface CumulusPalletDmpQueuePageIndexData extends Struct {3387 readonly beginUsed: u32;3388 readonly endUsed: u32;3389 readonly overweightCount: u64;3390 }33913392 /** @name CumulusPalletDmpQueueError (378) */3393 interface CumulusPalletDmpQueueError extends Enum {3394 readonly isUnknown: boolean;3395 readonly isOverLimit: boolean;3396 readonly type: 'Unknown' | 'OverLimit';3397 }33983399 /** @name PalletUniqueError (382) */3400 interface PalletUniqueError extends Enum {3401 readonly isCollectionDecimalPointLimitExceeded: boolean;3402 readonly isEmptyArgument: boolean;3403 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3404 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3405 }34063407 /** @name PalletUniqueSchedulerV2BlockAgenda (383) */3408 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3409 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3410 readonly freePlaces: u32;3411 }34123413 /** @name PalletUniqueSchedulerV2Scheduled (386) */3414 interface PalletUniqueSchedulerV2Scheduled extends Struct {3415 readonly maybeId: Option<U8aFixed>;3416 readonly priority: u8;3417 readonly call: PalletUniqueSchedulerV2ScheduledCall;3418 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3419 readonly origin: OpalRuntimeOriginCaller;3420 }34213422 /** @name PalletUniqueSchedulerV2ScheduledCall (387) */3423 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3424 readonly isInline: boolean;3425 readonly asInline: Bytes;3426 readonly isPreimageLookup: boolean;3427 readonly asPreimageLookup: {3428 readonly hash_: H256;3429 readonly unboundedLen: u32;3430 } & Struct;3431 readonly type: 'Inline' | 'PreimageLookup';3432 }34333434 /** @name OpalRuntimeOriginCaller (389) */3435 interface OpalRuntimeOriginCaller extends Enum {3436 readonly isSystem: boolean;3437 readonly asSystem: FrameSupportDispatchRawOrigin;3438 readonly isVoid: boolean;3439 readonly isPolkadotXcm: boolean;3440 readonly asPolkadotXcm: PalletXcmOrigin;3441 readonly isCumulusXcm: boolean;3442 readonly asCumulusXcm: CumulusPalletXcmOrigin;3443 readonly isEthereum: boolean;3444 readonly asEthereum: PalletEthereumRawOrigin;3445 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3446 }34473448 /** @name FrameSupportDispatchRawOrigin (390) */3449 interface FrameSupportDispatchRawOrigin extends Enum {3450 readonly isRoot: boolean;3451 readonly isSigned: boolean;3452 readonly asSigned: AccountId32;3453 readonly isNone: boolean;3454 readonly type: 'Root' | 'Signed' | 'None';3455 }34563457 /** @name PalletXcmOrigin (391) */3458 interface PalletXcmOrigin extends Enum {3459 readonly isXcm: boolean;3460 readonly asXcm: XcmV1MultiLocation;3461 readonly isResponse: boolean;3462 readonly asResponse: XcmV1MultiLocation;3463 readonly type: 'Xcm' | 'Response';3464 }34653466 /** @name CumulusPalletXcmOrigin (392) */3467 interface CumulusPalletXcmOrigin extends Enum {3468 readonly isRelay: boolean;3469 readonly isSiblingParachain: boolean;3470 readonly asSiblingParachain: u32;3471 readonly type: 'Relay' | 'SiblingParachain';3472 }34733474 /** @name PalletEthereumRawOrigin (393) */3475 interface PalletEthereumRawOrigin extends Enum {3476 readonly isEthereumTransaction: boolean;3477 readonly asEthereumTransaction: H160;3478 readonly type: 'EthereumTransaction';3479 }34803481 /** @name SpCoreVoid (394) */3482 type SpCoreVoid = Null;34833484 /** @name PalletUniqueSchedulerV2Error (396) */3485 interface PalletUniqueSchedulerV2Error extends Enum {3486 readonly isFailedToSchedule: boolean;3487 readonly isAgendaIsExhausted: boolean;3488 readonly isScheduledCallCorrupted: boolean;3489 readonly isPreimageNotFound: boolean;3490 readonly isTooBigScheduledCall: boolean;3491 readonly isNotFound: boolean;3492 readonly isTargetBlockNumberInPast: boolean;3493 readonly isNamed: boolean;3494 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3495 }34963497 /** @name PalletConfigurationError (400) */3498 interface PalletConfigurationError extends Enum {3499 readonly isInconsistentConfiguration: boolean;3500 readonly type: 'InconsistentConfiguration';3501 }35023503 /** @name UpDataStructsCollection (401) */3504 interface UpDataStructsCollection extends Struct {3505 readonly owner: AccountId32;3506 readonly mode: UpDataStructsCollectionMode;3507 readonly name: Vec<u16>;3508 readonly description: Vec<u16>;3509 readonly tokenPrefix: Bytes;3510 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3511 readonly limits: UpDataStructsCollectionLimits;3512 readonly permissions: UpDataStructsCollectionPermissions;3513 readonly flags: U8aFixed;3514 }35153516 /** @name UpDataStructsSponsorshipStateAccountId32 (402) */3517 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3518 readonly isDisabled: boolean;3519 readonly isUnconfirmed: boolean;3520 readonly asUnconfirmed: AccountId32;3521 readonly isConfirmed: boolean;3522 readonly asConfirmed: AccountId32;3523 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3524 }35253526 /** @name UpDataStructsProperties (404) */3527 interface UpDataStructsProperties extends Struct {3528 readonly map: UpDataStructsPropertiesMapBoundedVec;3529 readonly consumedSpace: u32;3530 readonly spaceLimit: u32;3531 }35323533 /** @name UpDataStructsPropertiesMapBoundedVec (405) */3534 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35353536 /** @name UpDataStructsPropertiesMapPropertyPermission (410) */3537 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35383539 /** @name UpDataStructsCollectionStats (417) */3540 interface UpDataStructsCollectionStats extends Struct {3541 readonly created: u32;3542 readonly destroyed: u32;3543 readonly alive: u32;3544 }35453546 /** @name UpDataStructsTokenChild (418) */3547 interface UpDataStructsTokenChild extends Struct {3548 readonly token: u32;3549 readonly collection: u32;3550 }35513552 /** @name PhantomTypeUpDataStructs (419) */3553 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}35543555 /** @name UpDataStructsTokenData (421) */3556 interface UpDataStructsTokenData extends Struct {3557 readonly properties: Vec<UpDataStructsProperty>;3558 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3559 readonly pieces: u128;3560 }35613562 /** @name UpDataStructsRpcCollection (423) */3563 interface UpDataStructsRpcCollection extends Struct {3564 readonly owner: AccountId32;3565 readonly mode: UpDataStructsCollectionMode;3566 readonly name: Vec<u16>;3567 readonly description: Vec<u16>;3568 readonly tokenPrefix: Bytes;3569 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3570 readonly limits: UpDataStructsCollectionLimits;3571 readonly permissions: UpDataStructsCollectionPermissions;3572 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3573 readonly properties: Vec<UpDataStructsProperty>;3574 readonly readOnly: bool;3575 readonly flags: UpDataStructsRpcCollectionFlags;3576 }35773578 /** @name UpDataStructsRpcCollectionFlags (424) */3579 interface UpDataStructsRpcCollectionFlags extends Struct {3580 readonly foreign: bool;3581 readonly erc721metadata: bool;3582 }35833584 /** @name RmrkTraitsCollectionCollectionInfo (425) */3585 interface RmrkTraitsCollectionCollectionInfo extends Struct {3586 readonly issuer: AccountId32;3587 readonly metadata: Bytes;3588 readonly max: Option<u32>;3589 readonly symbol: Bytes;3590 readonly nftsCount: u32;3591 }35923593 /** @name RmrkTraitsNftNftInfo (426) */3594 interface RmrkTraitsNftNftInfo extends Struct {3595 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3596 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3597 readonly metadata: Bytes;3598 readonly equipped: bool;3599 readonly pending: bool;3600 }36013602 /** @name RmrkTraitsNftRoyaltyInfo (428) */3603 interface RmrkTraitsNftRoyaltyInfo extends Struct {3604 readonly recipient: AccountId32;3605 readonly amount: Permill;3606 }36073608 /** @name RmrkTraitsResourceResourceInfo (429) */3609 interface RmrkTraitsResourceResourceInfo extends Struct {3610 readonly id: u32;3611 readonly resource: RmrkTraitsResourceResourceTypes;3612 readonly pending: bool;3613 readonly pendingRemoval: bool;3614 }36153616 /** @name RmrkTraitsPropertyPropertyInfo (430) */3617 interface RmrkTraitsPropertyPropertyInfo extends Struct {3618 readonly key: Bytes;3619 readonly value: Bytes;3620 }36213622 /** @name RmrkTraitsBaseBaseInfo (431) */3623 interface RmrkTraitsBaseBaseInfo extends Struct {3624 readonly issuer: AccountId32;3625 readonly baseType: Bytes;3626 readonly symbol: Bytes;3627 }36283629 /** @name RmrkTraitsNftNftChild (432) */3630 interface RmrkTraitsNftNftChild extends Struct {3631 readonly collectionId: u32;3632 readonly nftId: u32;3633 }36343635 /** @name PalletCommonError (434) */3636 interface PalletCommonError extends Enum {3637 readonly isCollectionNotFound: boolean;3638 readonly isMustBeTokenOwner: boolean;3639 readonly isNoPermission: boolean;3640 readonly isCantDestroyNotEmptyCollection: boolean;3641 readonly isPublicMintingNotAllowed: boolean;3642 readonly isAddressNotInAllowlist: boolean;3643 readonly isCollectionNameLimitExceeded: boolean;3644 readonly isCollectionDescriptionLimitExceeded: boolean;3645 readonly isCollectionTokenPrefixLimitExceeded: boolean;3646 readonly isTotalCollectionsLimitExceeded: boolean;3647 readonly isCollectionAdminCountExceeded: boolean;3648 readonly isCollectionLimitBoundsExceeded: boolean;3649 readonly isOwnerPermissionsCantBeReverted: boolean;3650 readonly isTransferNotAllowed: boolean;3651 readonly isAccountTokenLimitExceeded: boolean;3652 readonly isCollectionTokenLimitExceeded: boolean;3653 readonly isMetadataFlagFrozen: boolean;3654 readonly isTokenNotFound: boolean;3655 readonly isTokenValueTooLow: boolean;3656 readonly isApprovedValueTooLow: boolean;3657 readonly isCantApproveMoreThanOwned: boolean;3658 readonly isAddressIsZero: boolean;3659 readonly isUnsupportedOperation: boolean;3660 readonly isNotSufficientFounds: boolean;3661 readonly isUserIsNotAllowedToNest: boolean;3662 readonly isSourceCollectionIsNotAllowedToNest: boolean;3663 readonly isCollectionFieldSizeExceeded: boolean;3664 readonly isNoSpaceForProperty: boolean;3665 readonly isPropertyLimitReached: boolean;3666 readonly isPropertyKeyIsTooLong: boolean;3667 readonly isInvalidCharacterInPropertyKey: boolean;3668 readonly isEmptyPropertyKey: boolean;3669 readonly isCollectionIsExternal: boolean;3670 readonly isCollectionIsInternal: boolean;3671 readonly isConfirmSponsorshipFail: boolean;3672 readonly isUserIsNotCollectionAdmin: boolean;3673 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3674 }36753676 /** @name PalletFungibleError (436) */3677 interface PalletFungibleError extends Enum {3678 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3679 readonly isFungibleItemsHaveNoId: boolean;3680 readonly isFungibleItemsDontHaveData: boolean;3681 readonly isFungibleDisallowsNesting: boolean;3682 readonly isSettingPropertiesNotAllowed: boolean;3683 readonly isSettingAllowanceForAllNotAllowed: boolean;3684 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3685 }36863687 /** @name PalletRefungibleItemData (437) */3688 interface PalletRefungibleItemData extends Struct {3689 readonly constData: Bytes;3690 }36913692 /** @name PalletRefungibleError (442) */3693 interface PalletRefungibleError extends Enum {3694 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3695 readonly isWrongRefungiblePieces: boolean;3696 readonly isRepartitionWhileNotOwningAllPieces: boolean;3697 readonly isRefungibleDisallowsNesting: boolean;3698 readonly isSettingPropertiesNotAllowed: boolean;3699 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3700 }37013702 /** @name PalletNonfungibleItemData (443) */3703 interface PalletNonfungibleItemData extends Struct {3704 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3705 }37063707 /** @name UpDataStructsPropertyScope (445) */3708 interface UpDataStructsPropertyScope extends Enum {3709 readonly isNone: boolean;3710 readonly isRmrk: boolean;3711 readonly type: 'None' | 'Rmrk';3712 }37133714 /** @name PalletNonfungibleError (447) */3715 interface PalletNonfungibleError extends Enum {3716 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3717 readonly isNonfungibleItemsHaveNoAmount: boolean;3718 readonly isCantBurnNftWithChildren: boolean;3719 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3720 }37213722 /** @name PalletStructureError (448) */3723 interface PalletStructureError extends Enum {3724 readonly isOuroborosDetected: boolean;3725 readonly isDepthLimit: boolean;3726 readonly isBreadthLimit: boolean;3727 readonly isTokenNotFound: boolean;3728 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3729 }37303731 /** @name PalletRmrkCoreError (449) */3732 interface PalletRmrkCoreError extends Enum {3733 readonly isCorruptedCollectionType: boolean;3734 readonly isRmrkPropertyKeyIsTooLong: boolean;3735 readonly isRmrkPropertyValueIsTooLong: boolean;3736 readonly isRmrkPropertyIsNotFound: boolean;3737 readonly isUnableToDecodeRmrkData: boolean;3738 readonly isCollectionNotEmpty: boolean;3739 readonly isNoAvailableCollectionId: boolean;3740 readonly isNoAvailableNftId: boolean;3741 readonly isCollectionUnknown: boolean;3742 readonly isNoPermission: boolean;3743 readonly isNonTransferable: boolean;3744 readonly isCollectionFullOrLocked: boolean;3745 readonly isResourceDoesntExist: boolean;3746 readonly isCannotSendToDescendentOrSelf: boolean;3747 readonly isCannotAcceptNonOwnedNft: boolean;3748 readonly isCannotRejectNonOwnedNft: boolean;3749 readonly isCannotRejectNonPendingNft: boolean;3750 readonly isResourceNotPending: boolean;3751 readonly isNoAvailableResourceId: boolean;3752 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3753 }37543755 /** @name PalletRmrkEquipError (451) */3756 interface PalletRmrkEquipError extends Enum {3757 readonly isPermissionError: boolean;3758 readonly isNoAvailableBaseId: boolean;3759 readonly isNoAvailablePartId: boolean;3760 readonly isBaseDoesntExist: boolean;3761 readonly isNeedsDefaultThemeFirst: boolean;3762 readonly isPartDoesntExist: boolean;3763 readonly isNoEquippableOnFixedPart: boolean;3764 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3765 }37663767 /** @name PalletAppPromotionError (457) */3768 interface PalletAppPromotionError extends Enum {3769 readonly isAdminNotSet: boolean;3770 readonly isNoPermission: boolean;3771 readonly isNotSufficientFunds: boolean;3772 readonly isPendingForBlockOverflow: boolean;3773 readonly isSponsorNotSet: boolean;3774 readonly isIncorrectLockedBalanceOperation: boolean;3775 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3776 }37773778 /** @name PalletForeignAssetsModuleError (458) */3779 interface PalletForeignAssetsModuleError extends Enum {3780 readonly isBadLocation: boolean;3781 readonly isMultiLocationExisted: boolean;3782 readonly isAssetIdNotExists: boolean;3783 readonly isAssetIdExisted: boolean;3784 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3785 }37863787 /** @name PalletEvmError (460) */3788 interface PalletEvmError extends Enum {3789 readonly isBalanceLow: boolean;3790 readonly isFeeOverflow: boolean;3791 readonly isPaymentOverflow: boolean;3792 readonly isWithdrawFailed: boolean;3793 readonly isGasPriceTooLow: boolean;3794 readonly isInvalidNonce: boolean;3795 readonly isGasLimitTooLow: boolean;3796 readonly isGasLimitTooHigh: boolean;3797 readonly isUndefined: boolean;3798 readonly isReentrancy: boolean;3799 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3800 }38013802 /** @name FpRpcTransactionStatus (463) */3803 interface FpRpcTransactionStatus extends Struct {3804 readonly transactionHash: H256;3805 readonly transactionIndex: u32;3806 readonly from: H160;3807 readonly to: Option<H160>;3808 readonly contractAddress: Option<H160>;3809 readonly logs: Vec<EthereumLog>;3810 readonly logsBloom: EthbloomBloom;3811 }38123813 /** @name EthbloomBloom (465) */3814 interface EthbloomBloom extends U8aFixed {}38153816 /** @name EthereumReceiptReceiptV3 (467) */3817 interface EthereumReceiptReceiptV3 extends Enum {3818 readonly isLegacy: boolean;3819 readonly asLegacy: EthereumReceiptEip658ReceiptData;3820 readonly isEip2930: boolean;3821 readonly asEip2930: EthereumReceiptEip658ReceiptData;3822 readonly isEip1559: boolean;3823 readonly asEip1559: EthereumReceiptEip658ReceiptData;3824 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3825 }38263827 /** @name EthereumReceiptEip658ReceiptData (468) */3828 interface EthereumReceiptEip658ReceiptData extends Struct {3829 readonly statusCode: u8;3830 readonly usedGas: U256;3831 readonly logsBloom: EthbloomBloom;3832 readonly logs: Vec<EthereumLog>;3833 }38343835 /** @name EthereumBlock (469) */3836 interface EthereumBlock extends Struct {3837 readonly header: EthereumHeader;3838 readonly transactions: Vec<EthereumTransactionTransactionV2>;3839 readonly ommers: Vec<EthereumHeader>;3840 }38413842 /** @name EthereumHeader (470) */3843 interface EthereumHeader extends Struct {3844 readonly parentHash: H256;3845 readonly ommersHash: H256;3846 readonly beneficiary: H160;3847 readonly stateRoot: H256;3848 readonly transactionsRoot: H256;3849 readonly receiptsRoot: H256;3850 readonly logsBloom: EthbloomBloom;3851 readonly difficulty: U256;3852 readonly number: U256;3853 readonly gasLimit: U256;3854 readonly gasUsed: U256;3855 readonly timestamp: u64;3856 readonly extraData: Bytes;3857 readonly mixHash: H256;3858 readonly nonce: EthereumTypesHashH64;3859 }38603861 /** @name EthereumTypesHashH64 (471) */3862 interface EthereumTypesHashH64 extends U8aFixed {}38633864 /** @name PalletEthereumError (476) */3865 interface PalletEthereumError extends Enum {3866 readonly isInvalidSignature: boolean;3867 readonly isPreLogExists: boolean;3868 readonly type: 'InvalidSignature' | 'PreLogExists';3869 }38703871 /** @name PalletEvmCoderSubstrateError (477) */3872 interface PalletEvmCoderSubstrateError extends Enum {3873 readonly isOutOfGas: boolean;3874 readonly isOutOfFund: boolean;3875 readonly type: 'OutOfGas' | 'OutOfFund';3876 }38773878 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (478) */3879 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3880 readonly isDisabled: boolean;3881 readonly isUnconfirmed: boolean;3882 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3883 readonly isConfirmed: boolean;3884 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3885 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3886 }38873888 /** @name PalletEvmContractHelpersSponsoringModeT (479) */3889 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3890 readonly isDisabled: boolean;3891 readonly isAllowlisted: boolean;3892 readonly isGenerous: boolean;3893 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3894 }38953896 /** @name PalletEvmContractHelpersError (485) */3897 interface PalletEvmContractHelpersError extends Enum {3898 readonly isNoPermission: boolean;3899 readonly isNoPendingSponsor: boolean;3900 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3901 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3902 }39033904 /** @name PalletEvmMigrationError (486) */3905 interface PalletEvmMigrationError extends Enum {3906 readonly isAccountNotEmpty: boolean;3907 readonly isAccountIsNotMigrating: boolean;3908 readonly isBadEvent: boolean;3909 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3910 }39113912 /** @name PalletMaintenanceError (487) */3913 type PalletMaintenanceError = Null;39143915 /** @name PalletTestUtilsError (488) */3916 interface PalletTestUtilsError extends Enum {3917 readonly isTestPalletDisabled: boolean;3918 readonly isTriggerRollback: boolean;3919 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3920 }39213922 /** @name SpRuntimeMultiSignature (490) */3923 interface SpRuntimeMultiSignature extends Enum {3924 readonly isEd25519: boolean;3925 readonly asEd25519: SpCoreEd25519Signature;3926 readonly isSr25519: boolean;3927 readonly asSr25519: SpCoreSr25519Signature;3928 readonly isEcdsa: boolean;3929 readonly asEcdsa: SpCoreEcdsaSignature;3930 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3931 }39323933 /** @name SpCoreEd25519Signature (491) */3934 interface SpCoreEd25519Signature extends U8aFixed {}39353936 /** @name SpCoreSr25519Signature (493) */3937 interface SpCoreSr25519Signature extends U8aFixed {}39383939 /** @name SpCoreEcdsaSignature (494) */3940 interface SpCoreEcdsaSignature extends U8aFixed {}39413942 /** @name FrameSystemExtensionsCheckSpecVersion (497) */3943 type FrameSystemExtensionsCheckSpecVersion = Null;39443945 /** @name FrameSystemExtensionsCheckTxVersion (498) */3946 type FrameSystemExtensionsCheckTxVersion = Null;39473948 /** @name FrameSystemExtensionsCheckGenesis (499) */3949 type FrameSystemExtensionsCheckGenesis = Null;39503951 /** @name FrameSystemExtensionsCheckNonce (502) */3952 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39533954 /** @name FrameSystemExtensionsCheckWeight (503) */3955 type FrameSystemExtensionsCheckWeight = Null;39563957 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (504) */3958 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39593960 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (505) */3961 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39623963 /** @name OpalRuntimeRuntime (506) */3964 type OpalRuntimeRuntime = Null;39653966 /** @name PalletEthereumFakeTransactionFinalizer (507) */3967 type PalletEthereumFakeTransactionFinalizer = Null;39683969} // declare module