difftreelog
test regenerate types
in: master
11 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
@@ -8,8 +8,8 @@
import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { Codec } from '@polkadot/types-codec/types';
-import type { Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, XcmV1MultiLocation } from '@polkadot/types/lookup';
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
@@ -87,23 +87,7 @@
* 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 of less
- * priority than `schedule::HARD_DEADLINE`.
- **/
- maximumWeight: Weight & AugmentedConst<ApiType>;
/**
- * The maximum number of scheduled calls in the queue for a single block.
- * Not strictly enforced, but used for weight estimation.
- **/
- maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
- /**
* Generic const
**/
[key: string]: Codec;
@@ -124,7 +108,7 @@
/**
* The weight of runtime database operations the runtime can invoke.
**/
- dbWeight: FrameSupportWeightsRuntimeDbWeight & AugmentedConst<ApiType>;
+ dbWeight: SpWeightsRuntimeDbWeight & AugmentedConst<ApiType>;
/**
* The designated SS58 prefix of this chain.
*
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -636,28 +636,6 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- scheduler: {
- /**
- * Failed to schedule a call
- **/
- FailedToSchedule: AugmentedError<ApiType>;
- /**
- * Cannot find the scheduled call.
- **/
- NotFound: AugmentedError<ApiType>;
- /**
- * Reschedule failed because it does not change scheduled time.
- **/
- RescheduleNoChange: AugmentedError<ApiType>;
- /**
- * Given target block number is in the past.
- **/
- TargetBlockNumberInPast: 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,9 +7,8 @@
import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
-import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
@@ -467,28 +466,6 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
- scheduler: {
- /**
- * The call for the provided hash was not found so the task has been aborted.
- **/
- CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;
- /**
- * 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> }>;
- /**
- * Scheduled some task.
- **/
- Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
structure: {
/**
* Executed call on behalf of the token.
@@ -525,11 +502,11 @@
/**
* An extrinsic failed.
**/
- ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;
+ ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;
/**
* An extrinsic completed successfully.
**/
- ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;
+ ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;
/**
* An account was reaped.
**/
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, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, 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, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, 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>;
@@ -665,21 +665,7 @@
* 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<Vec<Option<PalletUniqueSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
- /**
- * Lookup from identity 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
**/
[key: string]: QueryableStorageEntry<ApiType>;
@@ -716,7 +702,7 @@
/**
* The current weight for the block.
**/
- blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;
+ blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportDispatchPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Digest of the current block, also part of the block header.
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -6,10 +6,10 @@
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, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -816,28 +816,6 @@
* - `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 a named scheduled task.
- **/
- cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
- /**
- * Schedule a named task.
- **/
- 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: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
- /**
- * Schedule a named task after a delay.
- *
- * # <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: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, 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, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, 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, 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, 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, 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, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, 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, 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';
@@ -328,7 +328,6 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
- CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -518,18 +517,14 @@
ForkTreePendingChange: ForkTreePendingChange;
ForkTreePendingChangeNode: ForkTreePendingChangeNode;
FpRpcTransactionStatus: FpRpcTransactionStatus;
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
+ FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
+ FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
+ FrameSupportDispatchPays: FrameSupportDispatchPays;
+ FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
+ FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
- FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
- FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
- FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
- FrameSupportWeightsPays: FrameSupportWeightsPays;
- FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;
- FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;
- FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
- FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;
FrameSystemAccountInfo: FrameSystemAccountInfo;
FrameSystemCall: FrameSystemCall;
FrameSystemError: FrameSystemError;
@@ -774,7 +769,6 @@
OffenceDetails: OffenceDetails;
Offender: Offender;
OldV1SessionInfo: OldV1SessionInfo;
- OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OpaqueCall: OpaqueCall;
OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
@@ -841,7 +835,6 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
- PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEventMetadataLatest: PalletEventMetadataLatest;
PalletEventMetadataV14: PalletEventMetadataV14;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
@@ -896,15 +889,10 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
- PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
- PalletUniqueSchedulerError: PalletUniqueSchedulerError;
- PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
- PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
PalletVersion: PalletVersion;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PalletXcmOrigin: PalletXcmOrigin;
ParachainDispatchOrigin: ParachainDispatchOrigin;
ParachainInherentData: ParachainInherentData;
ParachainProposal: ParachainProposal;
@@ -1178,7 +1166,6 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
- SpCoreVoid: SpCoreVoid;
SpecVersion: SpecVersion;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
@@ -1190,6 +1177,7 @@
SpRuntimeTransactionalError: SpRuntimeTransactionalError;
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
+ SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
Sr25519Signature: Sr25519Signature;
StakingLedger: StakingLedger;
StakingLedgerTo223: StakingLedgerTo223;
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;
@@ -499,90 +491,59 @@
readonly contractAddress: Option<H160>;
readonly logs: Vec<EthereumLog>;
readonly logsBloom: EthbloomBloom;
-}
-
-/** @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 {}
-/** @name FrameSupportScheduleLookupError */
-export interface FrameSupportScheduleLookupError extends Enum {
- readonly isUnknown: boolean;
- readonly isBadFormat: boolean;
- readonly type: 'Unknown' | 'BadFormat';
-}
-
-/** @name FrameSupportScheduleMaybeHashed */
-export interface FrameSupportScheduleMaybeHashed extends Enum {
- readonly isValue: boolean;
- readonly asValue: Call;
- readonly isHash: boolean;
- readonly asHash: H256;
- readonly type: 'Value' | 'Hash';
-}
-
-/** @name FrameSupportTokensMiscBalanceStatus */
-export interface FrameSupportTokensMiscBalanceStatus extends Enum {
- readonly isFree: boolean;
- readonly isReserved: boolean;
- readonly type: 'Free' | 'Reserved';
-}
-
-/** @name FrameSupportWeightsDispatchClass */
-export interface FrameSupportWeightsDispatchClass extends Enum {
+/** @name FrameSupportDispatchDispatchClass */
+export interface FrameSupportDispatchDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
readonly isMandatory: boolean;
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
-/** @name FrameSupportWeightsDispatchInfo */
-export interface FrameSupportWeightsDispatchInfo extends Struct {
+/** @name FrameSupportDispatchDispatchInfo */
+export interface FrameSupportDispatchDispatchInfo extends Struct {
readonly weight: Weight;
- readonly class: FrameSupportWeightsDispatchClass;
- readonly paysFee: FrameSupportWeightsPays;
+ readonly class: FrameSupportDispatchDispatchClass;
+ readonly paysFee: FrameSupportDispatchPays;
}
-/** @name FrameSupportWeightsPays */
-export interface FrameSupportWeightsPays extends Enum {
+/** @name FrameSupportDispatchPays */
+export interface FrameSupportDispatchPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
}
-/** @name FrameSupportWeightsPerDispatchClassU32 */
-export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
+/** @name FrameSupportDispatchPerDispatchClassU32 */
+export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
-/** @name FrameSupportWeightsPerDispatchClassWeight */
-export interface FrameSupportWeightsPerDispatchClassWeight extends Struct {
+/** @name FrameSupportDispatchPerDispatchClassWeight */
+export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
readonly normal: Weight;
readonly operational: Weight;
readonly mandatory: Weight;
}
-/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */
-export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
+/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */
+export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
-/** @name FrameSupportWeightsRuntimeDbWeight */
-export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
- readonly read: u64;
- readonly write: u64;
+/** @name FrameSupportPalletId */
+export interface FrameSupportPalletId extends U8aFixed {}
+
+/** @name FrameSupportTokensMiscBalanceStatus */
+export interface FrameSupportTokensMiscBalanceStatus extends Enum {
+ readonly isFree: boolean;
+ readonly isReserved: boolean;
+ readonly type: 'Free' | 'Reserved';
}
/** @name FrameSystemAccountInfo */
@@ -651,12 +612,12 @@
export interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
- readonly dispatchInfo: FrameSupportWeightsDispatchInfo;
+ readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
} & Struct;
readonly isExtrinsicFailed: boolean;
readonly asExtrinsicFailed: {
readonly dispatchError: SpRuntimeDispatchError;
- readonly dispatchInfo: FrameSupportWeightsDispatchInfo;
+ readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
} & Struct;
readonly isCodeUpdated: boolean;
readonly isNewAccount: boolean;
@@ -705,14 +666,14 @@
/** @name FrameSystemLimitsBlockLength */
export interface FrameSystemLimitsBlockLength extends Struct {
- readonly max: FrameSupportWeightsPerDispatchClassU32;
+ readonly max: FrameSupportDispatchPerDispatchClassU32;
}
/** @name FrameSystemLimitsBlockWeights */
export interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: Weight;
readonly maxBlock: Weight;
- readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
+ readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
/** @name FrameSystemLimitsWeightsPerClass */
@@ -732,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 {}
@@ -1357,13 +1303,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 {
readonly isSubstrate: boolean;
@@ -2276,76 +2215,6 @@
readonly isCollectionPermissionSet: boolean;
readonly asCollectionPermissionSet: u32;
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
-}
-
-/** @name PalletUniqueSchedulerCall */
-export interface PalletUniqueSchedulerCall extends Enum {
- readonly isScheduleNamed: boolean;
- readonly asScheduleNamed: {
- readonly id: U8aFixed;
- readonly when: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- } & Struct;
- readonly isCancelNamed: boolean;
- readonly asCancelNamed: {
- readonly id: U8aFixed;
- } & Struct;
- readonly isScheduleNamedAfter: boolean;
- readonly asScheduleNamedAfter: {
- readonly id: U8aFixed;
- readonly after: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- } & Struct;
- readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
-}
-
-/** @name PalletUniqueSchedulerError */
-export interface PalletUniqueSchedulerError extends Enum {
- readonly isFailedToSchedule: boolean;
- readonly isNotFound: boolean;
- readonly isTargetBlockNumberInPast: boolean;
- readonly isRescheduleNoChange: boolean;
- readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
-}
-
-/** @name PalletUniqueSchedulerEvent */
-export interface PalletUniqueSchedulerEvent 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 isCallLookupFailed: boolean;
- readonly asCallLookupFailed: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- readonly error: FrameSupportScheduleLookupError;
- } & Struct;
- readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
-}
-
-/** @name PalletUniqueSchedulerScheduledV3 */
-export interface PalletUniqueSchedulerScheduledV3 extends Struct {
- readonly maybeId: Option<U8aFixed>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: OpalRuntimeOriginCaller;
}
/** @name PalletXcmCall */
@@ -2465,15 +2334,6 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
}
-/** @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]>> {}
@@ -2693,9 +2553,6 @@
/** @name SpCoreSr25519Signature */
export interface SpCoreSr25519Signature extends U8aFixed {}
-
-/** @name SpCoreVoid */
-export interface SpCoreVoid extends Null {}
/** @name SpRuntimeArithmeticError */
export interface SpRuntimeArithmeticError extends Enum {
@@ -2796,6 +2653,12 @@
readonly stateVersion: u8;
}
+/** @name SpWeightsRuntimeDbWeight */
+export interface SpWeightsRuntimeDbWeight extends Struct {
+ readonly read: u64;
+ readonly write: u64;
+}
+
/** @name UpDataStructsAccessMode */
export interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -24,9 +24,9 @@
feeFrozen: 'u128'
},
/**
- * Lookup7: frame_support::weights::PerDispatchClass<frame_support::weights::weight_v2::Weight>
+ * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
**/
- FrameSupportWeightsPerDispatchClassWeight: {
+ FrameSupportDispatchPerDispatchClassWeight: {
normal: 'Weight',
operational: 'Weight',
mandatory: 'Weight'
@@ -54,7 +54,7 @@
}
},
/**
- * Lookup17: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup17: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -67,11 +67,11 @@
FrameSystemEvent: {
_enum: {
ExtrinsicSuccess: {
- dispatchInfo: 'FrameSupportWeightsDispatchInfo',
+ dispatchInfo: 'FrameSupportDispatchDispatchInfo',
},
ExtrinsicFailed: {
dispatchError: 'SpRuntimeDispatchError',
- dispatchInfo: 'FrameSupportWeightsDispatchInfo',
+ dispatchInfo: 'FrameSupportDispatchDispatchInfo',
},
CodeUpdated: 'Null',
NewAccount: {
@@ -90,23 +90,23 @@
}
},
/**
- * Lookup20: frame_support::weights::DispatchInfo
+ * Lookup20: frame_support::dispatch::DispatchInfo
**/
- FrameSupportWeightsDispatchInfo: {
+ FrameSupportDispatchDispatchInfo: {
weight: 'Weight',
- class: 'FrameSupportWeightsDispatchClass',
- paysFee: 'FrameSupportWeightsPays'
+ class: 'FrameSupportDispatchDispatchClass',
+ paysFee: 'FrameSupportDispatchPays'
},
/**
- * Lookup21: frame_support::weights::DispatchClass
+ * Lookup21: frame_support::dispatch::DispatchClass
**/
- FrameSupportWeightsDispatchClass: {
+ FrameSupportDispatchDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup22: frame_support::weights::Pays
+ * Lookup22: frame_support::dispatch::Pays
**/
- FrameSupportWeightsPays: {
+ FrameSupportDispatchPays: {
_enum: ['Yes', 'No']
},
/**
@@ -674,11 +674,11 @@
}
},
/**
- * Lookup68: xcm::v2::Xcm<Call>
+ * Lookup68: xcm::v2::Xcm<RuntimeCall>
**/
XcmV2Xcm: 'Vec<XcmV2Instruction>',
/**
- * Lookup70: xcm::v2::Instruction<Call>
+ * Lookup70: xcm::v2::Instruction<RuntimeCall>
**/
XcmV2Instruction: {
_enum: {
@@ -1004,39 +1004,8 @@
}
},
/**
- * Lookup93: pallet_unique_scheduler::pallet::Event<T>
- **/
- PalletUniqueSchedulerEvent: {
- _enum: {
- Scheduled: {
- when: 'u32',
- index: 'u32',
- },
- Canceled: {
- when: 'u32',
- index: 'u32',
- },
- Dispatched: {
- task: '(u32,u32)',
- id: 'Option<[u8;16]>',
- result: 'Result<Null, SpRuntimeDispatchError>',
- },
- CallLookupFailed: {
- task: '(u32,u32)',
- id: 'Option<[u8;16]>',
- error: 'FrameSupportScheduleLookupError'
- }
- }
- },
- /**
- * Lookup96: frame_support::traits::schedule::LookupError
+ * Lookup93: pallet_common::pallet::Event<T>
**/
- FrameSupportScheduleLookupError: {
- _enum: ['Unknown', 'BadFormat']
- },
- /**
- * Lookup97: pallet_common::pallet::Event<T>
- **/
PalletCommonEvent: {
_enum: {
CollectionCreated: '(u32,u8,AccountId32)',
@@ -1053,7 +1022,7 @@
}
},
/**
- * Lookup100: pallet_structure::pallet::Event<T>
+ * Lookup96: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1061,7 +1030,7 @@
}
},
/**
- * Lookup101: pallet_rmrk_core::pallet::Event<T>
+ * Lookup97: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1138,7 +1107,7 @@
}
},
/**
- * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1147,7 +1116,7 @@
}
},
/**
- * Lookup107: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup103: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1162,7 +1131,7 @@
}
},
/**
- * Lookup108: pallet_app_promotion::pallet::Event<T>
+ * Lookup104: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1173,7 +1142,7 @@
}
},
/**
- * Lookup109: pallet_foreign_assets::module::Event<T>
+ * Lookup105: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1198,7 +1167,7 @@
}
},
/**
- * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup106: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1207,7 +1176,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup111: pallet_evm::pallet::Event<T>
+ * Lookup107: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1221,7 +1190,7 @@
}
},
/**
- * Lookup112: ethereum::log::Log
+ * Lookup108: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1229,7 +1198,7 @@
data: 'Bytes'
},
/**
- * Lookup116: pallet_ethereum::pallet::Event
+ * Lookup112: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1237,7 +1206,7 @@
}
},
/**
- * Lookup117: evm_core::error::ExitReason
+ * Lookup113: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1248,13 +1217,13 @@
}
},
/**
- * Lookup118: evm_core::error::ExitSucceed
+ * Lookup114: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup119: evm_core::error::ExitError
+ * Lookup115: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1276,13 +1245,13 @@
}
},
/**
- * Lookup122: evm_core::error::ExitRevert
+ * Lookup118: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup123: evm_core::error::ExitFatal
+ * Lookup119: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1293,7 +1262,7 @@
}
},
/**
- * Lookup124: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1303,7 +1272,7 @@
}
},
/**
- * Lookup125: frame_system::Phase
+ * Lookup121: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1313,14 +1282,14 @@
}
},
/**
- * Lookup127: frame_system::LastRuntimeUpgradeInfo
+ * Lookup124: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup128: frame_system::pallet::Call<T>
+ * Lookup125: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1358,23 +1327,23 @@
}
},
/**
- * Lookup133: frame_system::limits::BlockWeights
+ * Lookup130: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'Weight',
maxBlock: 'Weight',
- perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
+ perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
- * Lookup134: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
- FrameSupportWeightsPerDispatchClassWeightsPerClass: {
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
operational: 'FrameSystemLimitsWeightsPerClass',
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup135: frame_system::limits::WeightsPerClass
+ * Lookup132: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'Weight',
@@ -1383,28 +1352,28 @@
reserved: 'Option<Weight>'
},
/**
- * Lookup137: frame_system::limits::BlockLength
+ * Lookup134: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
- max: 'FrameSupportWeightsPerDispatchClassU32'
+ max: 'FrameSupportDispatchPerDispatchClassU32'
},
/**
- * Lookup138: frame_support::weights::PerDispatchClass<T>
+ * Lookup135: frame_support::dispatch::PerDispatchClass<T>
**/
- FrameSupportWeightsPerDispatchClassU32: {
+ FrameSupportDispatchPerDispatchClassU32: {
normal: 'u32',
operational: 'u32',
mandatory: 'u32'
},
/**
- * Lookup139: frame_support::weights::RuntimeDbWeight
+ * Lookup136: sp_weights::RuntimeDbWeight
**/
- FrameSupportWeightsRuntimeDbWeight: {
+ SpWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup140: sp_version::RuntimeVersion
+ * Lookup137: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1417,13 +1386,13 @@
stateVersion: 'u8'
},
/**
- * Lookup145: frame_system::pallet::Error<T>
+ * Lookup142: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup146: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1432,19 +1401,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup149: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup146: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup150: sp_trie::storage_proof::StorageProof
+ * Lookup147: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup152: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1453,7 +1422,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup155: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1464,7 +1433,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup156: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1478,14 +1447,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup162: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup163: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1504,7 +1473,7 @@
}
},
/**
- * Lookup164: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1513,27 +1482,27 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup166: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup169: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup172: 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']
},
/**
- * Lookup174: pallet_balances::BalanceLock<Balance>
+ * Lookup171: pallet_balances::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1541,26 +1510,26 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup175: pallet_balances::Reasons
+ * Lookup172: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup178: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup180: pallet_balances::Releases
+ * Lookup177: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup181: pallet_balances::pallet::Call<T, I>
+ * Lookup178: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1593,13 +1562,13 @@
}
},
/**
- * Lookup184: pallet_balances::pallet::Error<T, I>
+ * Lookup181: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup186: pallet_timestamp::pallet::Call<T>
+ * Lookup183: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1609,13 +1578,13 @@
}
},
/**
- * Lookup188: pallet_transaction_payment::Releases
+ * Lookup185: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup189: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1624,7 +1593,7 @@
bond: 'u128'
},
/**
- * Lookup192: pallet_treasury::pallet::Call<T, I>
+ * Lookup189: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1648,17 +1617,17 @@
}
},
/**
- * Lookup195: frame_support::PalletId
+ * Lookup192: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup196: pallet_treasury::pallet::Error<T, I>
+ * Lookup193: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup197: pallet_sudo::pallet::Call<T>
+ * Lookup194: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1682,7 +1651,7 @@
}
},
/**
- * Lookup199: orml_vesting::module::Call<T>
+ * Lookup196: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -1701,7 +1670,7 @@
}
},
/**
- * Lookup201: orml_xtokens::module::Call<T>
+ * Lookup198: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -1744,7 +1713,7 @@
}
},
/**
- * Lookup202: xcm::VersionedMultiAsset
+ * Lookup199: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -1753,7 +1722,7 @@
}
},
/**
- * Lookup205: orml_tokens::module::Call<T>
+ * Lookup202: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -1787,7 +1756,7 @@
}
},
/**
- * Lookup206: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -1836,7 +1805,7 @@
}
},
/**
- * Lookup207: pallet_xcm::pallet::Call<T>
+ * Lookup204: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -1890,7 +1859,7 @@
}
},
/**
- * Lookup208: xcm::VersionedXcm<Call>
+ * Lookup205: xcm::VersionedXcm<RuntimeCall>
**/
XcmVersionedXcm: {
_enum: {
@@ -1900,7 +1869,7 @@
}
},
/**
- * Lookup209: xcm::v0::Xcm<Call>
+ * Lookup206: xcm::v0::Xcm<RuntimeCall>
**/
XcmV0Xcm: {
_enum: {
@@ -1954,7 +1923,7 @@
}
},
/**
- * Lookup211: xcm::v0::order::Order<Call>
+ * Lookup208: xcm::v0::order::Order<RuntimeCall>
**/
XcmV0Order: {
_enum: {
@@ -1997,7 +1966,7 @@
}
},
/**
- * Lookup213: xcm::v0::Response
+ * Lookup210: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -2005,7 +1974,7 @@
}
},
/**
- * Lookup214: xcm::v1::Xcm<Call>
+ * Lookup211: xcm::v1::Xcm<RuntimeCall>
**/
XcmV1Xcm: {
_enum: {
@@ -2064,7 +2033,7 @@
}
},
/**
- * Lookup216: xcm::v1::order::Order<Call>
+ * Lookup213: xcm::v1::order::Order<RuntimeCall>
**/
XcmV1Order: {
_enum: {
@@ -2109,7 +2078,7 @@
}
},
/**
- * Lookup218: xcm::v1::Response
+ * Lookup215: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -2118,11 +2087,11 @@
}
},
/**
- * Lookup232: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup229: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup233: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -2133,7 +2102,7 @@
}
},
/**
- * Lookup234: pallet_inflation::pallet::Call<T>
+ * Lookup231: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2143,7 +2112,7 @@
}
},
/**
- * Lookup235: pallet_unique::Call<T>
+ * Lookup232: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2275,7 +2244,7 @@
}
},
/**
- * Lookup240: up_data_structs::CollectionMode
+ * Lookup237: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2285,7 +2254,7 @@
}
},
/**
- * Lookup241: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2300,13 +2269,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup243: up_data_structs::AccessMode
+ * Lookup240: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup245: up_data_structs::CollectionLimits
+ * Lookup242: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2320,7 +2289,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup247: up_data_structs::SponsoringRateLimit
+ * Lookup244: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2329,7 +2298,7 @@
}
},
/**
- * Lookup250: up_data_structs::CollectionPermissions
+ * Lookup247: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2337,7 +2306,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup252: up_data_structs::NestingPermissions
+ * Lookup249: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2345,18 +2314,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup254: up_data_structs::OwnerRestrictedSet
+ * Lookup251: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup259: up_data_structs::PropertyKeyPermission
+ * Lookup256: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup260: up_data_structs::PropertyPermission
+ * Lookup257: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2364,14 +2333,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup263: up_data_structs::Property
+ * Lookup260: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup266: up_data_structs::CreateItemData
+ * Lookup263: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2381,26 +2350,26 @@
}
},
/**
- * Lookup267: up_data_structs::CreateNftData
+ * Lookup264: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup268: up_data_structs::CreateFungibleData
+ * Lookup265: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup269: up_data_structs::CreateReFungibleData
+ * Lookup266: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup272: 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: {
@@ -2411,14 +2380,14 @@
}
},
/**
- * Lookup274: 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'
},
/**
- * Lookup281: 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',
@@ -2426,47 +2395,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup283: 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>'
},
/**
- * Lookup284: pallet_unique_scheduler::pallet::Call<T>
- **/
- PalletUniqueSchedulerCall: {
- _enum: {
- schedule_named: {
- id: '[u8;16]',
- when: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'u8',
- call: 'FrameSupportScheduleMaybeHashed',
- },
- cancel_named: {
- id: '[u8;16]',
- },
- schedule_named_after: {
- id: '[u8;16]',
- after: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'u8',
- call: 'FrameSupportScheduleMaybeHashed'
- }
- }
- },
- /**
- * Lookup286: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
- **/
- FrameSupportScheduleMaybeHashed: {
- _enum: {
- Value: 'Call',
- Hash: 'H256'
- }
- },
- /**
- * Lookup287: pallet_configuration::pallet::Call<T>
+ * Lookup281: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2479,15 +2415,15 @@
}
},
/**
- * Lookup289: pallet_template_transaction_payment::Call<T>
+ * Lookup283: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup290: pallet_structure::pallet::Call<T>
+ * Lookup284: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup291: pallet_rmrk_core::pallet::Call<T>
+ * Lookup285: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2578,7 +2514,7 @@
}
},
/**
- * Lookup297: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup291: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2588,7 +2524,7 @@
}
},
/**
- * Lookup299: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup293: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2597,7 +2533,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup301: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup295: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2608,7 +2544,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup302: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup296: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2619,7 +2555,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup305: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup299: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2640,7 +2576,7 @@
}
},
/**
- * Lookup308: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup302: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2649,7 +2585,7 @@
}
},
/**
- * Lookup310: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup304: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2657,7 +2593,7 @@
src: 'Bytes'
},
/**
- * Lookup311: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup305: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2666,7 +2602,7 @@
z: 'u32'
},
/**
- * Lookup312: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup306: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2676,7 +2612,7 @@
}
},
/**
- * Lookup314: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup308: 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',
@@ -2684,14 +2620,14 @@
inherit: 'bool'
},
/**
- * Lookup316: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup318: pallet_app_promotion::pallet::Call<T>
+ * Lookup312: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2720,7 +2656,7 @@
}
},
/**
- * Lookup320: pallet_foreign_assets::module::Call<T>
+ * Lookup314: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2737,7 +2673,7 @@
}
},
/**
- * Lookup321: pallet_evm::pallet::Call<T>
+ * Lookup315: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2780,7 +2716,7 @@
}
},
/**
- * Lookup325: pallet_ethereum::pallet::Call<T>
+ * Lookup319: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2790,7 +2726,7 @@
}
},
/**
- * Lookup326: ethereum::transaction::TransactionV2
+ * Lookup320: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2800,7 +2736,7 @@
}
},
/**
- * Lookup327: ethereum::transaction::LegacyTransaction
+ * Lookup321: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2812,7 +2748,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup328: ethereum::transaction::TransactionAction
+ * Lookup322: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2821,7 +2757,7 @@
}
},
/**
- * Lookup329: ethereum::transaction::TransactionSignature
+ * Lookup323: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2829,7 +2765,7 @@
s: 'H256'
},
/**
- * Lookup331: ethereum::transaction::EIP2930Transaction
+ * Lookup325: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2845,14 +2781,14 @@
s: 'H256'
},
/**
- * Lookup333: ethereum::transaction::AccessListItem
+ * Lookup327: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup334: ethereum::transaction::EIP1559Transaction
+ * Lookup328: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2869,7 +2805,7 @@
s: 'H256'
},
/**
- * Lookup335: pallet_evm_migration::pallet::Call<T>
+ * Lookup329: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2887,32 +2823,32 @@
}
},
/**
- * Lookup338: pallet_sudo::pallet::Error<T>
+ * Lookup332: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup340: orml_vesting::module::Error<T>
+ * Lookup334: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup341: orml_xtokens::module::Error<T>
+ * Lookup335: 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']
},
/**
- * Lookup344: orml_tokens::BalanceLock<Balance>
+ * Lookup338: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup346: orml_tokens::AccountData<Balance>
+ * Lookup340: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -2920,20 +2856,20 @@
frozen: 'u128'
},
/**
- * Lookup348: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup342: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup350: orml_tokens::module::Error<T>
+ * Lookup344: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup352: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup346: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2941,19 +2877,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup353: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup347: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup356: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup350: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup359: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup353: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2963,13 +2899,13 @@
lastIndex: 'u16'
},
/**
- * Lookup360: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup354: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup362: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup356: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2980,29 +2916,29 @@
xcmpMaxIndividualWeight: 'Weight'
},
/**
- * Lookup364: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup358: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup365: pallet_xcm::pallet::Error<T>
+ * Lookup359: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup366: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup360: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup367: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup361: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'Weight'
},
/**
- * Lookup368: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup362: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3010,185 +2946,20 @@
overweightCount: 'u64'
},
/**
- * Lookup371: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup365: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup375: pallet_unique::Error<T>
+ * Lookup369: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup378: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
- **/
- PalletUniqueSchedulerScheduledV3: {
- maybeId: 'Option<[u8;16]>',
- priority: 'u8',
- call: 'FrameSupportScheduleMaybeHashed',
- maybePeriodic: 'Option<(u32,u32)>',
- origin: 'OpalRuntimeOriginCaller'
- },
- /**
- * Lookup379: 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'
- }
- },
- /**
- * Lookup380: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
- **/
- FrameSupportDispatchRawOrigin: {
- _enum: {
- Root: 'Null',
- Signed: 'AccountId32',
- None: 'Null'
- }
- },
- /**
- * Lookup381: pallet_xcm::pallet::Origin
- **/
- PalletXcmOrigin: {
- _enum: {
- Xcm: 'XcmV1MultiLocation',
- Response: 'XcmV1MultiLocation'
- }
- },
- /**
- * Lookup382: cumulus_pallet_xcm::pallet::Origin
- **/
- CumulusPalletXcmOrigin: {
- _enum: {
- Relay: 'Null',
- SiblingParachain: 'u32'
- }
- },
- /**
- * Lookup383: pallet_ethereum::RawOrigin
- **/
- PalletEthereumRawOrigin: {
- _enum: {
- EthereumTransaction: 'H160'
- }
- },
- /**
- * Lookup384: sp_core::Void
- **/
- SpCoreVoid: 'Null',
- /**
- * Lookup385: pallet_unique_scheduler::pallet::Error<T>
+ * Lookup370: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
- PalletUniqueSchedulerError: {
- _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
- },
- /**
- * Lookup386: up_data_structs::Collection<sp_core::crypto::AccountId32>
- **/
UpDataStructsCollection: {
owner: 'AccountId32',
mode: 'UpDataStructsCollectionMode',
@@ -3201,7 +2972,7 @@
flags: '[u8;1]'
},
/**
- * Lookup387: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup371: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3211,7 +2982,7 @@
}
},
/**
- * Lookup389: up_data_structs::Properties
+ * Lookup373: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3219,15 +2990,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup390: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup374: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup395: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup379: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup402: up_data_structs::CollectionStats
+ * Lookup386: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3235,18 +3006,18 @@
alive: 'u32'
},
/**
- * Lookup403: up_data_structs::TokenChild
+ * Lookup387: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup404: PhantomType::up_data_structs<T>
+ * Lookup388: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup406: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup390: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3254,7 +3025,7 @@
pieces: 'u128'
},
/**
- * Lookup408: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup392: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3271,14 +3042,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup409: up_data_structs::RpcCollectionFlags
+ * Lookup393: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup410: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup394: 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',
@@ -3288,7 +3059,7 @@
nftsCount: 'u32'
},
/**
- * Lookup411: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup395: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3298,14 +3069,14 @@
pending: 'bool'
},
/**
- * Lookup413: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup397: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup414: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup398: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3314,14 +3085,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup415: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup399: 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'
},
/**
- * Lookup416: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup400: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3329,92 +3100,92 @@
symbol: 'Bytes'
},
/**
- * Lookup417: rmrk_traits::nft::NftChild
+ * Lookup401: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup419: pallet_common::pallet::Error<T>
+ * Lookup403: 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']
},
/**
- * Lookup421: pallet_fungible::pallet::Error<T>
+ * Lookup405: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup422: pallet_refungible::ItemData
+ * Lookup406: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup427: pallet_refungible::pallet::Error<T>
+ * Lookup411: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup428: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup412: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup430: up_data_structs::PropertyScope
+ * Lookup414: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup432: pallet_nonfungible::pallet::Error<T>
+ * Lookup416: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup433: pallet_structure::pallet::Error<T>
+ * Lookup417: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup434: pallet_rmrk_core::pallet::Error<T>
+ * Lookup418: 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']
},
/**
- * Lookup436: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup420: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup442: pallet_app_promotion::pallet::Error<T>
+ * Lookup426: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup443: pallet_foreign_assets::module::Error<T>
+ * Lookup427: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup446: pallet_evm::pallet::Error<T>
+ * Lookup430: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup449: fp_rpc::TransactionStatus
+ * Lookup433: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3426,11 +3197,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup451: ethbloom::Bloom
+ * Lookup435: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup453: ethereum::receipt::ReceiptV3
+ * Lookup437: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3440,7 +3211,7 @@
}
},
/**
- * Lookup454: ethereum::receipt::EIP658ReceiptData
+ * Lookup438: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3449,7 +3220,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup455: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup439: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3457,7 +3228,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup456: ethereum::header::Header
+ * Lookup440: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3477,23 +3248,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup457: ethereum_types::hash::H64
+ * Lookup441: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup462: pallet_ethereum::pallet::Error<T>
+ * Lookup446: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup463: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup447: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup464: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup448: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3503,25 +3274,25 @@
}
},
/**
- * Lookup465: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup449: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup471: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup455: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup472: pallet_evm_migration::pallet::Error<T>
+ * Lookup456: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup474: sp_runtime::MultiSignature
+ * Lookup458: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3531,47 +3302,47 @@
}
},
/**
- * Lookup475: sp_core::ed25519::Signature
+ * Lookup459: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup477: sp_core::sr25519::Signature
+ * Lookup461: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup478: sp_core::ecdsa::Signature
+ * Lookup462: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup481: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup465: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup482: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup466: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup483: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup467: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup486: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup470: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup487: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup471: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup488: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup472: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup489: opal_runtime::Runtime
+ * Lookup473: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup490: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup474: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, 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, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, 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, 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, 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, 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, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, 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, 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 {
@@ -21,7 +21,6 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
- CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -51,18 +50,14 @@
EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;
EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
FpRpcTransactionStatus: FpRpcTransactionStatus;
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
+ FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
+ FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
+ FrameSupportDispatchPays: FrameSupportDispatchPays;
+ FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
+ FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
- FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
- FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
- FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
- FrameSupportWeightsPays: FrameSupportWeightsPays;
- FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;
- FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;
- FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
- FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;
FrameSystemAccountInfo: FrameSystemAccountInfo;
FrameSystemCall: FrameSystemCall;
FrameSystemError: FrameSystemError;
@@ -78,7 +73,6 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
- OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OrmlTokensAccountData: OrmlTokensAccountData;
OrmlTokensBalanceLock: OrmlTokensBalanceLock;
@@ -111,7 +105,6 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
- PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -158,14 +151,9 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
- PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
- PalletUniqueSchedulerError: PalletUniqueSchedulerError;
- PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
- PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PalletXcmOrigin: PalletXcmOrigin;
PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -196,7 +184,6 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
- SpCoreVoid: SpCoreVoid;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
@@ -207,6 +194,7 @@
SpRuntimeTransactionalError: SpRuntimeTransactionalError;
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
+ SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
UpDataStructsAccessMode: UpDataStructsAccessMode;
UpDataStructsCollection: UpDataStructsCollection;
UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth28 readonly feeFrozen: u128;28 readonly feeFrozen: u128;29 }29 }303031 /** @name FrameSupportWeightsPerDispatchClassWeight (7) */31 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportWeightsPerDispatchClassWeight extends Struct {32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: Weight;33 readonly normal: Weight;34 readonly operational: Weight;34 readonly operational: Weight;35 readonly mandatory: Weight;35 readonly mandatory: Weight;65 interface FrameSystemEvent extends Enum {65 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;66 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {67 readonly asExtrinsicSuccess: {68 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;68 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;69 } & Struct;69 } & Struct;70 readonly isExtrinsicFailed: boolean;70 readonly isExtrinsicFailed: boolean;71 readonly asExtrinsicFailed: {71 readonly asExtrinsicFailed: {72 readonly dispatchError: SpRuntimeDispatchError;72 readonly dispatchError: SpRuntimeDispatchError;73 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;73 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;74 } & Struct;74 } & Struct;75 readonly isCodeUpdated: boolean;75 readonly isCodeUpdated: boolean;76 readonly isNewAccount: boolean;76 readonly isNewAccount: boolean;89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }90 }919192 /** @name FrameSupportWeightsDispatchInfo (20) */92 /** @name FrameSupportDispatchDispatchInfo (20) */93 interface FrameSupportWeightsDispatchInfo extends Struct {93 interface FrameSupportDispatchDispatchInfo extends Struct {94 readonly weight: Weight;94 readonly weight: Weight;95 readonly class: FrameSupportWeightsDispatchClass;95 readonly class: FrameSupportDispatchDispatchClass;96 readonly paysFee: FrameSupportWeightsPays;96 readonly paysFee: FrameSupportDispatchPays;97 }97 }989899 /** @name FrameSupportWeightsDispatchClass (21) */99 /** @name FrameSupportDispatchDispatchClass (21) */100 interface FrameSupportWeightsDispatchClass extends Enum {100 interface FrameSupportDispatchDispatchClass extends Enum {101 readonly isNormal: boolean;101 readonly isNormal: boolean;102 readonly isOperational: boolean;102 readonly isOperational: boolean;103 readonly isMandatory: boolean;103 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';104 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }105 }106106107 /** @name FrameSupportWeightsPays (22) */107 /** @name FrameSupportDispatchPays (22) */108 interface FrameSupportWeightsPays extends Enum {108 interface FrameSupportDispatchPays extends Enum {109 readonly isYes: boolean;109 readonly isYes: boolean;110 readonly isNo: boolean;110 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';111 readonly type: 'Yes' | 'No';1132 readonly type: 'Substrate' | 'Ethereum';1132 readonly type: 'Substrate' | 'Ethereum';1133 }1133 }11341135 /** @name PalletUniqueSchedulerEvent (93) */1136 interface PalletUniqueSchedulerEvent extends Enum {1137 readonly isScheduled: boolean;1138 readonly asScheduled: {1139 readonly when: u32;1140 readonly index: u32;1141 } & Struct;1142 readonly isCanceled: boolean;1143 readonly asCanceled: {1144 readonly when: u32;1145 readonly index: u32;1146 } & Struct;1147 readonly isDispatched: boolean;1148 readonly asDispatched: {1149 readonly task: ITuple<[u32, u32]>;1150 readonly id: Option<U8aFixed>;1151 readonly result: Result<Null, SpRuntimeDispatchError>;1152 } & Struct;1153 readonly isCallLookupFailed: boolean;1154 readonly asCallLookupFailed: {1155 readonly task: ITuple<[u32, u32]>;1156 readonly id: Option<U8aFixed>;1157 readonly error: FrameSupportScheduleLookupError;1158 } & Struct;1159 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1160 }11611162 /** @name FrameSupportScheduleLookupError (96) */1163 interface FrameSupportScheduleLookupError extends Enum {1164 readonly isUnknown: boolean;1165 readonly isBadFormat: boolean;1166 readonly type: 'Unknown' | 'BadFormat';1167 }116811341169 /** @name PalletCommonEvent (97) */1135 /** @name PalletCommonEvent (93) */1170 interface PalletCommonEvent extends Enum {1136 interface PalletCommonEvent extends Enum {1171 readonly isCollectionCreated: boolean;1137 readonly isCollectionCreated: boolean;1172 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1138 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1193 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1159 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1194 }1160 }119511611196 /** @name PalletStructureEvent (100) */1162 /** @name PalletStructureEvent (96) */1197 interface PalletStructureEvent extends Enum {1163 interface PalletStructureEvent extends Enum {1198 readonly isExecuted: boolean;1164 readonly isExecuted: boolean;1199 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1165 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1200 readonly type: 'Executed';1166 readonly type: 'Executed';1201 }1167 }120211681203 /** @name PalletRmrkCoreEvent (101) */1169 /** @name PalletRmrkCoreEvent (97) */1204 interface PalletRmrkCoreEvent extends Enum {1170 interface PalletRmrkCoreEvent extends Enum {1205 readonly isCollectionCreated: boolean;1171 readonly isCollectionCreated: boolean;1206 readonly asCollectionCreated: {1172 readonly asCollectionCreated: {1290 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1256 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1291 }1257 }129212581293 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1259 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */1294 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1260 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1295 readonly isAccountId: boolean;1261 readonly isAccountId: boolean;1296 readonly asAccountId: AccountId32;1262 readonly asAccountId: AccountId32;1299 readonly type: 'AccountId' | 'CollectionAndNftTuple';1265 readonly type: 'AccountId' | 'CollectionAndNftTuple';1300 }1266 }130112671302 /** @name PalletRmrkEquipEvent (107) */1268 /** @name PalletRmrkEquipEvent (103) */1303 interface PalletRmrkEquipEvent extends Enum {1269 interface PalletRmrkEquipEvent extends Enum {1304 readonly isBaseCreated: boolean;1270 readonly isBaseCreated: boolean;1305 readonly asBaseCreated: {1271 readonly asBaseCreated: {1314 readonly type: 'BaseCreated' | 'EquippablesUpdated';1280 readonly type: 'BaseCreated' | 'EquippablesUpdated';1315 }1281 }131612821317 /** @name PalletAppPromotionEvent (108) */1283 /** @name PalletAppPromotionEvent (104) */1318 interface PalletAppPromotionEvent extends Enum {1284 interface PalletAppPromotionEvent extends Enum {1319 readonly isStakingRecalculation: boolean;1285 readonly isStakingRecalculation: boolean;1320 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1286 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1327 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1293 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1328 }1294 }132912951330 /** @name PalletForeignAssetsModuleEvent (109) */1296 /** @name PalletForeignAssetsModuleEvent (105) */1331 interface PalletForeignAssetsModuleEvent extends Enum {1297 interface PalletForeignAssetsModuleEvent extends Enum {1332 readonly isForeignAssetRegistered: boolean;1298 readonly isForeignAssetRegistered: boolean;1333 readonly asForeignAssetRegistered: {1299 readonly asForeignAssetRegistered: {1354 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1320 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1355 }1321 }135613221357 /** @name PalletForeignAssetsModuleAssetMetadata (110) */1323 /** @name PalletForeignAssetsModuleAssetMetadata (106) */1358 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1324 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1359 readonly name: Bytes;1325 readonly name: Bytes;1360 readonly symbol: Bytes;1326 readonly symbol: Bytes;1361 readonly decimals: u8;1327 readonly decimals: u8;1362 readonly minimalBalance: u128;1328 readonly minimalBalance: u128;1363 }1329 }136413301365 /** @name PalletEvmEvent (111) */1331 /** @name PalletEvmEvent (107) */1366 interface PalletEvmEvent extends Enum {1332 interface PalletEvmEvent extends Enum {1367 readonly isLog: boolean;1333 readonly isLog: boolean;1368 readonly asLog: EthereumLog;1334 readonly asLog: EthereumLog;1381 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1347 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1382 }1348 }138313491384 /** @name EthereumLog (112) */1350 /** @name EthereumLog (108) */1385 interface EthereumLog extends Struct {1351 interface EthereumLog extends Struct {1386 readonly address: H160;1352 readonly address: H160;1387 readonly topics: Vec<H256>;1353 readonly topics: Vec<H256>;1388 readonly data: Bytes;1354 readonly data: Bytes;1389 }1355 }139013561391 /** @name PalletEthereumEvent (116) */1357 /** @name PalletEthereumEvent (112) */1392 interface PalletEthereumEvent extends Enum {1358 interface PalletEthereumEvent extends Enum {1393 readonly isExecuted: boolean;1359 readonly isExecuted: boolean;1394 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1360 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1395 readonly type: 'Executed';1361 readonly type: 'Executed';1396 }1362 }139713631398 /** @name EvmCoreErrorExitReason (117) */1364 /** @name EvmCoreErrorExitReason (113) */1399 interface EvmCoreErrorExitReason extends Enum {1365 interface EvmCoreErrorExitReason extends Enum {1400 readonly isSucceed: boolean;1366 readonly isSucceed: boolean;1401 readonly asSucceed: EvmCoreErrorExitSucceed;1367 readonly asSucceed: EvmCoreErrorExitSucceed;1408 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1374 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1409 }1375 }141013761411 /** @name EvmCoreErrorExitSucceed (118) */1377 /** @name EvmCoreErrorExitSucceed (114) */1412 interface EvmCoreErrorExitSucceed extends Enum {1378 interface EvmCoreErrorExitSucceed extends Enum {1413 readonly isStopped: boolean;1379 readonly isStopped: boolean;1414 readonly isReturned: boolean;1380 readonly isReturned: boolean;1415 readonly isSuicided: boolean;1381 readonly isSuicided: boolean;1416 readonly type: 'Stopped' | 'Returned' | 'Suicided';1382 readonly type: 'Stopped' | 'Returned' | 'Suicided';1417 }1383 }141813841419 /** @name EvmCoreErrorExitError (119) */1385 /** @name EvmCoreErrorExitError (115) */1420 interface EvmCoreErrorExitError extends Enum {1386 interface EvmCoreErrorExitError extends Enum {1421 readonly isStackUnderflow: boolean;1387 readonly isStackUnderflow: boolean;1422 readonly isStackOverflow: boolean;1388 readonly isStackOverflow: boolean;1437 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1403 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1438 }1404 }143914051440 /** @name EvmCoreErrorExitRevert (122) */1406 /** @name EvmCoreErrorExitRevert (118) */1441 interface EvmCoreErrorExitRevert extends Enum {1407 interface EvmCoreErrorExitRevert extends Enum {1442 readonly isReverted: boolean;1408 readonly isReverted: boolean;1443 readonly type: 'Reverted';1409 readonly type: 'Reverted';1444 }1410 }144514111446 /** @name EvmCoreErrorExitFatal (123) */1412 /** @name EvmCoreErrorExitFatal (119) */1447 interface EvmCoreErrorExitFatal extends Enum {1413 interface EvmCoreErrorExitFatal extends Enum {1448 readonly isNotSupported: boolean;1414 readonly isNotSupported: boolean;1449 readonly isUnhandledInterrupt: boolean;1415 readonly isUnhandledInterrupt: boolean;1454 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1420 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1455 }1421 }145614221457 /** @name PalletEvmContractHelpersEvent (124) */1423 /** @name PalletEvmContractHelpersEvent (120) */1458 interface PalletEvmContractHelpersEvent extends Enum {1424 interface PalletEvmContractHelpersEvent extends Enum {1459 readonly isContractSponsorSet: boolean;1425 readonly isContractSponsorSet: boolean;1460 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1426 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1465 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1431 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1466 }1432 }146714331468 /** @name FrameSystemPhase (125) */1434 /** @name FrameSystemPhase (121) */1469 interface FrameSystemPhase extends Enum {1435 interface FrameSystemPhase extends Enum {1470 readonly isApplyExtrinsic: boolean;1436 readonly isApplyExtrinsic: boolean;1471 readonly asApplyExtrinsic: u32;1437 readonly asApplyExtrinsic: u32;1474 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1440 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1475 }1441 }147614421477 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1443 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */1478 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1444 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1479 readonly specVersion: Compact<u32>;1445 readonly specVersion: Compact<u32>;1480 readonly specName: Text;1446 readonly specName: Text;1481 }1447 }148214481483 /** @name FrameSystemCall (128) */1449 /** @name FrameSystemCall (125) */1484 interface FrameSystemCall extends Enum {1450 interface FrameSystemCall extends Enum {1485 readonly isFillBlock: boolean;1451 readonly isFillBlock: boolean;1486 readonly asFillBlock: {1452 readonly asFillBlock: {1522 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1488 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1523 }1489 }152414901525 /** @name FrameSystemLimitsBlockWeights (133) */1491 /** @name FrameSystemLimitsBlockWeights (130) */1526 interface FrameSystemLimitsBlockWeights extends Struct {1492 interface FrameSystemLimitsBlockWeights extends Struct {1527 readonly baseBlock: Weight;1493 readonly baseBlock: Weight;1528 readonly maxBlock: Weight;1494 readonly maxBlock: Weight;1529 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1495 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1530 }1496 }153114971532 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (134) */1498 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */1533 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1499 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1534 readonly normal: FrameSystemLimitsWeightsPerClass;1500 readonly normal: FrameSystemLimitsWeightsPerClass;1535 readonly operational: FrameSystemLimitsWeightsPerClass;1501 readonly operational: FrameSystemLimitsWeightsPerClass;1536 readonly mandatory: FrameSystemLimitsWeightsPerClass;1502 readonly mandatory: FrameSystemLimitsWeightsPerClass;1537 }1503 }153815041539 /** @name FrameSystemLimitsWeightsPerClass (135) */1505 /** @name FrameSystemLimitsWeightsPerClass (132) */1540 interface FrameSystemLimitsWeightsPerClass extends Struct {1506 interface FrameSystemLimitsWeightsPerClass extends Struct {1541 readonly baseExtrinsic: Weight;1507 readonly baseExtrinsic: Weight;1542 readonly maxExtrinsic: Option<Weight>;1508 readonly maxExtrinsic: Option<Weight>;1543 readonly maxTotal: Option<Weight>;1509 readonly maxTotal: Option<Weight>;1544 readonly reserved: Option<Weight>;1510 readonly reserved: Option<Weight>;1545 }1511 }154615121547 /** @name FrameSystemLimitsBlockLength (137) */1513 /** @name FrameSystemLimitsBlockLength (134) */1548 interface FrameSystemLimitsBlockLength extends Struct {1514 interface FrameSystemLimitsBlockLength extends Struct {1549 readonly max: FrameSupportWeightsPerDispatchClassU32;1515 readonly max: FrameSupportDispatchPerDispatchClassU32;1550 }1516 }155115171552 /** @name FrameSupportWeightsPerDispatchClassU32 (138) */1518 /** @name FrameSupportDispatchPerDispatchClassU32 (135) */1553 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1519 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1554 readonly normal: u32;1520 readonly normal: u32;1555 readonly operational: u32;1521 readonly operational: u32;1556 readonly mandatory: u32;1522 readonly mandatory: u32;1557 }1523 }155815241559 /** @name FrameSupportWeightsRuntimeDbWeight (139) */1525 /** @name SpWeightsRuntimeDbWeight (136) */1560 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1526 interface SpWeightsRuntimeDbWeight extends Struct {1561 readonly read: u64;1527 readonly read: u64;1562 readonly write: u64;1528 readonly write: u64;1563 }1529 }156415301565 /** @name SpVersionRuntimeVersion (140) */1531 /** @name SpVersionRuntimeVersion (137) */1566 interface SpVersionRuntimeVersion extends Struct {1532 interface SpVersionRuntimeVersion extends Struct {1567 readonly specName: Text;1533 readonly specName: Text;1568 readonly implName: Text;1534 readonly implName: Text;1574 readonly stateVersion: u8;1540 readonly stateVersion: u8;1575 }1541 }157615421577 /** @name FrameSystemError (145) */1543 /** @name FrameSystemError (142) */1578 interface FrameSystemError extends Enum {1544 interface FrameSystemError extends Enum {1579 readonly isInvalidSpecName: boolean;1545 readonly isInvalidSpecName: boolean;1580 readonly isSpecVersionNeedsToIncrease: boolean;1546 readonly isSpecVersionNeedsToIncrease: boolean;1585 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1551 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1586 }1552 }158715531588 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1554 /** @name PolkadotPrimitivesV2PersistedValidationData (143) */1589 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1555 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1590 readonly parentHead: Bytes;1556 readonly parentHead: Bytes;1591 readonly relayParentNumber: u32;1557 readonly relayParentNumber: u32;1592 readonly relayParentStorageRoot: H256;1558 readonly relayParentStorageRoot: H256;1593 readonly maxPovSize: u32;1559 readonly maxPovSize: u32;1594 }1560 }159515611596 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1562 /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */1597 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1563 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1598 readonly isPresent: boolean;1564 readonly isPresent: boolean;1599 readonly type: 'Present';1565 readonly type: 'Present';1600 }1566 }160115671602 /** @name SpTrieStorageProof (150) */1568 /** @name SpTrieStorageProof (147) */1603 interface SpTrieStorageProof extends Struct {1569 interface SpTrieStorageProof extends Struct {1604 readonly trieNodes: BTreeSet<Bytes>;1570 readonly trieNodes: BTreeSet<Bytes>;1605 }1571 }160615721607 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1573 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */1608 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1574 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1609 readonly dmqMqcHead: H256;1575 readonly dmqMqcHead: H256;1610 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1576 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1611 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1577 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1612 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1578 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1613 }1579 }161415801615 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1581 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */1616 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1582 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1617 readonly maxCapacity: u32;1583 readonly maxCapacity: u32;1618 readonly maxTotalSize: u32;1584 readonly maxTotalSize: u32;1622 readonly mqcHead: Option<H256>;1588 readonly mqcHead: Option<H256>;1623 }1589 }162415901625 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1591 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */1626 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1592 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1627 readonly maxCodeSize: u32;1593 readonly maxCodeSize: u32;1628 readonly maxHeadDataSize: u32;1594 readonly maxHeadDataSize: u32;1635 readonly validationUpgradeDelay: u32;1601 readonly validationUpgradeDelay: u32;1636 }1602 }163716031638 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1604 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */1639 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1605 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1640 readonly recipient: u32;1606 readonly recipient: u32;1641 readonly data: Bytes;1607 readonly data: Bytes;1642 }1608 }164316091644 /** @name CumulusPalletParachainSystemCall (163) */1610 /** @name CumulusPalletParachainSystemCall (160) */1645 interface CumulusPalletParachainSystemCall extends Enum {1611 interface CumulusPalletParachainSystemCall extends Enum {1646 readonly isSetValidationData: boolean;1612 readonly isSetValidationData: boolean;1647 readonly asSetValidationData: {1613 readonly asSetValidationData: {1662 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1628 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1663 }1629 }166416301665 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1631 /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */1666 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1632 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1667 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1633 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1668 readonly relayChainState: SpTrieStorageProof;1634 readonly relayChainState: SpTrieStorageProof;1669 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1635 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1670 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1636 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1671 }1637 }167216381673 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1639 /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */1674 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1640 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1675 readonly sentAt: u32;1641 readonly sentAt: u32;1676 readonly msg: Bytes;1642 readonly msg: Bytes;1677 }1643 }167816441679 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1645 /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */1680 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1646 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1681 readonly sentAt: u32;1647 readonly sentAt: u32;1682 readonly data: Bytes;1648 readonly data: Bytes;1683 }1649 }168416501685 /** @name CumulusPalletParachainSystemError (172) */1651 /** @name CumulusPalletParachainSystemError (169) */1686 interface CumulusPalletParachainSystemError extends Enum {1652 interface CumulusPalletParachainSystemError extends Enum {1687 readonly isOverlappingUpgrades: boolean;1653 readonly isOverlappingUpgrades: boolean;1688 readonly isProhibitedByPolkadot: boolean;1654 readonly isProhibitedByPolkadot: boolean;1695 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1661 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1696 }1662 }169716631698 /** @name PalletBalancesBalanceLock (174) */1664 /** @name PalletBalancesBalanceLock (171) */1699 interface PalletBalancesBalanceLock extends Struct {1665 interface PalletBalancesBalanceLock extends Struct {1700 readonly id: U8aFixed;1666 readonly id: U8aFixed;1701 readonly amount: u128;1667 readonly amount: u128;1702 readonly reasons: PalletBalancesReasons;1668 readonly reasons: PalletBalancesReasons;1703 }1669 }170416701705 /** @name PalletBalancesReasons (175) */1671 /** @name PalletBalancesReasons (172) */1706 interface PalletBalancesReasons extends Enum {1672 interface PalletBalancesReasons extends Enum {1707 readonly isFee: boolean;1673 readonly isFee: boolean;1708 readonly isMisc: boolean;1674 readonly isMisc: boolean;1709 readonly isAll: boolean;1675 readonly isAll: boolean;1710 readonly type: 'Fee' | 'Misc' | 'All';1676 readonly type: 'Fee' | 'Misc' | 'All';1711 }1677 }171216781713 /** @name PalletBalancesReserveData (178) */1679 /** @name PalletBalancesReserveData (175) */1714 interface PalletBalancesReserveData extends Struct {1680 interface PalletBalancesReserveData extends Struct {1715 readonly id: U8aFixed;1681 readonly id: U8aFixed;1716 readonly amount: u128;1682 readonly amount: u128;1717 }1683 }171816841719 /** @name PalletBalancesReleases (180) */1685 /** @name PalletBalancesReleases (177) */1720 interface PalletBalancesReleases extends Enum {1686 interface PalletBalancesReleases extends Enum {1721 readonly isV100: boolean;1687 readonly isV100: boolean;1722 readonly isV200: boolean;1688 readonly isV200: boolean;1723 readonly type: 'V100' | 'V200';1689 readonly type: 'V100' | 'V200';1724 }1690 }172516911726 /** @name PalletBalancesCall (181) */1692 /** @name PalletBalancesCall (178) */1727 interface PalletBalancesCall extends Enum {1693 interface PalletBalancesCall extends Enum {1728 readonly isTransfer: boolean;1694 readonly isTransfer: boolean;1729 readonly asTransfer: {1695 readonly asTransfer: {1760 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1726 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1761 }1727 }176217281763 /** @name PalletBalancesError (184) */1729 /** @name PalletBalancesError (181) */1764 interface PalletBalancesError extends Enum {1730 interface PalletBalancesError extends Enum {1765 readonly isVestingBalance: boolean;1731 readonly isVestingBalance: boolean;1766 readonly isLiquidityRestrictions: boolean;1732 readonly isLiquidityRestrictions: boolean;1773 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1739 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1774 }1740 }177517411776 /** @name PalletTimestampCall (186) */1742 /** @name PalletTimestampCall (183) */1777 interface PalletTimestampCall extends Enum {1743 interface PalletTimestampCall extends Enum {1778 readonly isSet: boolean;1744 readonly isSet: boolean;1779 readonly asSet: {1745 readonly asSet: {1782 readonly type: 'Set';1748 readonly type: 'Set';1783 }1749 }178417501785 /** @name PalletTransactionPaymentReleases (188) */1751 /** @name PalletTransactionPaymentReleases (185) */1786 interface PalletTransactionPaymentReleases extends Enum {1752 interface PalletTransactionPaymentReleases extends Enum {1787 readonly isV1Ancient: boolean;1753 readonly isV1Ancient: boolean;1788 readonly isV2: boolean;1754 readonly isV2: boolean;1789 readonly type: 'V1Ancient' | 'V2';1755 readonly type: 'V1Ancient' | 'V2';1790 }1756 }179117571792 /** @name PalletTreasuryProposal (189) */1758 /** @name PalletTreasuryProposal (186) */1793 interface PalletTreasuryProposal extends Struct {1759 interface PalletTreasuryProposal extends Struct {1794 readonly proposer: AccountId32;1760 readonly proposer: AccountId32;1795 readonly value: u128;1761 readonly value: u128;1796 readonly beneficiary: AccountId32;1762 readonly beneficiary: AccountId32;1797 readonly bond: u128;1763 readonly bond: u128;1798 }1764 }179917651800 /** @name PalletTreasuryCall (192) */1766 /** @name PalletTreasuryCall (189) */1801 interface PalletTreasuryCall extends Enum {1767 interface PalletTreasuryCall extends Enum {1802 readonly isProposeSpend: boolean;1768 readonly isProposeSpend: boolean;1803 readonly asProposeSpend: {1769 readonly asProposeSpend: {1824 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1790 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1825 }1791 }182617921827 /** @name FrameSupportPalletId (195) */1793 /** @name FrameSupportPalletId (192) */1828 interface FrameSupportPalletId extends U8aFixed {}1794 interface FrameSupportPalletId extends U8aFixed {}182917951830 /** @name PalletTreasuryError (196) */1796 /** @name PalletTreasuryError (193) */1831 interface PalletTreasuryError extends Enum {1797 interface PalletTreasuryError extends Enum {1832 readonly isInsufficientProposersBalance: boolean;1798 readonly isInsufficientProposersBalance: boolean;1833 readonly isInvalidIndex: boolean;1799 readonly isInvalidIndex: boolean;1837 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1803 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1838 }1804 }183918051840 /** @name PalletSudoCall (197) */1806 /** @name PalletSudoCall (194) */1841 interface PalletSudoCall extends Enum {1807 interface PalletSudoCall extends Enum {1842 readonly isSudo: boolean;1808 readonly isSudo: boolean;1843 readonly asSudo: {1809 readonly asSudo: {1860 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1826 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1861 }1827 }186218281863 /** @name OrmlVestingModuleCall (199) */1829 /** @name OrmlVestingModuleCall (196) */1864 interface OrmlVestingModuleCall extends Enum {1830 interface OrmlVestingModuleCall extends Enum {1865 readonly isClaim: boolean;1831 readonly isClaim: boolean;1866 readonly isVestedTransfer: boolean;1832 readonly isVestedTransfer: boolean;1880 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1846 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1881 }1847 }188218481883 /** @name OrmlXtokensModuleCall (201) */1849 /** @name OrmlXtokensModuleCall (198) */1884 interface OrmlXtokensModuleCall extends Enum {1850 interface OrmlXtokensModuleCall extends Enum {1885 readonly isTransfer: boolean;1851 readonly isTransfer: boolean;1886 readonly asTransfer: {1852 readonly asTransfer: {1927 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1893 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1928 }1894 }192918951930 /** @name XcmVersionedMultiAsset (202) */1896 /** @name XcmVersionedMultiAsset (199) */1931 interface XcmVersionedMultiAsset extends Enum {1897 interface XcmVersionedMultiAsset extends Enum {1932 readonly isV0: boolean;1898 readonly isV0: boolean;1933 readonly asV0: XcmV0MultiAsset;1899 readonly asV0: XcmV0MultiAsset;1936 readonly type: 'V0' | 'V1';1902 readonly type: 'V0' | 'V1';1937 }1903 }193819041939 /** @name OrmlTokensModuleCall (205) */1905 /** @name OrmlTokensModuleCall (202) */1940 interface OrmlTokensModuleCall extends Enum {1906 interface OrmlTokensModuleCall extends Enum {1941 readonly isTransfer: boolean;1907 readonly isTransfer: boolean;1942 readonly asTransfer: {1908 readonly asTransfer: {1973 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1939 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1974 }1940 }197519411976 /** @name CumulusPalletXcmpQueueCall (206) */1942 /** @name CumulusPalletXcmpQueueCall (203) */1977 interface CumulusPalletXcmpQueueCall extends Enum {1943 interface CumulusPalletXcmpQueueCall extends Enum {1978 readonly isServiceOverweight: boolean;1944 readonly isServiceOverweight: boolean;1979 readonly asServiceOverweight: {1945 readonly asServiceOverweight: {2009 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';1975 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2010 }1976 }201119772012 /** @name PalletXcmCall (207) */1978 /** @name PalletXcmCall (204) */2013 interface PalletXcmCall extends Enum {1979 interface PalletXcmCall extends Enum {2014 readonly isSend: boolean;1980 readonly isSend: boolean;2015 readonly asSend: {1981 readonly asSend: {2071 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2037 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2072 }2038 }207320392074 /** @name XcmVersionedXcm (208) */2040 /** @name XcmVersionedXcm (205) */2075 interface XcmVersionedXcm extends Enum {2041 interface XcmVersionedXcm extends Enum {2076 readonly isV0: boolean;2042 readonly isV0: boolean;2077 readonly asV0: XcmV0Xcm;2043 readonly asV0: XcmV0Xcm;2082 readonly type: 'V0' | 'V1' | 'V2';2048 readonly type: 'V0' | 'V1' | 'V2';2083 }2049 }208420502085 /** @name XcmV0Xcm (209) */2051 /** @name XcmV0Xcm (206) */2086 interface XcmV0Xcm extends Enum {2052 interface XcmV0Xcm extends Enum {2087 readonly isWithdrawAsset: boolean;2053 readonly isWithdrawAsset: boolean;2088 readonly asWithdrawAsset: {2054 readonly asWithdrawAsset: {2145 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2111 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2146 }2112 }214721132148 /** @name XcmV0Order (211) */2114 /** @name XcmV0Order (208) */2149 interface XcmV0Order extends Enum {2115 interface XcmV0Order extends Enum {2150 readonly isNull: boolean;2116 readonly isNull: boolean;2151 readonly isDepositAsset: boolean;2117 readonly isDepositAsset: boolean;2193 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2159 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2194 }2160 }219521612196 /** @name XcmV0Response (213) */2162 /** @name XcmV0Response (210) */2197 interface XcmV0Response extends Enum {2163 interface XcmV0Response extends Enum {2198 readonly isAssets: boolean;2164 readonly isAssets: boolean;2199 readonly asAssets: Vec<XcmV0MultiAsset>;2165 readonly asAssets: Vec<XcmV0MultiAsset>;2200 readonly type: 'Assets';2166 readonly type: 'Assets';2201 }2167 }220221682203 /** @name XcmV1Xcm (214) */2169 /** @name XcmV1Xcm (211) */2204 interface XcmV1Xcm extends Enum {2170 interface XcmV1Xcm extends Enum {2205 readonly isWithdrawAsset: boolean;2171 readonly isWithdrawAsset: boolean;2206 readonly asWithdrawAsset: {2172 readonly asWithdrawAsset: {2269 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2235 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2270 }2236 }227122372272 /** @name XcmV1Order (216) */2238 /** @name XcmV1Order (213) */2273 interface XcmV1Order extends Enum {2239 interface XcmV1Order extends Enum {2274 readonly isNoop: boolean;2240 readonly isNoop: boolean;2275 readonly isDepositAsset: boolean;2241 readonly isDepositAsset: boolean;2319 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2285 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2320 }2286 }232122872322 /** @name XcmV1Response (218) */2288 /** @name XcmV1Response (215) */2323 interface XcmV1Response extends Enum {2289 interface XcmV1Response extends Enum {2324 readonly isAssets: boolean;2290 readonly isAssets: boolean;2325 readonly asAssets: XcmV1MultiassetMultiAssets;2291 readonly asAssets: XcmV1MultiassetMultiAssets;2328 readonly type: 'Assets' | 'Version';2294 readonly type: 'Assets' | 'Version';2329 }2295 }233022962331 /** @name CumulusPalletXcmCall (232) */2297 /** @name CumulusPalletXcmCall (229) */2332 type CumulusPalletXcmCall = Null;2298 type CumulusPalletXcmCall = Null;233322992334 /** @name CumulusPalletDmpQueueCall (233) */2300 /** @name CumulusPalletDmpQueueCall (230) */2335 interface CumulusPalletDmpQueueCall extends Enum {2301 interface CumulusPalletDmpQueueCall extends Enum {2336 readonly isServiceOverweight: boolean;2302 readonly isServiceOverweight: boolean;2337 readonly asServiceOverweight: {2303 readonly asServiceOverweight: {2341 readonly type: 'ServiceOverweight';2307 readonly type: 'ServiceOverweight';2342 }2308 }234323092344 /** @name PalletInflationCall (234) */2310 /** @name PalletInflationCall (231) */2345 interface PalletInflationCall extends Enum {2311 interface PalletInflationCall extends Enum {2346 readonly isStartInflation: boolean;2312 readonly isStartInflation: boolean;2347 readonly asStartInflation: {2313 readonly asStartInflation: {2350 readonly type: 'StartInflation';2316 readonly type: 'StartInflation';2351 }2317 }235223182353 /** @name PalletUniqueCall (235) */2319 /** @name PalletUniqueCall (232) */2354 interface PalletUniqueCall extends Enum {2320 interface PalletUniqueCall extends Enum {2355 readonly isCreateCollection: boolean;2321 readonly isCreateCollection: boolean;2356 readonly asCreateCollection: {2322 readonly asCreateCollection: {2508 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';2474 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';2509 }2475 }251024762511 /** @name UpDataStructsCollectionMode (240) */2477 /** @name UpDataStructsCollectionMode (237) */2512 interface UpDataStructsCollectionMode extends Enum {2478 interface UpDataStructsCollectionMode extends Enum {2513 readonly isNft: boolean;2479 readonly isNft: boolean;2514 readonly isFungible: boolean;2480 readonly isFungible: boolean;2517 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2483 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2518 }2484 }251924852520 /** @name UpDataStructsCreateCollectionData (241) */2486 /** @name UpDataStructsCreateCollectionData (238) */2521 interface UpDataStructsCreateCollectionData extends Struct {2487 interface UpDataStructsCreateCollectionData extends Struct {2522 readonly mode: UpDataStructsCollectionMode;2488 readonly mode: UpDataStructsCollectionMode;2523 readonly access: Option<UpDataStructsAccessMode>;2489 readonly access: Option<UpDataStructsAccessMode>;2531 readonly properties: Vec<UpDataStructsProperty>;2497 readonly properties: Vec<UpDataStructsProperty>;2532 }2498 }253324992534 /** @name UpDataStructsAccessMode (243) */2500 /** @name UpDataStructsAccessMode (240) */2535 interface UpDataStructsAccessMode extends Enum {2501 interface UpDataStructsAccessMode extends Enum {2536 readonly isNormal: boolean;2502 readonly isNormal: boolean;2537 readonly isAllowList: boolean;2503 readonly isAllowList: boolean;2538 readonly type: 'Normal' | 'AllowList';2504 readonly type: 'Normal' | 'AllowList';2539 }2505 }254025062541 /** @name UpDataStructsCollectionLimits (245) */2507 /** @name UpDataStructsCollectionLimits (242) */2542 interface UpDataStructsCollectionLimits extends Struct {2508 interface UpDataStructsCollectionLimits extends Struct {2543 readonly accountTokenOwnershipLimit: Option<u32>;2509 readonly accountTokenOwnershipLimit: Option<u32>;2544 readonly sponsoredDataSize: Option<u32>;2510 readonly sponsoredDataSize: Option<u32>;2551 readonly transfersEnabled: Option<bool>;2517 readonly transfersEnabled: Option<bool>;2552 }2518 }255325192554 /** @name UpDataStructsSponsoringRateLimit (247) */2520 /** @name UpDataStructsSponsoringRateLimit (244) */2555 interface UpDataStructsSponsoringRateLimit extends Enum {2521 interface UpDataStructsSponsoringRateLimit extends Enum {2556 readonly isSponsoringDisabled: boolean;2522 readonly isSponsoringDisabled: boolean;2557 readonly isBlocks: boolean;2523 readonly isBlocks: boolean;2558 readonly asBlocks: u32;2524 readonly asBlocks: u32;2559 readonly type: 'SponsoringDisabled' | 'Blocks';2525 readonly type: 'SponsoringDisabled' | 'Blocks';2560 }2526 }256125272562 /** @name UpDataStructsCollectionPermissions (250) */2528 /** @name UpDataStructsCollectionPermissions (247) */2563 interface UpDataStructsCollectionPermissions extends Struct {2529 interface UpDataStructsCollectionPermissions extends Struct {2564 readonly access: Option<UpDataStructsAccessMode>;2530 readonly access: Option<UpDataStructsAccessMode>;2565 readonly mintMode: Option<bool>;2531 readonly mintMode: Option<bool>;2566 readonly nesting: Option<UpDataStructsNestingPermissions>;2532 readonly nesting: Option<UpDataStructsNestingPermissions>;2567 }2533 }256825342569 /** @name UpDataStructsNestingPermissions (252) */2535 /** @name UpDataStructsNestingPermissions (249) */2570 interface UpDataStructsNestingPermissions extends Struct {2536 interface UpDataStructsNestingPermissions extends Struct {2571 readonly tokenOwner: bool;2537 readonly tokenOwner: bool;2572 readonly collectionAdmin: bool;2538 readonly collectionAdmin: bool;2573 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2539 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2574 }2540 }257525412576 /** @name UpDataStructsOwnerRestrictedSet (254) */2542 /** @name UpDataStructsOwnerRestrictedSet (251) */2577 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2543 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}257825442579 /** @name UpDataStructsPropertyKeyPermission (259) */2545 /** @name UpDataStructsPropertyKeyPermission (256) */2580 interface UpDataStructsPropertyKeyPermission extends Struct {2546 interface UpDataStructsPropertyKeyPermission extends Struct {2581 readonly key: Bytes;2547 readonly key: Bytes;2582 readonly permission: UpDataStructsPropertyPermission;2548 readonly permission: UpDataStructsPropertyPermission;2583 }2549 }258425502585 /** @name UpDataStructsPropertyPermission (260) */2551 /** @name UpDataStructsPropertyPermission (257) */2586 interface UpDataStructsPropertyPermission extends Struct {2552 interface UpDataStructsPropertyPermission extends Struct {2587 readonly mutable: bool;2553 readonly mutable: bool;2588 readonly collectionAdmin: bool;2554 readonly collectionAdmin: bool;2589 readonly tokenOwner: bool;2555 readonly tokenOwner: bool;2590 }2556 }259125572592 /** @name UpDataStructsProperty (263) */2558 /** @name UpDataStructsProperty (260) */2593 interface UpDataStructsProperty extends Struct {2559 interface UpDataStructsProperty extends Struct {2594 readonly key: Bytes;2560 readonly key: Bytes;2595 readonly value: Bytes;2561 readonly value: Bytes;2596 }2562 }259725632598 /** @name UpDataStructsCreateItemData (266) */2564 /** @name UpDataStructsCreateItemData (263) */2599 interface UpDataStructsCreateItemData extends Enum {2565 interface UpDataStructsCreateItemData extends Enum {2600 readonly isNft: boolean;2566 readonly isNft: boolean;2601 readonly asNft: UpDataStructsCreateNftData;2567 readonly asNft: UpDataStructsCreateNftData;2606 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2572 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2607 }2573 }260825742609 /** @name UpDataStructsCreateNftData (267) */2575 /** @name UpDataStructsCreateNftData (264) */2610 interface UpDataStructsCreateNftData extends Struct {2576 interface UpDataStructsCreateNftData extends Struct {2611 readonly properties: Vec<UpDataStructsProperty>;2577 readonly properties: Vec<UpDataStructsProperty>;2612 }2578 }261325792614 /** @name UpDataStructsCreateFungibleData (268) */2580 /** @name UpDataStructsCreateFungibleData (265) */2615 interface UpDataStructsCreateFungibleData extends Struct {2581 interface UpDataStructsCreateFungibleData extends Struct {2616 readonly value: u128;2582 readonly value: u128;2617 }2583 }261825842619 /** @name UpDataStructsCreateReFungibleData (269) */2585 /** @name UpDataStructsCreateReFungibleData (266) */2620 interface UpDataStructsCreateReFungibleData extends Struct {2586 interface UpDataStructsCreateReFungibleData extends Struct {2621 readonly pieces: u128;2587 readonly pieces: u128;2622 readonly properties: Vec<UpDataStructsProperty>;2588 readonly properties: Vec<UpDataStructsProperty>;2623 }2589 }262425902625 /** @name UpDataStructsCreateItemExData (272) */2591 /** @name UpDataStructsCreateItemExData (269) */2626 interface UpDataStructsCreateItemExData extends Enum {2592 interface UpDataStructsCreateItemExData extends Enum {2627 readonly isNft: boolean;2593 readonly isNft: boolean;2628 readonly asNft: Vec<UpDataStructsCreateNftExData>;2594 readonly asNft: Vec<UpDataStructsCreateNftExData>;2635 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2601 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2636 }2602 }263726032638 /** @name UpDataStructsCreateNftExData (274) */2604 /** @name UpDataStructsCreateNftExData (271) */2639 interface UpDataStructsCreateNftExData extends Struct {2605 interface UpDataStructsCreateNftExData extends Struct {2640 readonly properties: Vec<UpDataStructsProperty>;2606 readonly properties: Vec<UpDataStructsProperty>;2641 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2607 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2642 }2608 }264326092644 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2610 /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */2645 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2611 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2646 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2612 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2647 readonly pieces: u128;2613 readonly pieces: u128;2648 readonly properties: Vec<UpDataStructsProperty>;2614 readonly properties: Vec<UpDataStructsProperty>;2649 }2615 }265026162651 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2617 /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */2652 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2618 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2653 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2619 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2654 readonly properties: Vec<UpDataStructsProperty>;2620 readonly properties: Vec<UpDataStructsProperty>;2655 }2621 }26562657 /** @name PalletUniqueSchedulerCall (284) */2658 interface PalletUniqueSchedulerCall extends Enum {2659 readonly isScheduleNamed: boolean;2660 readonly asScheduleNamed: {2661 readonly id: U8aFixed;2662 readonly when: u32;2663 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2664 readonly priority: u8;2665 readonly call: FrameSupportScheduleMaybeHashed;2666 } & Struct;2667 readonly isCancelNamed: boolean;2668 readonly asCancelNamed: {2669 readonly id: U8aFixed;2670 } & Struct;2671 readonly isScheduleNamedAfter: boolean;2672 readonly asScheduleNamedAfter: {2673 readonly id: U8aFixed;2674 readonly after: u32;2675 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2676 readonly priority: u8;2677 readonly call: FrameSupportScheduleMaybeHashed;2678 } & Struct;2679 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2680 }26812682 /** @name FrameSupportScheduleMaybeHashed (286) */2683 interface FrameSupportScheduleMaybeHashed extends Enum {2684 readonly isValue: boolean;2685 readonly asValue: Call;2686 readonly isHash: boolean;2687 readonly asHash: H256;2688 readonly type: 'Value' | 'Hash';2689 }269026222691 /** @name PalletConfigurationCall (287) */2623 /** @name PalletConfigurationCall (281) */2692 interface PalletConfigurationCall extends Enum {2624 interface PalletConfigurationCall extends Enum {2693 readonly isSetWeightToFeeCoefficientOverride: boolean;2625 readonly isSetWeightToFeeCoefficientOverride: boolean;2694 readonly asSetWeightToFeeCoefficientOverride: {2626 readonly asSetWeightToFeeCoefficientOverride: {2701 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2633 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2702 }2634 }270326352704 /** @name PalletTemplateTransactionPaymentCall (289) */2636 /** @name PalletTemplateTransactionPaymentCall (283) */2705 type PalletTemplateTransactionPaymentCall = Null;2637 type PalletTemplateTransactionPaymentCall = Null;270626382707 /** @name PalletStructureCall (290) */2639 /** @name PalletStructureCall (284) */2708 type PalletStructureCall = Null;2640 type PalletStructureCall = Null;270926412710 /** @name PalletRmrkCoreCall (291) */2642 /** @name PalletRmrkCoreCall (285) */2711 interface PalletRmrkCoreCall extends Enum {2643 interface PalletRmrkCoreCall extends Enum {2712 readonly isCreateCollection: boolean;2644 readonly isCreateCollection: boolean;2713 readonly asCreateCollection: {2645 readonly asCreateCollection: {2813 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2745 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2814 }2746 }281527472816 /** @name RmrkTraitsResourceResourceTypes (297) */2748 /** @name RmrkTraitsResourceResourceTypes (291) */2817 interface RmrkTraitsResourceResourceTypes extends Enum {2749 interface RmrkTraitsResourceResourceTypes extends Enum {2818 readonly isBasic: boolean;2750 readonly isBasic: boolean;2819 readonly asBasic: RmrkTraitsResourceBasicResource;2751 readonly asBasic: RmrkTraitsResourceBasicResource;2824 readonly type: 'Basic' | 'Composable' | 'Slot';2756 readonly type: 'Basic' | 'Composable' | 'Slot';2825 }2757 }282627582827 /** @name RmrkTraitsResourceBasicResource (299) */2759 /** @name RmrkTraitsResourceBasicResource (293) */2828 interface RmrkTraitsResourceBasicResource extends Struct {2760 interface RmrkTraitsResourceBasicResource extends Struct {2829 readonly src: Option<Bytes>;2761 readonly src: Option<Bytes>;2830 readonly metadata: Option<Bytes>;2762 readonly metadata: Option<Bytes>;2831 readonly license: Option<Bytes>;2763 readonly license: Option<Bytes>;2832 readonly thumb: Option<Bytes>;2764 readonly thumb: Option<Bytes>;2833 }2765 }283427662835 /** @name RmrkTraitsResourceComposableResource (301) */2767 /** @name RmrkTraitsResourceComposableResource (295) */2836 interface RmrkTraitsResourceComposableResource extends Struct {2768 interface RmrkTraitsResourceComposableResource extends Struct {2837 readonly parts: Vec<u32>;2769 readonly parts: Vec<u32>;2838 readonly base: u32;2770 readonly base: u32;2842 readonly thumb: Option<Bytes>;2774 readonly thumb: Option<Bytes>;2843 }2775 }284427762845 /** @name RmrkTraitsResourceSlotResource (302) */2777 /** @name RmrkTraitsResourceSlotResource (296) */2846 interface RmrkTraitsResourceSlotResource extends Struct {2778 interface RmrkTraitsResourceSlotResource extends Struct {2847 readonly base: u32;2779 readonly base: u32;2848 readonly src: Option<Bytes>;2780 readonly src: Option<Bytes>;2852 readonly thumb: Option<Bytes>;2784 readonly thumb: Option<Bytes>;2853 }2785 }285427862855 /** @name PalletRmrkEquipCall (305) */2787 /** @name PalletRmrkEquipCall (299) */2856 interface PalletRmrkEquipCall extends Enum {2788 interface PalletRmrkEquipCall extends Enum {2857 readonly isCreateBase: boolean;2789 readonly isCreateBase: boolean;2858 readonly asCreateBase: {2790 readonly asCreateBase: {2874 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2806 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2875 }2807 }287628082877 /** @name RmrkTraitsPartPartType (308) */2809 /** @name RmrkTraitsPartPartType (302) */2878 interface RmrkTraitsPartPartType extends Enum {2810 interface RmrkTraitsPartPartType extends Enum {2879 readonly isFixedPart: boolean;2811 readonly isFixedPart: boolean;2880 readonly asFixedPart: RmrkTraitsPartFixedPart;2812 readonly asFixedPart: RmrkTraitsPartFixedPart;2883 readonly type: 'FixedPart' | 'SlotPart';2815 readonly type: 'FixedPart' | 'SlotPart';2884 }2816 }288528172886 /** @name RmrkTraitsPartFixedPart (310) */2818 /** @name RmrkTraitsPartFixedPart (304) */2887 interface RmrkTraitsPartFixedPart extends Struct {2819 interface RmrkTraitsPartFixedPart extends Struct {2888 readonly id: u32;2820 readonly id: u32;2889 readonly z: u32;2821 readonly z: u32;2890 readonly src: Bytes;2822 readonly src: Bytes;2891 }2823 }289228242893 /** @name RmrkTraitsPartSlotPart (311) */2825 /** @name RmrkTraitsPartSlotPart (305) */2894 interface RmrkTraitsPartSlotPart extends Struct {2826 interface RmrkTraitsPartSlotPart extends Struct {2895 readonly id: u32;2827 readonly id: u32;2896 readonly equippable: RmrkTraitsPartEquippableList;2828 readonly equippable: RmrkTraitsPartEquippableList;2897 readonly src: Bytes;2829 readonly src: Bytes;2898 readonly z: u32;2830 readonly z: u32;2899 }2831 }290028322901 /** @name RmrkTraitsPartEquippableList (312) */2833 /** @name RmrkTraitsPartEquippableList (306) */2902 interface RmrkTraitsPartEquippableList extends Enum {2834 interface RmrkTraitsPartEquippableList extends Enum {2903 readonly isAll: boolean;2835 readonly isAll: boolean;2904 readonly isEmpty: boolean;2836 readonly isEmpty: boolean;2907 readonly type: 'All' | 'Empty' | 'Custom';2839 readonly type: 'All' | 'Empty' | 'Custom';2908 }2840 }290928412910 /** @name RmrkTraitsTheme (314) */2842 /** @name RmrkTraitsTheme (308) */2911 interface RmrkTraitsTheme extends Struct {2843 interface RmrkTraitsTheme extends Struct {2912 readonly name: Bytes;2844 readonly name: Bytes;2913 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2845 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2914 readonly inherit: bool;2846 readonly inherit: bool;2915 }2847 }291628482917 /** @name RmrkTraitsThemeThemeProperty (316) */2849 /** @name RmrkTraitsThemeThemeProperty (310) */2918 interface RmrkTraitsThemeThemeProperty extends Struct {2850 interface RmrkTraitsThemeThemeProperty extends Struct {2919 readonly key: Bytes;2851 readonly key: Bytes;2920 readonly value: Bytes;2852 readonly value: Bytes;2921 }2853 }292228542923 /** @name PalletAppPromotionCall (318) */2855 /** @name PalletAppPromotionCall (312) */2924 interface PalletAppPromotionCall extends Enum {2856 interface PalletAppPromotionCall extends Enum {2925 readonly isSetAdminAddress: boolean;2857 readonly isSetAdminAddress: boolean;2926 readonly asSetAdminAddress: {2858 readonly asSetAdminAddress: {2954 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2886 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2955 }2887 }295628882957 /** @name PalletForeignAssetsModuleCall (320) */2889 /** @name PalletForeignAssetsModuleCall (314) */2958 interface PalletForeignAssetsModuleCall extends Enum {2890 interface PalletForeignAssetsModuleCall extends Enum {2959 readonly isRegisterForeignAsset: boolean;2891 readonly isRegisterForeignAsset: boolean;2960 readonly asRegisterForeignAsset: {2892 readonly asRegisterForeignAsset: {2971 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2903 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2972 }2904 }297329052974 /** @name PalletEvmCall (321) */2906 /** @name PalletEvmCall (315) */2975 interface PalletEvmCall extends Enum {2907 interface PalletEvmCall extends Enum {2976 readonly isWithdraw: boolean;2908 readonly isWithdraw: boolean;2977 readonly asWithdraw: {2909 readonly asWithdraw: {3016 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2948 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3017 }2949 }301829503019 /** @name PalletEthereumCall (325) */2951 /** @name PalletEthereumCall (319) */3020 interface PalletEthereumCall extends Enum {2952 interface PalletEthereumCall extends Enum {3021 readonly isTransact: boolean;2953 readonly isTransact: boolean;3022 readonly asTransact: {2954 readonly asTransact: {3025 readonly type: 'Transact';2957 readonly type: 'Transact';3026 }2958 }302729593028 /** @name EthereumTransactionTransactionV2 (326) */2960 /** @name EthereumTransactionTransactionV2 (320) */3029 interface EthereumTransactionTransactionV2 extends Enum {2961 interface EthereumTransactionTransactionV2 extends Enum {3030 readonly isLegacy: boolean;2962 readonly isLegacy: boolean;3031 readonly asLegacy: EthereumTransactionLegacyTransaction;2963 readonly asLegacy: EthereumTransactionLegacyTransaction;3036 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2968 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3037 }2969 }303829703039 /** @name EthereumTransactionLegacyTransaction (327) */2971 /** @name EthereumTransactionLegacyTransaction (321) */3040 interface EthereumTransactionLegacyTransaction extends Struct {2972 interface EthereumTransactionLegacyTransaction extends Struct {3041 readonly nonce: U256;2973 readonly nonce: U256;3042 readonly gasPrice: U256;2974 readonly gasPrice: U256;3047 readonly signature: EthereumTransactionTransactionSignature;2979 readonly signature: EthereumTransactionTransactionSignature;3048 }2980 }304929813050 /** @name EthereumTransactionTransactionAction (328) */2982 /** @name EthereumTransactionTransactionAction (322) */3051 interface EthereumTransactionTransactionAction extends Enum {2983 interface EthereumTransactionTransactionAction extends Enum {3052 readonly isCall: boolean;2984 readonly isCall: boolean;3053 readonly asCall: H160;2985 readonly asCall: H160;3054 readonly isCreate: boolean;2986 readonly isCreate: boolean;3055 readonly type: 'Call' | 'Create';2987 readonly type: 'Call' | 'Create';3056 }2988 }305729893058 /** @name EthereumTransactionTransactionSignature (329) */2990 /** @name EthereumTransactionTransactionSignature (323) */3059 interface EthereumTransactionTransactionSignature extends Struct {2991 interface EthereumTransactionTransactionSignature extends Struct {3060 readonly v: u64;2992 readonly v: u64;3061 readonly r: H256;2993 readonly r: H256;3062 readonly s: H256;2994 readonly s: H256;3063 }2995 }306429963065 /** @name EthereumTransactionEip2930Transaction (331) */2997 /** @name EthereumTransactionEip2930Transaction (325) */3066 interface EthereumTransactionEip2930Transaction extends Struct {2998 interface EthereumTransactionEip2930Transaction extends Struct {3067 readonly chainId: u64;2999 readonly chainId: u64;3068 readonly nonce: U256;3000 readonly nonce: U256;3077 readonly s: H256;3009 readonly s: H256;3078 }3010 }307930113080 /** @name EthereumTransactionAccessListItem (333) */3012 /** @name EthereumTransactionAccessListItem (327) */3081 interface EthereumTransactionAccessListItem extends Struct {3013 interface EthereumTransactionAccessListItem extends Struct {3082 readonly address: H160;3014 readonly address: H160;3083 readonly storageKeys: Vec<H256>;3015 readonly storageKeys: Vec<H256>;3084 }3016 }308530173086 /** @name EthereumTransactionEip1559Transaction (334) */3018 /** @name EthereumTransactionEip1559Transaction (328) */3087 interface EthereumTransactionEip1559Transaction extends Struct {3019 interface EthereumTransactionEip1559Transaction extends Struct {3088 readonly chainId: u64;3020 readonly chainId: u64;3089 readonly nonce: U256;3021 readonly nonce: U256;3099 readonly s: H256;3031 readonly s: H256;3100 }3032 }310130333102 /** @name PalletEvmMigrationCall (335) */3034 /** @name PalletEvmMigrationCall (329) */3103 interface PalletEvmMigrationCall extends Enum {3035 interface PalletEvmMigrationCall extends Enum {3104 readonly isBegin: boolean;3036 readonly isBegin: boolean;3105 readonly asBegin: {3037 readonly asBegin: {3118 readonly type: 'Begin' | 'SetData' | 'Finish';3050 readonly type: 'Begin' | 'SetData' | 'Finish';3119 }3051 }312030523121 /** @name PalletSudoError (338) */3053 /** @name PalletSudoError (332) */3122 interface PalletSudoError extends Enum {3054 interface PalletSudoError extends Enum {3123 readonly isRequireSudo: boolean;3055 readonly isRequireSudo: boolean;3124 readonly type: 'RequireSudo';3056 readonly type: 'RequireSudo';3125 }3057 }312630583127 /** @name OrmlVestingModuleError (340) */3059 /** @name OrmlVestingModuleError (334) */3128 interface OrmlVestingModuleError extends Enum {3060 interface OrmlVestingModuleError extends Enum {3129 readonly isZeroVestingPeriod: boolean;3061 readonly isZeroVestingPeriod: boolean;3130 readonly isZeroVestingPeriodCount: boolean;3062 readonly isZeroVestingPeriodCount: boolean;3135 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3067 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3136 }3068 }313730693138 /** @name OrmlXtokensModuleError (341) */3070 /** @name OrmlXtokensModuleError (335) */3139 interface OrmlXtokensModuleError extends Enum {3071 interface OrmlXtokensModuleError extends Enum {3140 readonly isAssetHasNoReserve: boolean;3072 readonly isAssetHasNoReserve: boolean;3141 readonly isNotCrossChainTransfer: boolean;3073 readonly isNotCrossChainTransfer: boolean;3159 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3091 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3160 }3092 }316130933162 /** @name OrmlTokensBalanceLock (344) */3094 /** @name OrmlTokensBalanceLock (338) */3163 interface OrmlTokensBalanceLock extends Struct {3095 interface OrmlTokensBalanceLock extends Struct {3164 readonly id: U8aFixed;3096 readonly id: U8aFixed;3165 readonly amount: u128;3097 readonly amount: u128;3166 }3098 }316730993168 /** @name OrmlTokensAccountData (346) */3100 /** @name OrmlTokensAccountData (340) */3169 interface OrmlTokensAccountData extends Struct {3101 interface OrmlTokensAccountData extends Struct {3170 readonly free: u128;3102 readonly free: u128;3171 readonly reserved: u128;3103 readonly reserved: u128;3172 readonly frozen: u128;3104 readonly frozen: u128;3173 }3105 }317431063175 /** @name OrmlTokensReserveData (348) */3107 /** @name OrmlTokensReserveData (342) */3176 interface OrmlTokensReserveData extends Struct {3108 interface OrmlTokensReserveData extends Struct {3177 readonly id: Null;3109 readonly id: Null;3178 readonly amount: u128;3110 readonly amount: u128;3179 }3111 }318031123181 /** @name OrmlTokensModuleError (350) */3113 /** @name OrmlTokensModuleError (344) */3182 interface OrmlTokensModuleError extends Enum {3114 interface OrmlTokensModuleError extends Enum {3183 readonly isBalanceTooLow: boolean;3115 readonly isBalanceTooLow: boolean;3184 readonly isAmountIntoBalanceFailed: boolean;3116 readonly isAmountIntoBalanceFailed: boolean;3191 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3123 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3192 }3124 }319331253194 /** @name CumulusPalletXcmpQueueInboundChannelDetails (352) */3126 /** @name CumulusPalletXcmpQueueInboundChannelDetails (346) */3195 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3127 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3196 readonly sender: u32;3128 readonly sender: u32;3197 readonly state: CumulusPalletXcmpQueueInboundState;3129 readonly state: CumulusPalletXcmpQueueInboundState;3198 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3130 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3199 }3131 }320031323201 /** @name CumulusPalletXcmpQueueInboundState (353) */3133 /** @name CumulusPalletXcmpQueueInboundState (347) */3202 interface CumulusPalletXcmpQueueInboundState extends Enum {3134 interface CumulusPalletXcmpQueueInboundState extends Enum {3203 readonly isOk: boolean;3135 readonly isOk: boolean;3204 readonly isSuspended: boolean;3136 readonly isSuspended: boolean;3205 readonly type: 'Ok' | 'Suspended';3137 readonly type: 'Ok' | 'Suspended';3206 }3138 }320731393208 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (356) */3140 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (350) */3209 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3141 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3210 readonly isConcatenatedVersionedXcm: boolean;3142 readonly isConcatenatedVersionedXcm: boolean;3211 readonly isConcatenatedEncodedBlob: boolean;3143 readonly isConcatenatedEncodedBlob: boolean;3212 readonly isSignals: boolean;3144 readonly isSignals: boolean;3213 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3145 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3214 }3146 }321531473216 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (359) */3148 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (353) */3217 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3149 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3218 readonly recipient: u32;3150 readonly recipient: u32;3219 readonly state: CumulusPalletXcmpQueueOutboundState;3151 readonly state: CumulusPalletXcmpQueueOutboundState;3222 readonly lastIndex: u16;3154 readonly lastIndex: u16;3223 }3155 }322431563225 /** @name CumulusPalletXcmpQueueOutboundState (360) */3157 /** @name CumulusPalletXcmpQueueOutboundState (354) */3226 interface CumulusPalletXcmpQueueOutboundState extends Enum {3158 interface CumulusPalletXcmpQueueOutboundState extends Enum {3227 readonly isOk: boolean;3159 readonly isOk: boolean;3228 readonly isSuspended: boolean;3160 readonly isSuspended: boolean;3229 readonly type: 'Ok' | 'Suspended';3161 readonly type: 'Ok' | 'Suspended';3230 }3162 }323131633232 /** @name CumulusPalletXcmpQueueQueueConfigData (362) */3164 /** @name CumulusPalletXcmpQueueQueueConfigData (356) */3233 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3165 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3234 readonly suspendThreshold: u32;3166 readonly suspendThreshold: u32;3235 readonly dropThreshold: u32;3167 readonly dropThreshold: u32;3239 readonly xcmpMaxIndividualWeight: Weight;3171 readonly xcmpMaxIndividualWeight: Weight;3240 }3172 }324131733242 /** @name CumulusPalletXcmpQueueError (364) */3174 /** @name CumulusPalletXcmpQueueError (358) */3243 interface CumulusPalletXcmpQueueError extends Enum {3175 interface CumulusPalletXcmpQueueError extends Enum {3244 readonly isFailedToSend: boolean;3176 readonly isFailedToSend: boolean;3245 readonly isBadXcmOrigin: boolean;3177 readonly isBadXcmOrigin: boolean;3249 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3181 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3250 }3182 }325131833252 /** @name PalletXcmError (365) */3184 /** @name PalletXcmError (359) */3253 interface PalletXcmError extends Enum {3185 interface PalletXcmError extends Enum {3254 readonly isUnreachable: boolean;3186 readonly isUnreachable: boolean;3255 readonly isSendFailure: boolean;3187 readonly isSendFailure: boolean;3267 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3199 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3268 }3200 }326932013270 /** @name CumulusPalletXcmError (366) */3202 /** @name CumulusPalletXcmError (360) */3271 type CumulusPalletXcmError = Null;3203 type CumulusPalletXcmError = Null;327232043273 /** @name CumulusPalletDmpQueueConfigData (367) */3205 /** @name CumulusPalletDmpQueueConfigData (361) */3274 interface CumulusPalletDmpQueueConfigData extends Struct {3206 interface CumulusPalletDmpQueueConfigData extends Struct {3275 readonly maxIndividual: Weight;3207 readonly maxIndividual: Weight;3276 }3208 }327732093278 /** @name CumulusPalletDmpQueuePageIndexData (368) */3210 /** @name CumulusPalletDmpQueuePageIndexData (362) */3279 interface CumulusPalletDmpQueuePageIndexData extends Struct {3211 interface CumulusPalletDmpQueuePageIndexData extends Struct {3280 readonly beginUsed: u32;3212 readonly beginUsed: u32;3281 readonly endUsed: u32;3213 readonly endUsed: u32;3282 readonly overweightCount: u64;3214 readonly overweightCount: u64;3283 }3215 }328432163285 /** @name CumulusPalletDmpQueueError (371) */3217 /** @name CumulusPalletDmpQueueError (365) */3286 interface CumulusPalletDmpQueueError extends Enum {3218 interface CumulusPalletDmpQueueError extends Enum {3287 readonly isUnknown: boolean;3219 readonly isUnknown: boolean;3288 readonly isOverLimit: boolean;3220 readonly isOverLimit: boolean;3289 readonly type: 'Unknown' | 'OverLimit';3221 readonly type: 'Unknown' | 'OverLimit';3290 }3222 }329132233292 /** @name PalletUniqueError (375) */3224 /** @name PalletUniqueError (369) */3293 interface PalletUniqueError extends Enum {3225 interface PalletUniqueError extends Enum {3294 readonly isCollectionDecimalPointLimitExceeded: boolean;3226 readonly isCollectionDecimalPointLimitExceeded: boolean;3295 readonly isConfirmUnsetSponsorFail: boolean;3227 readonly isConfirmUnsetSponsorFail: boolean;3298 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3230 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3299 }3231 }33003301 /** @name PalletUniqueSchedulerScheduledV3 (378) */3302 interface PalletUniqueSchedulerScheduledV3 extends Struct {3303 readonly maybeId: Option<U8aFixed>;3304 readonly priority: u8;3305 readonly call: FrameSupportScheduleMaybeHashed;3306 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3307 readonly origin: OpalRuntimeOriginCaller;3308 }33093310 /** @name OpalRuntimeOriginCaller (379) */3311 interface OpalRuntimeOriginCaller extends Enum {3312 readonly isSystem: boolean;3313 readonly asSystem: FrameSupportDispatchRawOrigin;3314 readonly isVoid: boolean;3315 readonly isPolkadotXcm: boolean;3316 readonly asPolkadotXcm: PalletXcmOrigin;3317 readonly isCumulusXcm: boolean;3318 readonly asCumulusXcm: CumulusPalletXcmOrigin;3319 readonly isEthereum: boolean;3320 readonly asEthereum: PalletEthereumRawOrigin;3321 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3322 }33233324 /** @name FrameSupportDispatchRawOrigin (380) */3325 interface FrameSupportDispatchRawOrigin extends Enum {3326 readonly isRoot: boolean;3327 readonly isSigned: boolean;3328 readonly asSigned: AccountId32;3329 readonly isNone: boolean;3330 readonly type: 'Root' | 'Signed' | 'None';3331 }33323333 /** @name PalletXcmOrigin (381) */3334 interface PalletXcmOrigin extends Enum {3335 readonly isXcm: boolean;3336 readonly asXcm: XcmV1MultiLocation;3337 readonly isResponse: boolean;3338 readonly asResponse: XcmV1MultiLocation;3339 readonly type: 'Xcm' | 'Response';3340 }33413342 /** @name CumulusPalletXcmOrigin (382) */3343 interface CumulusPalletXcmOrigin extends Enum {3344 readonly isRelay: boolean;3345 readonly isSiblingParachain: boolean;3346 readonly asSiblingParachain: u32;3347 readonly type: 'Relay' | 'SiblingParachain';3348 }33493350 /** @name PalletEthereumRawOrigin (383) */3351 interface PalletEthereumRawOrigin extends Enum {3352 readonly isEthereumTransaction: boolean;3353 readonly asEthereumTransaction: H160;3354 readonly type: 'EthereumTransaction';3355 }33563357 /** @name SpCoreVoid (384) */3358 type SpCoreVoid = Null;33593360 /** @name PalletUniqueSchedulerError (385) */3361 interface PalletUniqueSchedulerError extends Enum {3362 readonly isFailedToSchedule: boolean;3363 readonly isNotFound: boolean;3364 readonly isTargetBlockNumberInPast: boolean;3365 readonly isRescheduleNoChange: boolean;3366 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3367 }336832323369 /** @name UpDataStructsCollection (386) */3233 /** @name UpDataStructsCollection (370) */3370 interface UpDataStructsCollection extends Struct {3234 interface UpDataStructsCollection extends Struct {3371 readonly owner: AccountId32;3235 readonly owner: AccountId32;3372 readonly mode: UpDataStructsCollectionMode;3236 readonly mode: UpDataStructsCollectionMode;3379 readonly flags: U8aFixed;3243 readonly flags: U8aFixed;3380 }3244 }338132453382 /** @name UpDataStructsSponsorshipStateAccountId32 (387) */3246 /** @name UpDataStructsSponsorshipStateAccountId32 (371) */3383 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3247 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3384 readonly isDisabled: boolean;3248 readonly isDisabled: boolean;3385 readonly isUnconfirmed: boolean;3249 readonly isUnconfirmed: boolean;3389 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3253 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3390 }3254 }339132553392 /** @name UpDataStructsProperties (389) */3256 /** @name UpDataStructsProperties (373) */3393 interface UpDataStructsProperties extends Struct {3257 interface UpDataStructsProperties extends Struct {3394 readonly map: UpDataStructsPropertiesMapBoundedVec;3258 readonly map: UpDataStructsPropertiesMapBoundedVec;3395 readonly consumedSpace: u32;3259 readonly consumedSpace: u32;3396 readonly spaceLimit: u32;3260 readonly spaceLimit: u32;3397 }3261 }339832623399 /** @name UpDataStructsPropertiesMapBoundedVec (390) */3263 /** @name UpDataStructsPropertiesMapBoundedVec (374) */3400 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3264 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}340132653402 /** @name UpDataStructsPropertiesMapPropertyPermission (395) */3266 /** @name UpDataStructsPropertiesMapPropertyPermission (379) */3403 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3267 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}340432683405 /** @name UpDataStructsCollectionStats (402) */3269 /** @name UpDataStructsCollectionStats (386) */3406 interface UpDataStructsCollectionStats extends Struct {3270 interface UpDataStructsCollectionStats extends Struct {3407 readonly created: u32;3271 readonly created: u32;3408 readonly destroyed: u32;3272 readonly destroyed: u32;3409 readonly alive: u32;3273 readonly alive: u32;3410 }3274 }341132753412 /** @name UpDataStructsTokenChild (403) */3276 /** @name UpDataStructsTokenChild (387) */3413 interface UpDataStructsTokenChild extends Struct {3277 interface UpDataStructsTokenChild extends Struct {3414 readonly token: u32;3278 readonly token: u32;3415 readonly collection: u32;3279 readonly collection: u32;3416 }3280 }341732813418 /** @name PhantomTypeUpDataStructs (404) */3282 /** @name PhantomTypeUpDataStructs (388) */3419 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3283 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}342032843421 /** @name UpDataStructsTokenData (406) */3285 /** @name UpDataStructsTokenData (390) */3422 interface UpDataStructsTokenData extends Struct {3286 interface UpDataStructsTokenData extends Struct {3423 readonly properties: Vec<UpDataStructsProperty>;3287 readonly properties: Vec<UpDataStructsProperty>;3424 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3288 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3425 readonly pieces: u128;3289 readonly pieces: u128;3426 }3290 }342732913428 /** @name UpDataStructsRpcCollection (408) */3292 /** @name UpDataStructsRpcCollection (392) */3429 interface UpDataStructsRpcCollection extends Struct {3293 interface UpDataStructsRpcCollection extends Struct {3430 readonly owner: AccountId32;3294 readonly owner: AccountId32;3431 readonly mode: UpDataStructsCollectionMode;3295 readonly mode: UpDataStructsCollectionMode;3441 readonly flags: UpDataStructsRpcCollectionFlags;3305 readonly flags: UpDataStructsRpcCollectionFlags;3442 }3306 }344333073444 /** @name UpDataStructsRpcCollectionFlags (409) */3308 /** @name UpDataStructsRpcCollectionFlags (393) */3445 interface UpDataStructsRpcCollectionFlags extends Struct {3309 interface UpDataStructsRpcCollectionFlags extends Struct {3446 readonly foreign: bool;3310 readonly foreign: bool;3447 readonly erc721metadata: bool;3311 readonly erc721metadata: bool;3448 }3312 }344933133450 /** @name RmrkTraitsCollectionCollectionInfo (410) */3314 /** @name RmrkTraitsCollectionCollectionInfo (394) */3451 interface RmrkTraitsCollectionCollectionInfo extends Struct {3315 interface RmrkTraitsCollectionCollectionInfo extends Struct {3452 readonly issuer: AccountId32;3316 readonly issuer: AccountId32;3453 readonly metadata: Bytes;3317 readonly metadata: Bytes;3456 readonly nftsCount: u32;3320 readonly nftsCount: u32;3457 }3321 }345833223459 /** @name RmrkTraitsNftNftInfo (411) */3323 /** @name RmrkTraitsNftNftInfo (395) */3460 interface RmrkTraitsNftNftInfo extends Struct {3324 interface RmrkTraitsNftNftInfo extends Struct {3461 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3325 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3462 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3326 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3465 readonly pending: bool;3329 readonly pending: bool;3466 }3330 }346733313468 /** @name RmrkTraitsNftRoyaltyInfo (413) */3332 /** @name RmrkTraitsNftRoyaltyInfo (397) */3469 interface RmrkTraitsNftRoyaltyInfo extends Struct {3333 interface RmrkTraitsNftRoyaltyInfo extends Struct {3470 readonly recipient: AccountId32;3334 readonly recipient: AccountId32;3471 readonly amount: Permill;3335 readonly amount: Permill;3472 }3336 }347333373474 /** @name RmrkTraitsResourceResourceInfo (414) */3338 /** @name RmrkTraitsResourceResourceInfo (398) */3475 interface RmrkTraitsResourceResourceInfo extends Struct {3339 interface RmrkTraitsResourceResourceInfo extends Struct {3476 readonly id: u32;3340 readonly id: u32;3477 readonly resource: RmrkTraitsResourceResourceTypes;3341 readonly resource: RmrkTraitsResourceResourceTypes;3478 readonly pending: bool;3342 readonly pending: bool;3479 readonly pendingRemoval: bool;3343 readonly pendingRemoval: bool;3480 }3344 }348133453482 /** @name RmrkTraitsPropertyPropertyInfo (415) */3346 /** @name RmrkTraitsPropertyPropertyInfo (399) */3483 interface RmrkTraitsPropertyPropertyInfo extends Struct {3347 interface RmrkTraitsPropertyPropertyInfo extends Struct {3484 readonly key: Bytes;3348 readonly key: Bytes;3485 readonly value: Bytes;3349 readonly value: Bytes;3486 }3350 }348733513488 /** @name RmrkTraitsBaseBaseInfo (416) */3352 /** @name RmrkTraitsBaseBaseInfo (400) */3489 interface RmrkTraitsBaseBaseInfo extends Struct {3353 interface RmrkTraitsBaseBaseInfo extends Struct {3490 readonly issuer: AccountId32;3354 readonly issuer: AccountId32;3491 readonly baseType: Bytes;3355 readonly baseType: Bytes;3492 readonly symbol: Bytes;3356 readonly symbol: Bytes;3493 }3357 }349433583495 /** @name RmrkTraitsNftNftChild (417) */3359 /** @name RmrkTraitsNftNftChild (401) */3496 interface RmrkTraitsNftNftChild extends Struct {3360 interface RmrkTraitsNftNftChild extends Struct {3497 readonly collectionId: u32;3361 readonly collectionId: u32;3498 readonly nftId: u32;3362 readonly nftId: u32;3499 }3363 }350033643501 /** @name PalletCommonError (419) */3365 /** @name PalletCommonError (403) */3502 interface PalletCommonError extends Enum {3366 interface PalletCommonError extends Enum {3503 readonly isCollectionNotFound: boolean;3367 readonly isCollectionNotFound: boolean;3504 readonly isMustBeTokenOwner: boolean;3368 readonly isMustBeTokenOwner: boolean;3537 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';3401 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';3538 }3402 }353934033540 /** @name PalletFungibleError (421) */3404 /** @name PalletFungibleError (405) */3541 interface PalletFungibleError extends Enum {3405 interface PalletFungibleError extends Enum {3542 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3406 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3543 readonly isFungibleItemsHaveNoId: boolean;3407 readonly isFungibleItemsHaveNoId: boolean;3547 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3411 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3548 }3412 }354934133550 /** @name PalletRefungibleItemData (422) */3414 /** @name PalletRefungibleItemData (406) */3551 interface PalletRefungibleItemData extends Struct {3415 interface PalletRefungibleItemData extends Struct {3552 readonly constData: Bytes;3416 readonly constData: Bytes;3553 }3417 }355434183555 /** @name PalletRefungibleError (427) */3419 /** @name PalletRefungibleError (411) */3556 interface PalletRefungibleError extends Enum {3420 interface PalletRefungibleError extends Enum {3557 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3421 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3558 readonly isWrongRefungiblePieces: boolean;3422 readonly isWrongRefungiblePieces: boolean;3562 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3426 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3563 }3427 }356434283565 /** @name PalletNonfungibleItemData (428) */3429 /** @name PalletNonfungibleItemData (412) */3566 interface PalletNonfungibleItemData extends Struct {3430 interface PalletNonfungibleItemData extends Struct {3567 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3431 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3568 }3432 }356934333570 /** @name UpDataStructsPropertyScope (430) */3434 /** @name UpDataStructsPropertyScope (414) */3571 interface UpDataStructsPropertyScope extends Enum {3435 interface UpDataStructsPropertyScope extends Enum {3572 readonly isNone: boolean;3436 readonly isNone: boolean;3573 readonly isRmrk: boolean;3437 readonly isRmrk: boolean;3574 readonly type: 'None' | 'Rmrk';3438 readonly type: 'None' | 'Rmrk';3575 }3439 }357634403577 /** @name PalletNonfungibleError (432) */3441 /** @name PalletNonfungibleError (416) */3578 interface PalletNonfungibleError extends Enum {3442 interface PalletNonfungibleError extends Enum {3579 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3443 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3580 readonly isNonfungibleItemsHaveNoAmount: boolean;3444 readonly isNonfungibleItemsHaveNoAmount: boolean;3581 readonly isCantBurnNftWithChildren: boolean;3445 readonly isCantBurnNftWithChildren: boolean;3582 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3446 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3583 }3447 }358434483585 /** @name PalletStructureError (433) */3449 /** @name PalletStructureError (417) */3586 interface PalletStructureError extends Enum {3450 interface PalletStructureError extends Enum {3587 readonly isOuroborosDetected: boolean;3451 readonly isOuroborosDetected: boolean;3588 readonly isDepthLimit: boolean;3452 readonly isDepthLimit: boolean;3591 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3455 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3592 }3456 }359334573594 /** @name PalletRmrkCoreError (434) */3458 /** @name PalletRmrkCoreError (418) */3595 interface PalletRmrkCoreError extends Enum {3459 interface PalletRmrkCoreError extends Enum {3596 readonly isCorruptedCollectionType: boolean;3460 readonly isCorruptedCollectionType: boolean;3597 readonly isRmrkPropertyKeyIsTooLong: boolean;3461 readonly isRmrkPropertyKeyIsTooLong: boolean;3615 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3479 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3616 }3480 }361734813618 /** @name PalletRmrkEquipError (436) */3482 /** @name PalletRmrkEquipError (420) */3619 interface PalletRmrkEquipError extends Enum {3483 interface PalletRmrkEquipError extends Enum {3620 readonly isPermissionError: boolean;3484 readonly isPermissionError: boolean;3621 readonly isNoAvailableBaseId: boolean;3485 readonly isNoAvailableBaseId: boolean;3627 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3491 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3628 }3492 }362934933630 /** @name PalletAppPromotionError (442) */3494 /** @name PalletAppPromotionError (426) */3631 interface PalletAppPromotionError extends Enum {3495 interface PalletAppPromotionError extends Enum {3632 readonly isAdminNotSet: boolean;3496 readonly isAdminNotSet: boolean;3633 readonly isNoPermission: boolean;3497 readonly isNoPermission: boolean;3638 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3502 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3639 }3503 }364035043641 /** @name PalletForeignAssetsModuleError (443) */3505 /** @name PalletForeignAssetsModuleError (427) */3642 interface PalletForeignAssetsModuleError extends Enum {3506 interface PalletForeignAssetsModuleError extends Enum {3643 readonly isBadLocation: boolean;3507 readonly isBadLocation: boolean;3644 readonly isMultiLocationExisted: boolean;3508 readonly isMultiLocationExisted: boolean;3647 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3511 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3648 }3512 }364935133650 /** @name PalletEvmError (446) */3514 /** @name PalletEvmError (430) */3651 interface PalletEvmError extends Enum {3515 interface PalletEvmError extends Enum {3652 readonly isBalanceLow: boolean;3516 readonly isBalanceLow: boolean;3653 readonly isFeeOverflow: boolean;3517 readonly isFeeOverflow: boolean;3658 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3522 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3659 }3523 }366035243661 /** @name FpRpcTransactionStatus (449) */3525 /** @name FpRpcTransactionStatus (433) */3662 interface FpRpcTransactionStatus extends Struct {3526 interface FpRpcTransactionStatus extends Struct {3663 readonly transactionHash: H256;3527 readonly transactionHash: H256;3664 readonly transactionIndex: u32;3528 readonly transactionIndex: u32;3669 readonly logsBloom: EthbloomBloom;3533 readonly logsBloom: EthbloomBloom;3670 }3534 }367135353672 /** @name EthbloomBloom (451) */3536 /** @name EthbloomBloom (435) */3673 interface EthbloomBloom extends U8aFixed {}3537 interface EthbloomBloom extends U8aFixed {}367435383675 /** @name EthereumReceiptReceiptV3 (453) */3539 /** @name EthereumReceiptReceiptV3 (437) */3676 interface EthereumReceiptReceiptV3 extends Enum {3540 interface EthereumReceiptReceiptV3 extends Enum {3677 readonly isLegacy: boolean;3541 readonly isLegacy: boolean;3678 readonly asLegacy: EthereumReceiptEip658ReceiptData;3542 readonly asLegacy: EthereumReceiptEip658ReceiptData;3683 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3547 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3684 }3548 }368535493686 /** @name EthereumReceiptEip658ReceiptData (454) */3550 /** @name EthereumReceiptEip658ReceiptData (438) */3687 interface EthereumReceiptEip658ReceiptData extends Struct {3551 interface EthereumReceiptEip658ReceiptData extends Struct {3688 readonly statusCode: u8;3552 readonly statusCode: u8;3689 readonly usedGas: U256;3553 readonly usedGas: U256;3690 readonly logsBloom: EthbloomBloom;3554 readonly logsBloom: EthbloomBloom;3691 readonly logs: Vec<EthereumLog>;3555 readonly logs: Vec<EthereumLog>;3692 }3556 }369335573694 /** @name EthereumBlock (455) */3558 /** @name EthereumBlock (439) */3695 interface EthereumBlock extends Struct {3559 interface EthereumBlock extends Struct {3696 readonly header: EthereumHeader;3560 readonly header: EthereumHeader;3697 readonly transactions: Vec<EthereumTransactionTransactionV2>;3561 readonly transactions: Vec<EthereumTransactionTransactionV2>;3698 readonly ommers: Vec<EthereumHeader>;3562 readonly ommers: Vec<EthereumHeader>;3699 }3563 }370035643701 /** @name EthereumHeader (456) */3565 /** @name EthereumHeader (440) */3702 interface EthereumHeader extends Struct {3566 interface EthereumHeader extends Struct {3703 readonly parentHash: H256;3567 readonly parentHash: H256;3704 readonly ommersHash: H256;3568 readonly ommersHash: H256;3717 readonly nonce: EthereumTypesHashH64;3581 readonly nonce: EthereumTypesHashH64;3718 }3582 }371935833720 /** @name EthereumTypesHashH64 (457) */3584 /** @name EthereumTypesHashH64 (441) */3721 interface EthereumTypesHashH64 extends U8aFixed {}3585 interface EthereumTypesHashH64 extends U8aFixed {}372235863723 /** @name PalletEthereumError (462) */3587 /** @name PalletEthereumError (446) */3724 interface PalletEthereumError extends Enum {3588 interface PalletEthereumError extends Enum {3725 readonly isInvalidSignature: boolean;3589 readonly isInvalidSignature: boolean;3726 readonly isPreLogExists: boolean;3590 readonly isPreLogExists: boolean;3727 readonly type: 'InvalidSignature' | 'PreLogExists';3591 readonly type: 'InvalidSignature' | 'PreLogExists';3728 }3592 }372935933730 /** @name PalletEvmCoderSubstrateError (463) */3594 /** @name PalletEvmCoderSubstrateError (447) */3731 interface PalletEvmCoderSubstrateError extends Enum {3595 interface PalletEvmCoderSubstrateError extends Enum {3732 readonly isOutOfGas: boolean;3596 readonly isOutOfGas: boolean;3733 readonly isOutOfFund: boolean;3597 readonly isOutOfFund: boolean;3734 readonly type: 'OutOfGas' | 'OutOfFund';3598 readonly type: 'OutOfGas' | 'OutOfFund';3735 }3599 }373636003737 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (464) */3601 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (448) */3738 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3602 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3739 readonly isDisabled: boolean;3603 readonly isDisabled: boolean;3740 readonly isUnconfirmed: boolean;3604 readonly isUnconfirmed: boolean;3744 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3608 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3745 }3609 }374636103747 /** @name PalletEvmContractHelpersSponsoringModeT (465) */3611 /** @name PalletEvmContractHelpersSponsoringModeT (449) */3748 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3612 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3749 readonly isDisabled: boolean;3613 readonly isDisabled: boolean;3750 readonly isAllowlisted: boolean;3614 readonly isAllowlisted: boolean;3751 readonly isGenerous: boolean;3615 readonly isGenerous: boolean;3752 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3616 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3753 }3617 }375436183755 /** @name PalletEvmContractHelpersError (471) */3619 /** @name PalletEvmContractHelpersError (455) */3756 interface PalletEvmContractHelpersError extends Enum {3620 interface PalletEvmContractHelpersError extends Enum {3757 readonly isNoPermission: boolean;3621 readonly isNoPermission: boolean;3758 readonly isNoPendingSponsor: boolean;3622 readonly isNoPendingSponsor: boolean;3759 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3623 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3760 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3624 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3761 }3625 }376236263763 /** @name PalletEvmMigrationError (472) */3627 /** @name PalletEvmMigrationError (456) */3764 interface PalletEvmMigrationError extends Enum {3628 interface PalletEvmMigrationError extends Enum {3765 readonly isAccountNotEmpty: boolean;3629 readonly isAccountNotEmpty: boolean;3766 readonly isAccountIsNotMigrating: boolean;3630 readonly isAccountIsNotMigrating: boolean;3767 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3631 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3768 }3632 }376936333770 /** @name SpRuntimeMultiSignature (474) */3634 /** @name SpRuntimeMultiSignature (458) */3771 interface SpRuntimeMultiSignature extends Enum {3635 interface SpRuntimeMultiSignature extends Enum {3772 readonly isEd25519: boolean;3636 readonly isEd25519: boolean;3773 readonly asEd25519: SpCoreEd25519Signature;3637 readonly asEd25519: SpCoreEd25519Signature;3778 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3642 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3779 }3643 }378036443781 /** @name SpCoreEd25519Signature (475) */3645 /** @name SpCoreEd25519Signature (459) */3782 interface SpCoreEd25519Signature extends U8aFixed {}3646 interface SpCoreEd25519Signature extends U8aFixed {}378336473784 /** @name SpCoreSr25519Signature (477) */3648 /** @name SpCoreSr25519Signature (461) */3785 interface SpCoreSr25519Signature extends U8aFixed {}3649 interface SpCoreSr25519Signature extends U8aFixed {}378636503787 /** @name SpCoreEcdsaSignature (478) */3651 /** @name SpCoreEcdsaSignature (462) */3788 interface SpCoreEcdsaSignature extends U8aFixed {}3652 interface SpCoreEcdsaSignature extends U8aFixed {}378936533790 /** @name FrameSystemExtensionsCheckSpecVersion (481) */3654 /** @name FrameSystemExtensionsCheckSpecVersion (465) */3791 type FrameSystemExtensionsCheckSpecVersion = Null;3655 type FrameSystemExtensionsCheckSpecVersion = Null;379236563793 /** @name FrameSystemExtensionsCheckTxVersion (482) */3657 /** @name FrameSystemExtensionsCheckTxVersion (466) */3794 type FrameSystemExtensionsCheckTxVersion = Null;3658 type FrameSystemExtensionsCheckTxVersion = Null;379536593796 /** @name FrameSystemExtensionsCheckGenesis (483) */3660 /** @name FrameSystemExtensionsCheckGenesis (467) */3797 type FrameSystemExtensionsCheckGenesis = Null;3661 type FrameSystemExtensionsCheckGenesis = Null;379836623799 /** @name FrameSystemExtensionsCheckNonce (486) */3663 /** @name FrameSystemExtensionsCheckNonce (470) */3800 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3664 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}380136653802 /** @name FrameSystemExtensionsCheckWeight (487) */3666 /** @name FrameSystemExtensionsCheckWeight (471) */3803 type FrameSystemExtensionsCheckWeight = Null;3667 type FrameSystemExtensionsCheckWeight = Null;380436683805 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (488) */3669 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (472) */3806 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3670 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}380736713808 /** @name OpalRuntimeRuntime (489) */3672 /** @name OpalRuntimeRuntime (473) */3809 type OpalRuntimeRuntime = Null;3673 type OpalRuntimeRuntime = Null;381036743811 /** @name PalletEthereumFakeTransactionFinalizer (490) */3675 /** @name PalletEthereumFakeTransactionFinalizer (474) */3812 type PalletEthereumFakeTransactionFinalizer = Null;3676 type PalletEthereumFakeTransactionFinalizer = Null;381336773814} // declare module3678} // declare moduletests/update_types.shdiffbeforeafterboth--- a/tests/update_types.sh
+++ b/tests/update_types.sh
@@ -12,8 +12,3 @@
for file in unique-types-js/augment-* unique-types-js/**/types.ts unique-types-js/registry.ts; do
sed -i '1s;^;//@ts-nocheck\n;' $file
done
-
-pushd unique-types-js
-git add .
-git commit -m "chore: regenerate types"
-popd