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.tsdiffbeforeafterboth23 miscFrozen: 'u128',23 miscFrozen: 'u128',24 feeFrozen: 'u128'24 feeFrozen: 'u128'25 },25 },26 /**26 /**27 * Lookup7: frame_support::weights::PerDispatchClass<frame_support::weights::weight_v2::Weight>27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28 **/28 **/29 FrameSupportWeightsPerDispatchClassWeight: {29 FrameSupportDispatchPerDispatchClassWeight: {30 normal: 'Weight',30 normal: 'Weight',31 operational: 'Weight',31 operational: 'Weight',32 mandatory: 'Weight'32 mandatory: 'Weight'53 RuntimeEnvironmentUpdated: 'Null'53 RuntimeEnvironmentUpdated: 'Null'54 }54 }55 },55 },56 /**56 /**57 * Lookup17: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>57 * Lookup17: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>58 **/58 **/59 FrameSystemEventRecord: {59 FrameSystemEventRecord: {60 phase: 'FrameSystemPhase',60 phase: 'FrameSystemPhase',61 event: 'Event',61 event: 'Event',67 FrameSystemEvent: {67 FrameSystemEvent: {68 _enum: {68 _enum: {69 ExtrinsicSuccess: {69 ExtrinsicSuccess: {70 dispatchInfo: 'FrameSupportWeightsDispatchInfo',70 dispatchInfo: 'FrameSupportDispatchDispatchInfo',71 },71 },72 ExtrinsicFailed: {72 ExtrinsicFailed: {73 dispatchError: 'SpRuntimeDispatchError',73 dispatchError: 'SpRuntimeDispatchError',74 dispatchInfo: 'FrameSupportWeightsDispatchInfo',74 dispatchInfo: 'FrameSupportDispatchDispatchInfo',75 },75 },76 CodeUpdated: 'Null',76 CodeUpdated: 'Null',77 NewAccount: {77 NewAccount: {89 }89 }90 }90 }91 },91 },92 /**92 /**93 * Lookup20: frame_support::weights::DispatchInfo93 * Lookup20: frame_support::dispatch::DispatchInfo94 **/94 **/95 FrameSupportWeightsDispatchInfo: {95 FrameSupportDispatchDispatchInfo: {96 weight: 'Weight',96 weight: 'Weight',97 class: 'FrameSupportWeightsDispatchClass',97 class: 'FrameSupportDispatchDispatchClass',98 paysFee: 'FrameSupportWeightsPays'98 paysFee: 'FrameSupportDispatchPays'99 },99 },100 /**100 /**101 * Lookup21: frame_support::weights::DispatchClass101 * Lookup21: frame_support::dispatch::DispatchClass102 **/102 **/103 FrameSupportWeightsDispatchClass: {103 FrameSupportDispatchDispatchClass: {104 _enum: ['Normal', 'Operational', 'Mandatory']104 _enum: ['Normal', 'Operational', 'Mandatory']105 },105 },106 /**106 /**107 * Lookup22: frame_support::weights::Pays107 * Lookup22: frame_support::dispatch::Pays108 **/108 **/109 FrameSupportWeightsPays: {109 FrameSupportDispatchPays: {110 _enum: ['Yes', 'No']110 _enum: ['Yes', 'No']111 },111 },112 /**112 /**673 Error: 'XcmV2TraitsError'673 Error: 'XcmV2TraitsError'674 }674 }675 },675 },676 /**676 /**677 * Lookup68: xcm::v2::Xcm<Call>677 * Lookup68: xcm::v2::Xcm<RuntimeCall>678 **/678 **/679 XcmV2Xcm: 'Vec<XcmV2Instruction>',679 XcmV2Xcm: 'Vec<XcmV2Instruction>',680 /**680 /**681 * Lookup70: xcm::v2::Instruction<Call>681 * Lookup70: xcm::v2::Instruction<RuntimeCall>682 **/682 **/683 XcmV2Instruction: {683 XcmV2Instruction: {684 _enum: {684 _enum: {685 WithdrawAsset: 'XcmV1MultiassetMultiAssets',685 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1003 Ethereum: 'H160'1003 Ethereum: 'H160'1004 }1004 }1005 },1005 },1006 /**1007 * Lookup93: pallet_unique_scheduler::pallet::Event<T>1008 **/1009 PalletUniqueSchedulerEvent: {1010 _enum: {1011 Scheduled: {1012 when: 'u32',1013 index: 'u32',1014 },1015 Canceled: {1016 when: 'u32',1017 index: 'u32',1018 },1019 Dispatched: {1020 task: '(u32,u32)',1021 id: 'Option<[u8;16]>',1022 result: 'Result<Null, SpRuntimeDispatchError>',1023 },1024 CallLookupFailed: {1025 task: '(u32,u32)',1026 id: 'Option<[u8;16]>',1027 error: 'FrameSupportScheduleLookupError'1028 }1029 }1030 },1031 /**1032 * Lookup96: frame_support::traits::schedule::LookupError1033 **/1034 FrameSupportScheduleLookupError: {1035 _enum: ['Unknown', 'BadFormat']1036 },1037 /**1006 /**1038 * Lookup97: pallet_common::pallet::Event<T>1007 * Lookup93: pallet_common::pallet::Event<T>1039 **/1008 **/1040 PalletCommonEvent: {1009 PalletCommonEvent: {1041 _enum: {1010 _enum: {1042 CollectionCreated: '(u32,u8,AccountId32)',1011 CollectionCreated: '(u32,u8,AccountId32)',1052 PropertyPermissionSet: '(u32,Bytes)'1021 PropertyPermissionSet: '(u32,Bytes)'1053 }1022 }1054 },1023 },1055 /**1024 /**1056 * Lookup100: pallet_structure::pallet::Event<T>1025 * Lookup96: pallet_structure::pallet::Event<T>1057 **/1026 **/1058 PalletStructureEvent: {1027 PalletStructureEvent: {1059 _enum: {1028 _enum: {1060 Executed: 'Result<Null, SpRuntimeDispatchError>'1029 Executed: 'Result<Null, SpRuntimeDispatchError>'1061 }1030 }1062 },1031 },1063 /**1032 /**1064 * Lookup101: pallet_rmrk_core::pallet::Event<T>1033 * Lookup97: pallet_rmrk_core::pallet::Event<T>1065 **/1034 **/1066 PalletRmrkCoreEvent: {1035 PalletRmrkCoreEvent: {1067 _enum: {1036 _enum: {1068 CollectionCreated: {1037 CollectionCreated: {1137 }1106 }1138 }1107 }1139 },1108 },1140 /**1109 /**1141 * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1110 * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1142 **/1111 **/1143 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1112 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1144 _enum: {1113 _enum: {1145 AccountId: 'AccountId32',1114 AccountId: 'AccountId32',1146 CollectionAndNftTuple: '(u32,u32)'1115 CollectionAndNftTuple: '(u32,u32)'1147 }1116 }1148 },1117 },1149 /**1118 /**1150 * Lookup107: pallet_rmrk_equip::pallet::Event<T>1119 * Lookup103: pallet_rmrk_equip::pallet::Event<T>1151 **/1120 **/1152 PalletRmrkEquipEvent: {1121 PalletRmrkEquipEvent: {1153 _enum: {1122 _enum: {1154 BaseCreated: {1123 BaseCreated: {1161 }1130 }1162 }1131 }1163 },1132 },1164 /**1133 /**1165 * Lookup108: pallet_app_promotion::pallet::Event<T>1134 * Lookup104: pallet_app_promotion::pallet::Event<T>1166 **/1135 **/1167 PalletAppPromotionEvent: {1136 PalletAppPromotionEvent: {1168 _enum: {1137 _enum: {1169 StakingRecalculation: '(AccountId32,u128,u128)',1138 StakingRecalculation: '(AccountId32,u128,u128)',1172 SetAdmin: 'AccountId32'1141 SetAdmin: 'AccountId32'1173 }1142 }1174 },1143 },1175 /**1144 /**1176 * Lookup109: pallet_foreign_assets::module::Event<T>1145 * Lookup105: pallet_foreign_assets::module::Event<T>1177 **/1146 **/1178 PalletForeignAssetsModuleEvent: {1147 PalletForeignAssetsModuleEvent: {1179 _enum: {1148 _enum: {1180 ForeignAssetRegistered: {1149 ForeignAssetRegistered: {1197 }1166 }1198 }1167 }1199 },1168 },1200 /**1169 /**1201 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1170 * Lookup106: pallet_foreign_assets::module::AssetMetadata<Balance>1202 **/1171 **/1203 PalletForeignAssetsModuleAssetMetadata: {1172 PalletForeignAssetsModuleAssetMetadata: {1204 name: 'Bytes',1173 name: 'Bytes',1205 symbol: 'Bytes',1174 symbol: 'Bytes',1206 decimals: 'u8',1175 decimals: 'u8',1207 minimalBalance: 'u128'1176 minimalBalance: 'u128'1208 },1177 },1209 /**1178 /**1210 * Lookup111: pallet_evm::pallet::Event<T>1179 * Lookup107: pallet_evm::pallet::Event<T>1211 **/1180 **/1212 PalletEvmEvent: {1181 PalletEvmEvent: {1213 _enum: {1182 _enum: {1214 Log: 'EthereumLog',1183 Log: 'EthereumLog',1220 BalanceWithdraw: '(AccountId32,H160,U256)'1189 BalanceWithdraw: '(AccountId32,H160,U256)'1221 }1190 }1222 },1191 },1223 /**1192 /**1224 * Lookup112: ethereum::log::Log1193 * Lookup108: ethereum::log::Log1225 **/1194 **/1226 EthereumLog: {1195 EthereumLog: {1227 address: 'H160',1196 address: 'H160',1228 topics: 'Vec<H256>',1197 topics: 'Vec<H256>',1229 data: 'Bytes'1198 data: 'Bytes'1230 },1199 },1231 /**1200 /**1232 * Lookup116: pallet_ethereum::pallet::Event1201 * Lookup112: pallet_ethereum::pallet::Event1233 **/1202 **/1234 PalletEthereumEvent: {1203 PalletEthereumEvent: {1235 _enum: {1204 _enum: {1236 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1205 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1237 }1206 }1238 },1207 },1239 /**1208 /**1240 * Lookup117: evm_core::error::ExitReason1209 * Lookup113: evm_core::error::ExitReason1241 **/1210 **/1242 EvmCoreErrorExitReason: {1211 EvmCoreErrorExitReason: {1243 _enum: {1212 _enum: {1244 Succeed: 'EvmCoreErrorExitSucceed',1213 Succeed: 'EvmCoreErrorExitSucceed',1247 Fatal: 'EvmCoreErrorExitFatal'1216 Fatal: 'EvmCoreErrorExitFatal'1248 }1217 }1249 },1218 },1250 /**1219 /**1251 * Lookup118: evm_core::error::ExitSucceed1220 * Lookup114: evm_core::error::ExitSucceed1252 **/1221 **/1253 EvmCoreErrorExitSucceed: {1222 EvmCoreErrorExitSucceed: {1254 _enum: ['Stopped', 'Returned', 'Suicided']1223 _enum: ['Stopped', 'Returned', 'Suicided']1255 },1224 },1256 /**1225 /**1257 * Lookup119: evm_core::error::ExitError1226 * Lookup115: evm_core::error::ExitError1258 **/1227 **/1259 EvmCoreErrorExitError: {1228 EvmCoreErrorExitError: {1260 _enum: {1229 _enum: {1261 StackUnderflow: 'Null',1230 StackUnderflow: 'Null',1275 InvalidCode: 'Null'1244 InvalidCode: 'Null'1276 }1245 }1277 },1246 },1278 /**1247 /**1279 * Lookup122: evm_core::error::ExitRevert1248 * Lookup118: evm_core::error::ExitRevert1280 **/1249 **/1281 EvmCoreErrorExitRevert: {1250 EvmCoreErrorExitRevert: {1282 _enum: ['Reverted']1251 _enum: ['Reverted']1283 },1252 },1284 /**1253 /**1285 * Lookup123: evm_core::error::ExitFatal1254 * Lookup119: evm_core::error::ExitFatal1286 **/1255 **/1287 EvmCoreErrorExitFatal: {1256 EvmCoreErrorExitFatal: {1288 _enum: {1257 _enum: {1289 NotSupported: 'Null',1258 NotSupported: 'Null',1292 Other: 'Text'1261 Other: 'Text'1293 }1262 }1294 },1263 },1295 /**1264 /**1296 * Lookup124: pallet_evm_contract_helpers::pallet::Event<T>1265 * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>1297 **/1266 **/1298 PalletEvmContractHelpersEvent: {1267 PalletEvmContractHelpersEvent: {1299 _enum: {1268 _enum: {1300 ContractSponsorSet: '(H160,AccountId32)',1269 ContractSponsorSet: '(H160,AccountId32)',1301 ContractSponsorshipConfirmed: '(H160,AccountId32)',1270 ContractSponsorshipConfirmed: '(H160,AccountId32)',1302 ContractSponsorRemoved: 'H160'1271 ContractSponsorRemoved: 'H160'1303 }1272 }1304 },1273 },1305 /**1274 /**1306 * Lookup125: frame_system::Phase1275 * Lookup121: frame_system::Phase1307 **/1276 **/1308 FrameSystemPhase: {1277 FrameSystemPhase: {1309 _enum: {1278 _enum: {1310 ApplyExtrinsic: 'u32',1279 ApplyExtrinsic: 'u32',1311 Finalization: 'Null',1280 Finalization: 'Null',1312 Initialization: 'Null'1281 Initialization: 'Null'1313 }1282 }1314 },1283 },1315 /**1284 /**1316 * Lookup127: frame_system::LastRuntimeUpgradeInfo1285 * Lookup124: frame_system::LastRuntimeUpgradeInfo1317 **/1286 **/1318 FrameSystemLastRuntimeUpgradeInfo: {1287 FrameSystemLastRuntimeUpgradeInfo: {1319 specVersion: 'Compact<u32>',1288 specVersion: 'Compact<u32>',1320 specName: 'Text'1289 specName: 'Text'1321 },1290 },1322 /**1291 /**1323 * Lookup128: frame_system::pallet::Call<T>1292 * Lookup125: frame_system::pallet::Call<T>1324 **/1293 **/1325 FrameSystemCall: {1294 FrameSystemCall: {1326 _enum: {1295 _enum: {1327 fill_block: {1296 fill_block: {1357 }1326 }1358 }1327 }1359 },1328 },1360 /**1329 /**1361 * Lookup133: frame_system::limits::BlockWeights1330 * Lookup130: frame_system::limits::BlockWeights1362 **/1331 **/1363 FrameSystemLimitsBlockWeights: {1332 FrameSystemLimitsBlockWeights: {1364 baseBlock: 'Weight',1333 baseBlock: 'Weight',1365 maxBlock: 'Weight',1334 maxBlock: 'Weight',1366 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'1335 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1367 },1336 },1368 /**1337 /**1369 * Lookup134: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>1338 * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1370 **/1339 **/1371 FrameSupportWeightsPerDispatchClassWeightsPerClass: {1340 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1372 normal: 'FrameSystemLimitsWeightsPerClass',1341 normal: 'FrameSystemLimitsWeightsPerClass',1373 operational: 'FrameSystemLimitsWeightsPerClass',1342 operational: 'FrameSystemLimitsWeightsPerClass',1374 mandatory: 'FrameSystemLimitsWeightsPerClass'1343 mandatory: 'FrameSystemLimitsWeightsPerClass'1375 },1344 },1376 /**1345 /**1377 * Lookup135: frame_system::limits::WeightsPerClass1346 * Lookup132: frame_system::limits::WeightsPerClass1378 **/1347 **/1379 FrameSystemLimitsWeightsPerClass: {1348 FrameSystemLimitsWeightsPerClass: {1380 baseExtrinsic: 'Weight',1349 baseExtrinsic: 'Weight',1381 maxExtrinsic: 'Option<Weight>',1350 maxExtrinsic: 'Option<Weight>',1382 maxTotal: 'Option<Weight>',1351 maxTotal: 'Option<Weight>',1383 reserved: 'Option<Weight>'1352 reserved: 'Option<Weight>'1384 },1353 },1385 /**1354 /**1386 * Lookup137: frame_system::limits::BlockLength1355 * Lookup134: frame_system::limits::BlockLength1387 **/1356 **/1388 FrameSystemLimitsBlockLength: {1357 FrameSystemLimitsBlockLength: {1389 max: 'FrameSupportWeightsPerDispatchClassU32'1358 max: 'FrameSupportDispatchPerDispatchClassU32'1390 },1359 },1391 /**1360 /**1392 * Lookup138: frame_support::weights::PerDispatchClass<T>1361 * Lookup135: frame_support::dispatch::PerDispatchClass<T>1393 **/1362 **/1394 FrameSupportWeightsPerDispatchClassU32: {1363 FrameSupportDispatchPerDispatchClassU32: {1395 normal: 'u32',1364 normal: 'u32',1396 operational: 'u32',1365 operational: 'u32',1397 mandatory: 'u32'1366 mandatory: 'u32'1398 },1367 },1399 /**1368 /**1400 * Lookup139: frame_support::weights::RuntimeDbWeight1369 * Lookup136: sp_weights::RuntimeDbWeight1401 **/1370 **/1402 FrameSupportWeightsRuntimeDbWeight: {1371 SpWeightsRuntimeDbWeight: {1403 read: 'u64',1372 read: 'u64',1404 write: 'u64'1373 write: 'u64'1405 },1374 },1406 /**1375 /**1407 * Lookup140: sp_version::RuntimeVersion1376 * Lookup137: sp_version::RuntimeVersion1408 **/1377 **/1409 SpVersionRuntimeVersion: {1378 SpVersionRuntimeVersion: {1410 specName: 'Text',1379 specName: 'Text',1411 implName: 'Text',1380 implName: 'Text',1416 transactionVersion: 'u32',1385 transactionVersion: 'u32',1417 stateVersion: 'u8'1386 stateVersion: 'u8'1418 },1387 },1419 /**1388 /**1420 * Lookup145: frame_system::pallet::Error<T>1389 * Lookup142: frame_system::pallet::Error<T>1421 **/1390 **/1422 FrameSystemError: {1391 FrameSystemError: {1423 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1392 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1424 },1393 },1425 /**1394 /**1426 * Lookup146: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1395 * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1427 **/1396 **/1428 PolkadotPrimitivesV2PersistedValidationData: {1397 PolkadotPrimitivesV2PersistedValidationData: {1429 parentHead: 'Bytes',1398 parentHead: 'Bytes',1430 relayParentNumber: 'u32',1399 relayParentNumber: 'u32',1431 relayParentStorageRoot: 'H256',1400 relayParentStorageRoot: 'H256',1432 maxPovSize: 'u32'1401 maxPovSize: 'u32'1433 },1402 },1434 /**1403 /**1435 * Lookup149: polkadot_primitives::v2::UpgradeRestriction1404 * Lookup146: polkadot_primitives::v2::UpgradeRestriction1436 **/1405 **/1437 PolkadotPrimitivesV2UpgradeRestriction: {1406 PolkadotPrimitivesV2UpgradeRestriction: {1438 _enum: ['Present']1407 _enum: ['Present']1439 },1408 },1440 /**1409 /**1441 * Lookup150: sp_trie::storage_proof::StorageProof1410 * Lookup147: sp_trie::storage_proof::StorageProof1442 **/1411 **/1443 SpTrieStorageProof: {1412 SpTrieStorageProof: {1444 trieNodes: 'BTreeSet<Bytes>'1413 trieNodes: 'BTreeSet<Bytes>'1445 },1414 },1446 /**1415 /**1447 * Lookup152: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1416 * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1448 **/1417 **/1449 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1418 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1450 dmqMqcHead: 'H256',1419 dmqMqcHead: 'H256',1451 relayDispatchQueueSize: '(u32,u32)',1420 relayDispatchQueueSize: '(u32,u32)',1452 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1421 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1453 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1422 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1454 },1423 },1455 /**1424 /**1456 * Lookup155: polkadot_primitives::v2::AbridgedHrmpChannel1425 * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel1457 **/1426 **/1458 PolkadotPrimitivesV2AbridgedHrmpChannel: {1427 PolkadotPrimitivesV2AbridgedHrmpChannel: {1459 maxCapacity: 'u32',1428 maxCapacity: 'u32',1460 maxTotalSize: 'u32',1429 maxTotalSize: 'u32',1463 totalSize: 'u32',1432 totalSize: 'u32',1464 mqcHead: 'Option<H256>'1433 mqcHead: 'Option<H256>'1465 },1434 },1466 /**1435 /**1467 * Lookup156: polkadot_primitives::v2::AbridgedHostConfiguration1436 * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration1468 **/1437 **/1469 PolkadotPrimitivesV2AbridgedHostConfiguration: {1438 PolkadotPrimitivesV2AbridgedHostConfiguration: {1470 maxCodeSize: 'u32',1439 maxCodeSize: 'u32',1471 maxHeadDataSize: 'u32',1440 maxHeadDataSize: 'u32',1477 validationUpgradeCooldown: 'u32',1446 validationUpgradeCooldown: 'u32',1478 validationUpgradeDelay: 'u32'1447 validationUpgradeDelay: 'u32'1479 },1448 },1480 /**1449 /**1481 * Lookup162: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1450 * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1482 **/1451 **/1483 PolkadotCorePrimitivesOutboundHrmpMessage: {1452 PolkadotCorePrimitivesOutboundHrmpMessage: {1484 recipient: 'u32',1453 recipient: 'u32',1485 data: 'Bytes'1454 data: 'Bytes'1486 },1455 },1487 /**1456 /**1488 * Lookup163: cumulus_pallet_parachain_system::pallet::Call<T>1457 * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>1489 **/1458 **/1490 CumulusPalletParachainSystemCall: {1459 CumulusPalletParachainSystemCall: {1491 _enum: {1460 _enum: {1492 set_validation_data: {1461 set_validation_data: {1503 }1472 }1504 }1473 }1505 },1474 },1506 /**1475 /**1507 * Lookup164: cumulus_primitives_parachain_inherent::ParachainInherentData1476 * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData1508 **/1477 **/1509 CumulusPrimitivesParachainInherentParachainInherentData: {1478 CumulusPrimitivesParachainInherentParachainInherentData: {1510 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1479 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1511 relayChainState: 'SpTrieStorageProof',1480 relayChainState: 'SpTrieStorageProof',1512 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1481 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1513 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1482 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1514 },1483 },1515 /**1484 /**1516 * Lookup166: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1485 * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1517 **/1486 **/1518 PolkadotCorePrimitivesInboundDownwardMessage: {1487 PolkadotCorePrimitivesInboundDownwardMessage: {1519 sentAt: 'u32',1488 sentAt: 'u32',1520 msg: 'Bytes'1489 msg: 'Bytes'1521 },1490 },1522 /**1491 /**1523 * Lookup169: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1492 * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1524 **/1493 **/1525 PolkadotCorePrimitivesInboundHrmpMessage: {1494 PolkadotCorePrimitivesInboundHrmpMessage: {1526 sentAt: 'u32',1495 sentAt: 'u32',1527 data: 'Bytes'1496 data: 'Bytes'1528 },1497 },1529 /**1498 /**1530 * Lookup172: cumulus_pallet_parachain_system::pallet::Error<T>1499 * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>1531 **/1500 **/1532 CumulusPalletParachainSystemError: {1501 CumulusPalletParachainSystemError: {1533 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1502 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1534 },1503 },1535 /**1504 /**1536 * Lookup174: pallet_balances::BalanceLock<Balance>1505 * Lookup171: pallet_balances::BalanceLock<Balance>1537 **/1506 **/1538 PalletBalancesBalanceLock: {1507 PalletBalancesBalanceLock: {1539 id: '[u8;8]',1508 id: '[u8;8]',1540 amount: 'u128',1509 amount: 'u128',1541 reasons: 'PalletBalancesReasons'1510 reasons: 'PalletBalancesReasons'1542 },1511 },1543 /**1512 /**1544 * Lookup175: pallet_balances::Reasons1513 * Lookup172: pallet_balances::Reasons1545 **/1514 **/1546 PalletBalancesReasons: {1515 PalletBalancesReasons: {1547 _enum: ['Fee', 'Misc', 'All']1516 _enum: ['Fee', 'Misc', 'All']1548 },1517 },1549 /**1518 /**1550 * Lookup178: pallet_balances::ReserveData<ReserveIdentifier, Balance>1519 * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>1551 **/1520 **/1552 PalletBalancesReserveData: {1521 PalletBalancesReserveData: {1553 id: '[u8;16]',1522 id: '[u8;16]',1554 amount: 'u128'1523 amount: 'u128'1555 },1524 },1556 /**1525 /**1557 * Lookup180: pallet_balances::Releases1526 * Lookup177: pallet_balances::Releases1558 **/1527 **/1559 PalletBalancesReleases: {1528 PalletBalancesReleases: {1560 _enum: ['V1_0_0', 'V2_0_0']1529 _enum: ['V1_0_0', 'V2_0_0']1561 },1530 },1562 /**1531 /**1563 * Lookup181: pallet_balances::pallet::Call<T, I>1532 * Lookup178: pallet_balances::pallet::Call<T, I>1564 **/1533 **/1565 PalletBalancesCall: {1534 PalletBalancesCall: {1566 _enum: {1535 _enum: {1567 transfer: {1536 transfer: {1592 }1561 }1593 }1562 }1594 },1563 },1595 /**1564 /**1596 * Lookup184: pallet_balances::pallet::Error<T, I>1565 * Lookup181: pallet_balances::pallet::Error<T, I>1597 **/1566 **/1598 PalletBalancesError: {1567 PalletBalancesError: {1599 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1568 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1600 },1569 },1601 /**1570 /**1602 * Lookup186: pallet_timestamp::pallet::Call<T>1571 * Lookup183: pallet_timestamp::pallet::Call<T>1603 **/1572 **/1604 PalletTimestampCall: {1573 PalletTimestampCall: {1605 _enum: {1574 _enum: {1606 set: {1575 set: {1607 now: 'Compact<u64>'1576 now: 'Compact<u64>'1608 }1577 }1609 }1578 }1610 },1579 },1611 /**1580 /**1612 * Lookup188: pallet_transaction_payment::Releases1581 * Lookup185: pallet_transaction_payment::Releases1613 **/1582 **/1614 PalletTransactionPaymentReleases: {1583 PalletTransactionPaymentReleases: {1615 _enum: ['V1Ancient', 'V2']1584 _enum: ['V1Ancient', 'V2']1616 },1585 },1617 /**1586 /**1618 * Lookup189: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1587 * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1619 **/1588 **/1620 PalletTreasuryProposal: {1589 PalletTreasuryProposal: {1621 proposer: 'AccountId32',1590 proposer: 'AccountId32',1622 value: 'u128',1591 value: 'u128',1623 beneficiary: 'AccountId32',1592 beneficiary: 'AccountId32',1624 bond: 'u128'1593 bond: 'u128'1625 },1594 },1626 /**1595 /**1627 * Lookup192: pallet_treasury::pallet::Call<T, I>1596 * Lookup189: pallet_treasury::pallet::Call<T, I>1628 **/1597 **/1629 PalletTreasuryCall: {1598 PalletTreasuryCall: {1630 _enum: {1599 _enum: {1631 propose_spend: {1600 propose_spend: {1647 }1616 }1648 }1617 }1649 },1618 },1650 /**1619 /**1651 * Lookup195: frame_support::PalletId1620 * Lookup192: frame_support::PalletId1652 **/1621 **/1653 FrameSupportPalletId: '[u8;8]',1622 FrameSupportPalletId: '[u8;8]',1654 /**1623 /**1655 * Lookup196: pallet_treasury::pallet::Error<T, I>1624 * Lookup193: pallet_treasury::pallet::Error<T, I>1656 **/1625 **/1657 PalletTreasuryError: {1626 PalletTreasuryError: {1658 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1627 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1659 },1628 },1660 /**1629 /**1661 * Lookup197: pallet_sudo::pallet::Call<T>1630 * Lookup194: pallet_sudo::pallet::Call<T>1662 **/1631 **/1663 PalletSudoCall: {1632 PalletSudoCall: {1664 _enum: {1633 _enum: {1665 sudo: {1634 sudo: {1681 }1650 }1682 }1651 }1683 },1652 },1684 /**1653 /**1685 * Lookup199: orml_vesting::module::Call<T>1654 * Lookup196: orml_vesting::module::Call<T>1686 **/1655 **/1687 OrmlVestingModuleCall: {1656 OrmlVestingModuleCall: {1688 _enum: {1657 _enum: {1689 claim: 'Null',1658 claim: 'Null',1700 }1669 }1701 }1670 }1702 },1671 },1703 /**1672 /**1704 * Lookup201: orml_xtokens::module::Call<T>1673 * Lookup198: orml_xtokens::module::Call<T>1705 **/1674 **/1706 OrmlXtokensModuleCall: {1675 OrmlXtokensModuleCall: {1707 _enum: {1676 _enum: {1708 transfer: {1677 transfer: {1743 }1712 }1744 }1713 }1745 },1714 },1746 /**1715 /**1747 * Lookup202: xcm::VersionedMultiAsset1716 * Lookup199: xcm::VersionedMultiAsset1748 **/1717 **/1749 XcmVersionedMultiAsset: {1718 XcmVersionedMultiAsset: {1750 _enum: {1719 _enum: {1751 V0: 'XcmV0MultiAsset',1720 V0: 'XcmV0MultiAsset',1752 V1: 'XcmV1MultiAsset'1721 V1: 'XcmV1MultiAsset'1753 }1722 }1754 },1723 },1755 /**1724 /**1756 * Lookup205: orml_tokens::module::Call<T>1725 * Lookup202: orml_tokens::module::Call<T>1757 **/1726 **/1758 OrmlTokensModuleCall: {1727 OrmlTokensModuleCall: {1759 _enum: {1728 _enum: {1760 transfer: {1729 transfer: {1786 }1755 }1787 }1756 }1788 },1757 },1789 /**1758 /**1790 * Lookup206: cumulus_pallet_xcmp_queue::pallet::Call<T>1759 * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>1791 **/1760 **/1792 CumulusPalletXcmpQueueCall: {1761 CumulusPalletXcmpQueueCall: {1793 _enum: {1762 _enum: {1794 service_overweight: {1763 service_overweight: {1835 }1804 }1836 }1805 }1837 },1806 },1838 /**1807 /**1839 * Lookup207: pallet_xcm::pallet::Call<T>1808 * Lookup204: pallet_xcm::pallet::Call<T>1840 **/1809 **/1841 PalletXcmCall: {1810 PalletXcmCall: {1842 _enum: {1811 _enum: {1843 send: {1812 send: {1889 }1858 }1890 }1859 }1891 },1860 },1892 /**1861 /**1893 * Lookup208: xcm::VersionedXcm<Call>1862 * Lookup205: xcm::VersionedXcm<RuntimeCall>1894 **/1863 **/1895 XcmVersionedXcm: {1864 XcmVersionedXcm: {1896 _enum: {1865 _enum: {1897 V0: 'XcmV0Xcm',1866 V0: 'XcmV0Xcm',1898 V1: 'XcmV1Xcm',1867 V1: 'XcmV1Xcm',1899 V2: 'XcmV2Xcm'1868 V2: 'XcmV2Xcm'1900 }1869 }1901 },1870 },1902 /**1871 /**1903 * Lookup209: xcm::v0::Xcm<Call>1872 * Lookup206: xcm::v0::Xcm<RuntimeCall>1904 **/1873 **/1905 XcmV0Xcm: {1874 XcmV0Xcm: {1906 _enum: {1875 _enum: {1907 WithdrawAsset: {1876 WithdrawAsset: {1953 }1922 }1954 }1923 }1955 },1924 },1956 /**1925 /**1957 * Lookup211: xcm::v0::order::Order<Call>1926 * Lookup208: xcm::v0::order::Order<RuntimeCall>1958 **/1927 **/1959 XcmV0Order: {1928 XcmV0Order: {1960 _enum: {1929 _enum: {1961 Null: 'Null',1930 Null: 'Null',1996 }1965 }1997 }1966 }1998 },1967 },1999 /**1968 /**2000 * Lookup213: xcm::v0::Response1969 * Lookup210: xcm::v0::Response2001 **/1970 **/2002 XcmV0Response: {1971 XcmV0Response: {2003 _enum: {1972 _enum: {2004 Assets: 'Vec<XcmV0MultiAsset>'1973 Assets: 'Vec<XcmV0MultiAsset>'2005 }1974 }2006 },1975 },2007 /**1976 /**2008 * Lookup214: xcm::v1::Xcm<Call>1977 * Lookup211: xcm::v1::Xcm<RuntimeCall>2009 **/1978 **/2010 XcmV1Xcm: {1979 XcmV1Xcm: {2011 _enum: {1980 _enum: {2012 WithdrawAsset: {1981 WithdrawAsset: {2063 UnsubscribeVersion: 'Null'2032 UnsubscribeVersion: 'Null'2064 }2033 }2065 },2034 },2066 /**2035 /**2067 * Lookup216: xcm::v1::order::Order<Call>2036 * Lookup213: xcm::v1::order::Order<RuntimeCall>2068 **/2037 **/2069 XcmV1Order: {2038 XcmV1Order: {2070 _enum: {2039 _enum: {2071 Noop: 'Null',2040 Noop: 'Null',2108 }2077 }2109 }2078 }2110 },2079 },2111 /**2080 /**2112 * Lookup218: xcm::v1::Response2081 * Lookup215: xcm::v1::Response2113 **/2082 **/2114 XcmV1Response: {2083 XcmV1Response: {2115 _enum: {2084 _enum: {2116 Assets: 'XcmV1MultiassetMultiAssets',2085 Assets: 'XcmV1MultiassetMultiAssets',2117 Version: 'u32'2086 Version: 'u32'2118 }2087 }2119 },2088 },2120 /**2089 /**2121 * Lookup232: cumulus_pallet_xcm::pallet::Call<T>2090 * Lookup229: cumulus_pallet_xcm::pallet::Call<T>2122 **/2091 **/2123 CumulusPalletXcmCall: 'Null',2092 CumulusPalletXcmCall: 'Null',2124 /**2093 /**2125 * Lookup233: cumulus_pallet_dmp_queue::pallet::Call<T>2094 * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>2126 **/2095 **/2127 CumulusPalletDmpQueueCall: {2096 CumulusPalletDmpQueueCall: {2128 _enum: {2097 _enum: {2129 service_overweight: {2098 service_overweight: {2132 }2101 }2133 }2102 }2134 },2103 },2135 /**2104 /**2136 * Lookup234: pallet_inflation::pallet::Call<T>2105 * Lookup231: pallet_inflation::pallet::Call<T>2137 **/2106 **/2138 PalletInflationCall: {2107 PalletInflationCall: {2139 _enum: {2108 _enum: {2140 start_inflation: {2109 start_inflation: {2141 inflationStartRelayBlock: 'u32'2110 inflationStartRelayBlock: 'u32'2142 }2111 }2143 }2112 }2144 },2113 },2145 /**2114 /**2146 * Lookup235: pallet_unique::Call<T>2115 * Lookup232: pallet_unique::Call<T>2147 **/2116 **/2148 PalletUniqueCall: {2117 PalletUniqueCall: {2149 _enum: {2118 _enum: {2150 create_collection: {2119 create_collection: {2274 }2243 }2275 }2244 }2276 },2245 },2277 /**2246 /**2278 * Lookup240: up_data_structs::CollectionMode2247 * Lookup237: up_data_structs::CollectionMode2279 **/2248 **/2280 UpDataStructsCollectionMode: {2249 UpDataStructsCollectionMode: {2281 _enum: {2250 _enum: {2282 NFT: 'Null',2251 NFT: 'Null',2283 Fungible: 'u8',2252 Fungible: 'u8',2284 ReFungible: 'Null'2253 ReFungible: 'Null'2285 }2254 }2286 },2255 },2287 /**2256 /**2288 * Lookup241: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2257 * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2289 **/2258 **/2290 UpDataStructsCreateCollectionData: {2259 UpDataStructsCreateCollectionData: {2291 mode: 'UpDataStructsCollectionMode',2260 mode: 'UpDataStructsCollectionMode',2292 access: 'Option<UpDataStructsAccessMode>',2261 access: 'Option<UpDataStructsAccessMode>',2299 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2268 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2300 properties: 'Vec<UpDataStructsProperty>'2269 properties: 'Vec<UpDataStructsProperty>'2301 },2270 },2302 /**2271 /**2303 * Lookup243: up_data_structs::AccessMode2272 * Lookup240: up_data_structs::AccessMode2304 **/2273 **/2305 UpDataStructsAccessMode: {2274 UpDataStructsAccessMode: {2306 _enum: ['Normal', 'AllowList']2275 _enum: ['Normal', 'AllowList']2307 },2276 },2308 /**2277 /**2309 * Lookup245: up_data_structs::CollectionLimits2278 * Lookup242: up_data_structs::CollectionLimits2310 **/2279 **/2311 UpDataStructsCollectionLimits: {2280 UpDataStructsCollectionLimits: {2312 accountTokenOwnershipLimit: 'Option<u32>',2281 accountTokenOwnershipLimit: 'Option<u32>',2313 sponsoredDataSize: 'Option<u32>',2282 sponsoredDataSize: 'Option<u32>',2319 ownerCanDestroy: 'Option<bool>',2288 ownerCanDestroy: 'Option<bool>',2320 transfersEnabled: 'Option<bool>'2289 transfersEnabled: 'Option<bool>'2321 },2290 },2322 /**2291 /**2323 * Lookup247: up_data_structs::SponsoringRateLimit2292 * Lookup244: up_data_structs::SponsoringRateLimit2324 **/2293 **/2325 UpDataStructsSponsoringRateLimit: {2294 UpDataStructsSponsoringRateLimit: {2326 _enum: {2295 _enum: {2327 SponsoringDisabled: 'Null',2296 SponsoringDisabled: 'Null',2328 Blocks: 'u32'2297 Blocks: 'u32'2329 }2298 }2330 },2299 },2331 /**2300 /**2332 * Lookup250: up_data_structs::CollectionPermissions2301 * Lookup247: up_data_structs::CollectionPermissions2333 **/2302 **/2334 UpDataStructsCollectionPermissions: {2303 UpDataStructsCollectionPermissions: {2335 access: 'Option<UpDataStructsAccessMode>',2304 access: 'Option<UpDataStructsAccessMode>',2336 mintMode: 'Option<bool>',2305 mintMode: 'Option<bool>',2337 nesting: 'Option<UpDataStructsNestingPermissions>'2306 nesting: 'Option<UpDataStructsNestingPermissions>'2338 },2307 },2339 /**2308 /**2340 * Lookup252: up_data_structs::NestingPermissions2309 * Lookup249: up_data_structs::NestingPermissions2341 **/2310 **/2342 UpDataStructsNestingPermissions: {2311 UpDataStructsNestingPermissions: {2343 tokenOwner: 'bool',2312 tokenOwner: 'bool',2344 collectionAdmin: 'bool',2313 collectionAdmin: 'bool',2345 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2314 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2346 },2315 },2347 /**2316 /**2348 * Lookup254: up_data_structs::OwnerRestrictedSet2317 * Lookup251: up_data_structs::OwnerRestrictedSet2349 **/2318 **/2350 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2319 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2351 /**2320 /**2352 * Lookup259: up_data_structs::PropertyKeyPermission2321 * Lookup256: up_data_structs::PropertyKeyPermission2353 **/2322 **/2354 UpDataStructsPropertyKeyPermission: {2323 UpDataStructsPropertyKeyPermission: {2355 key: 'Bytes',2324 key: 'Bytes',2356 permission: 'UpDataStructsPropertyPermission'2325 permission: 'UpDataStructsPropertyPermission'2357 },2326 },2358 /**2327 /**2359 * Lookup260: up_data_structs::PropertyPermission2328 * Lookup257: up_data_structs::PropertyPermission2360 **/2329 **/2361 UpDataStructsPropertyPermission: {2330 UpDataStructsPropertyPermission: {2362 mutable: 'bool',2331 mutable: 'bool',2363 collectionAdmin: 'bool',2332 collectionAdmin: 'bool',2364 tokenOwner: 'bool'2333 tokenOwner: 'bool'2365 },2334 },2366 /**2335 /**2367 * Lookup263: up_data_structs::Property2336 * Lookup260: up_data_structs::Property2368 **/2337 **/2369 UpDataStructsProperty: {2338 UpDataStructsProperty: {2370 key: 'Bytes',2339 key: 'Bytes',2371 value: 'Bytes'2340 value: 'Bytes'2372 },2341 },2373 /**2342 /**2374 * Lookup266: up_data_structs::CreateItemData2343 * Lookup263: up_data_structs::CreateItemData2375 **/2344 **/2376 UpDataStructsCreateItemData: {2345 UpDataStructsCreateItemData: {2377 _enum: {2346 _enum: {2378 NFT: 'UpDataStructsCreateNftData',2347 NFT: 'UpDataStructsCreateNftData',2379 Fungible: 'UpDataStructsCreateFungibleData',2348 Fungible: 'UpDataStructsCreateFungibleData',2380 ReFungible: 'UpDataStructsCreateReFungibleData'2349 ReFungible: 'UpDataStructsCreateReFungibleData'2381 }2350 }2382 },2351 },2383 /**2352 /**2384 * Lookup267: up_data_structs::CreateNftData2353 * Lookup264: up_data_structs::CreateNftData2385 **/2354 **/2386 UpDataStructsCreateNftData: {2355 UpDataStructsCreateNftData: {2387 properties: 'Vec<UpDataStructsProperty>'2356 properties: 'Vec<UpDataStructsProperty>'2388 },2357 },2389 /**2358 /**2390 * Lookup268: up_data_structs::CreateFungibleData2359 * Lookup265: up_data_structs::CreateFungibleData2391 **/2360 **/2392 UpDataStructsCreateFungibleData: {2361 UpDataStructsCreateFungibleData: {2393 value: 'u128'2362 value: 'u128'2394 },2363 },2395 /**2364 /**2396 * Lookup269: up_data_structs::CreateReFungibleData2365 * Lookup266: up_data_structs::CreateReFungibleData2397 **/2366 **/2398 UpDataStructsCreateReFungibleData: {2367 UpDataStructsCreateReFungibleData: {2399 pieces: 'u128',2368 pieces: 'u128',2400 properties: 'Vec<UpDataStructsProperty>'2369 properties: 'Vec<UpDataStructsProperty>'2401 },2370 },2402 /**2371 /**2403 * Lookup272: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2372 * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2404 **/2373 **/2405 UpDataStructsCreateItemExData: {2374 UpDataStructsCreateItemExData: {2406 _enum: {2375 _enum: {2407 NFT: 'Vec<UpDataStructsCreateNftExData>',2376 NFT: 'Vec<UpDataStructsCreateNftExData>',2410 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2379 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2411 }2380 }2412 },2381 },2413 /**2382 /**2414 * Lookup274: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2383 * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2415 **/2384 **/2416 UpDataStructsCreateNftExData: {2385 UpDataStructsCreateNftExData: {2417 properties: 'Vec<UpDataStructsProperty>',2386 properties: 'Vec<UpDataStructsProperty>',2418 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2387 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2419 },2388 },2420 /**2389 /**2421 * Lookup281: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2390 * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2422 **/2391 **/2423 UpDataStructsCreateRefungibleExSingleOwner: {2392 UpDataStructsCreateRefungibleExSingleOwner: {2424 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2393 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2425 pieces: 'u128',2394 pieces: 'u128',2426 properties: 'Vec<UpDataStructsProperty>'2395 properties: 'Vec<UpDataStructsProperty>'2427 },2396 },2428 /**2397 /**2429 * Lookup283: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2398 * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2430 **/2399 **/2431 UpDataStructsCreateRefungibleExMultipleOwners: {2400 UpDataStructsCreateRefungibleExMultipleOwners: {2432 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2401 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2433 properties: 'Vec<UpDataStructsProperty>'2402 properties: 'Vec<UpDataStructsProperty>'2434 },2403 },2435 /**2436 * Lookup284: pallet_unique_scheduler::pallet::Call<T>2437 **/2438 PalletUniqueSchedulerCall: {2439 _enum: {2440 schedule_named: {2441 id: '[u8;16]',2442 when: 'u32',2443 maybePeriodic: 'Option<(u32,u32)>',2444 priority: 'u8',2445 call: 'FrameSupportScheduleMaybeHashed',2446 },2447 cancel_named: {2448 id: '[u8;16]',2449 },2450 schedule_named_after: {2451 id: '[u8;16]',2452 after: 'u32',2453 maybePeriodic: 'Option<(u32,u32)>',2454 priority: 'u8',2455 call: 'FrameSupportScheduleMaybeHashed'2456 }2457 }2458 },2459 /**2460 * Lookup286: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>2461 **/2462 FrameSupportScheduleMaybeHashed: {2463 _enum: {2464 Value: 'Call',2465 Hash: 'H256'2466 }2467 },2468 /**2404 /**2469 * Lookup287: pallet_configuration::pallet::Call<T>2405 * Lookup281: pallet_configuration::pallet::Call<T>2470 **/2406 **/2471 PalletConfigurationCall: {2407 PalletConfigurationCall: {2472 _enum: {2408 _enum: {2473 set_weight_to_fee_coefficient_override: {2409 set_weight_to_fee_coefficient_override: {2478 }2414 }2479 }2415 }2480 },2416 },2481 /**2417 /**2482 * Lookup289: pallet_template_transaction_payment::Call<T>2418 * Lookup283: pallet_template_transaction_payment::Call<T>2483 **/2419 **/2484 PalletTemplateTransactionPaymentCall: 'Null',2420 PalletTemplateTransactionPaymentCall: 'Null',2485 /**2421 /**2486 * Lookup290: pallet_structure::pallet::Call<T>2422 * Lookup284: pallet_structure::pallet::Call<T>2487 **/2423 **/2488 PalletStructureCall: 'Null',2424 PalletStructureCall: 'Null',2489 /**2425 /**2490 * Lookup291: pallet_rmrk_core::pallet::Call<T>2426 * Lookup285: pallet_rmrk_core::pallet::Call<T>2491 **/2427 **/2492 PalletRmrkCoreCall: {2428 PalletRmrkCoreCall: {2493 _enum: {2429 _enum: {2494 create_collection: {2430 create_collection: {2577 }2513 }2578 }2514 }2579 },2515 },2580 /**2516 /**2581 * Lookup297: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2517 * Lookup291: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2582 **/2518 **/2583 RmrkTraitsResourceResourceTypes: {2519 RmrkTraitsResourceResourceTypes: {2584 _enum: {2520 _enum: {2585 Basic: 'RmrkTraitsResourceBasicResource',2521 Basic: 'RmrkTraitsResourceBasicResource',2586 Composable: 'RmrkTraitsResourceComposableResource',2522 Composable: 'RmrkTraitsResourceComposableResource',2587 Slot: 'RmrkTraitsResourceSlotResource'2523 Slot: 'RmrkTraitsResourceSlotResource'2588 }2524 }2589 },2525 },2590 /**2526 /**2591 * Lookup299: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2527 * Lookup293: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2592 **/2528 **/2593 RmrkTraitsResourceBasicResource: {2529 RmrkTraitsResourceBasicResource: {2594 src: 'Option<Bytes>',2530 src: 'Option<Bytes>',2595 metadata: 'Option<Bytes>',2531 metadata: 'Option<Bytes>',2596 license: 'Option<Bytes>',2532 license: 'Option<Bytes>',2597 thumb: 'Option<Bytes>'2533 thumb: 'Option<Bytes>'2598 },2534 },2599 /**2535 /**2600 * Lookup301: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2536 * Lookup295: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2601 **/2537 **/2602 RmrkTraitsResourceComposableResource: {2538 RmrkTraitsResourceComposableResource: {2603 parts: 'Vec<u32>',2539 parts: 'Vec<u32>',2604 base: 'u32',2540 base: 'u32',2607 license: 'Option<Bytes>',2543 license: 'Option<Bytes>',2608 thumb: 'Option<Bytes>'2544 thumb: 'Option<Bytes>'2609 },2545 },2610 /**2546 /**2611 * Lookup302: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2547 * Lookup296: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2612 **/2548 **/2613 RmrkTraitsResourceSlotResource: {2549 RmrkTraitsResourceSlotResource: {2614 base: 'u32',2550 base: 'u32',2615 src: 'Option<Bytes>',2551 src: 'Option<Bytes>',2618 license: 'Option<Bytes>',2554 license: 'Option<Bytes>',2619 thumb: 'Option<Bytes>'2555 thumb: 'Option<Bytes>'2620 },2556 },2621 /**2557 /**2622 * Lookup305: pallet_rmrk_equip::pallet::Call<T>2558 * Lookup299: pallet_rmrk_equip::pallet::Call<T>2623 **/2559 **/2624 PalletRmrkEquipCall: {2560 PalletRmrkEquipCall: {2625 _enum: {2561 _enum: {2626 create_base: {2562 create_base: {2639 }2575 }2640 }2576 }2641 },2577 },2642 /**2578 /**2643 * Lookup308: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2579 * Lookup302: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2644 **/2580 **/2645 RmrkTraitsPartPartType: {2581 RmrkTraitsPartPartType: {2646 _enum: {2582 _enum: {2647 FixedPart: 'RmrkTraitsPartFixedPart',2583 FixedPart: 'RmrkTraitsPartFixedPart',2648 SlotPart: 'RmrkTraitsPartSlotPart'2584 SlotPart: 'RmrkTraitsPartSlotPart'2649 }2585 }2650 },2586 },2651 /**2587 /**2652 * Lookup310: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2588 * Lookup304: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2653 **/2589 **/2654 RmrkTraitsPartFixedPart: {2590 RmrkTraitsPartFixedPart: {2655 id: 'u32',2591 id: 'u32',2656 z: 'u32',2592 z: 'u32',2657 src: 'Bytes'2593 src: 'Bytes'2658 },2594 },2659 /**2595 /**2660 * Lookup311: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2596 * Lookup305: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2661 **/2597 **/2662 RmrkTraitsPartSlotPart: {2598 RmrkTraitsPartSlotPart: {2663 id: 'u32',2599 id: 'u32',2664 equippable: 'RmrkTraitsPartEquippableList',2600 equippable: 'RmrkTraitsPartEquippableList',2665 src: 'Bytes',2601 src: 'Bytes',2666 z: 'u32'2602 z: 'u32'2667 },2603 },2668 /**2604 /**2669 * Lookup312: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2605 * Lookup306: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2670 **/2606 **/2671 RmrkTraitsPartEquippableList: {2607 RmrkTraitsPartEquippableList: {2672 _enum: {2608 _enum: {2673 All: 'Null',2609 All: 'Null',2674 Empty: 'Null',2610 Empty: 'Null',2675 Custom: 'Vec<u32>'2611 Custom: 'Vec<u32>'2676 }2612 }2677 },2613 },2678 /**2614 /**2679 * 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>>2615 * 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>>2680 **/2616 **/2681 RmrkTraitsTheme: {2617 RmrkTraitsTheme: {2682 name: 'Bytes',2618 name: 'Bytes',2683 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2619 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2684 inherit: 'bool'2620 inherit: 'bool'2685 },2621 },2686 /**2622 /**2687 * Lookup316: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2623 * Lookup310: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2688 **/2624 **/2689 RmrkTraitsThemeThemeProperty: {2625 RmrkTraitsThemeThemeProperty: {2690 key: 'Bytes',2626 key: 'Bytes',2691 value: 'Bytes'2627 value: 'Bytes'2692 },2628 },2693 /**2629 /**2694 * Lookup318: pallet_app_promotion::pallet::Call<T>2630 * Lookup312: pallet_app_promotion::pallet::Call<T>2695 **/2631 **/2696 PalletAppPromotionCall: {2632 PalletAppPromotionCall: {2697 _enum: {2633 _enum: {2698 set_admin_address: {2634 set_admin_address: {2719 }2655 }2720 }2656 }2721 },2657 },2722 /**2658 /**2723 * Lookup320: pallet_foreign_assets::module::Call<T>2659 * Lookup314: pallet_foreign_assets::module::Call<T>2724 **/2660 **/2725 PalletForeignAssetsModuleCall: {2661 PalletForeignAssetsModuleCall: {2726 _enum: {2662 _enum: {2727 register_foreign_asset: {2663 register_foreign_asset: {2736 }2672 }2737 }2673 }2738 },2674 },2739 /**2675 /**2740 * Lookup321: pallet_evm::pallet::Call<T>2676 * Lookup315: pallet_evm::pallet::Call<T>2741 **/2677 **/2742 PalletEvmCall: {2678 PalletEvmCall: {2743 _enum: {2679 _enum: {2744 withdraw: {2680 withdraw: {2779 }2715 }2780 }2716 }2781 },2717 },2782 /**2718 /**2783 * Lookup325: pallet_ethereum::pallet::Call<T>2719 * Lookup319: pallet_ethereum::pallet::Call<T>2784 **/2720 **/2785 PalletEthereumCall: {2721 PalletEthereumCall: {2786 _enum: {2722 _enum: {2787 transact: {2723 transact: {2788 transaction: 'EthereumTransactionTransactionV2'2724 transaction: 'EthereumTransactionTransactionV2'2789 }2725 }2790 }2726 }2791 },2727 },2792 /**2728 /**2793 * Lookup326: ethereum::transaction::TransactionV22729 * Lookup320: ethereum::transaction::TransactionV22794 **/2730 **/2795 EthereumTransactionTransactionV2: {2731 EthereumTransactionTransactionV2: {2796 _enum: {2732 _enum: {2797 Legacy: 'EthereumTransactionLegacyTransaction',2733 Legacy: 'EthereumTransactionLegacyTransaction',2798 EIP2930: 'EthereumTransactionEip2930Transaction',2734 EIP2930: 'EthereumTransactionEip2930Transaction',2799 EIP1559: 'EthereumTransactionEip1559Transaction'2735 EIP1559: 'EthereumTransactionEip1559Transaction'2800 }2736 }2801 },2737 },2802 /**2738 /**2803 * Lookup327: ethereum::transaction::LegacyTransaction2739 * Lookup321: ethereum::transaction::LegacyTransaction2804 **/2740 **/2805 EthereumTransactionLegacyTransaction: {2741 EthereumTransactionLegacyTransaction: {2806 nonce: 'U256',2742 nonce: 'U256',2807 gasPrice: 'U256',2743 gasPrice: 'U256',2811 input: 'Bytes',2747 input: 'Bytes',2812 signature: 'EthereumTransactionTransactionSignature'2748 signature: 'EthereumTransactionTransactionSignature'2813 },2749 },2814 /**2750 /**2815 * Lookup328: ethereum::transaction::TransactionAction2751 * Lookup322: ethereum::transaction::TransactionAction2816 **/2752 **/2817 EthereumTransactionTransactionAction: {2753 EthereumTransactionTransactionAction: {2818 _enum: {2754 _enum: {2819 Call: 'H160',2755 Call: 'H160',2820 Create: 'Null'2756 Create: 'Null'2821 }2757 }2822 },2758 },2823 /**2759 /**2824 * Lookup329: ethereum::transaction::TransactionSignature2760 * Lookup323: ethereum::transaction::TransactionSignature2825 **/2761 **/2826 EthereumTransactionTransactionSignature: {2762 EthereumTransactionTransactionSignature: {2827 v: 'u64',2763 v: 'u64',2828 r: 'H256',2764 r: 'H256',2829 s: 'H256'2765 s: 'H256'2830 },2766 },2831 /**2767 /**2832 * Lookup331: ethereum::transaction::EIP2930Transaction2768 * Lookup325: ethereum::transaction::EIP2930Transaction2833 **/2769 **/2834 EthereumTransactionEip2930Transaction: {2770 EthereumTransactionEip2930Transaction: {2835 chainId: 'u64',2771 chainId: 'u64',2836 nonce: 'U256',2772 nonce: 'U256',2844 r: 'H256',2780 r: 'H256',2845 s: 'H256'2781 s: 'H256'2846 },2782 },2847 /**2783 /**2848 * Lookup333: ethereum::transaction::AccessListItem2784 * Lookup327: ethereum::transaction::AccessListItem2849 **/2785 **/2850 EthereumTransactionAccessListItem: {2786 EthereumTransactionAccessListItem: {2851 address: 'H160',2787 address: 'H160',2852 storageKeys: 'Vec<H256>'2788 storageKeys: 'Vec<H256>'2853 },2789 },2854 /**2790 /**2855 * Lookup334: ethereum::transaction::EIP1559Transaction2791 * Lookup328: ethereum::transaction::EIP1559Transaction2856 **/2792 **/2857 EthereumTransactionEip1559Transaction: {2793 EthereumTransactionEip1559Transaction: {2858 chainId: 'u64',2794 chainId: 'u64',2859 nonce: 'U256',2795 nonce: 'U256',2868 r: 'H256',2804 r: 'H256',2869 s: 'H256'2805 s: 'H256'2870 },2806 },2871 /**2807 /**2872 * Lookup335: pallet_evm_migration::pallet::Call<T>2808 * Lookup329: pallet_evm_migration::pallet::Call<T>2873 **/2809 **/2874 PalletEvmMigrationCall: {2810 PalletEvmMigrationCall: {2875 _enum: {2811 _enum: {2876 begin: {2812 begin: {2886 }2822 }2887 }2823 }2888 },2824 },2889 /**2825 /**2890 * Lookup338: pallet_sudo::pallet::Error<T>2826 * Lookup332: pallet_sudo::pallet::Error<T>2891 **/2827 **/2892 PalletSudoError: {2828 PalletSudoError: {2893 _enum: ['RequireSudo']2829 _enum: ['RequireSudo']2894 },2830 },2895 /**2831 /**2896 * Lookup340: orml_vesting::module::Error<T>2832 * Lookup334: orml_vesting::module::Error<T>2897 **/2833 **/2898 OrmlVestingModuleError: {2834 OrmlVestingModuleError: {2899 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2835 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2900 },2836 },2901 /**2837 /**2902 * Lookup341: orml_xtokens::module::Error<T>2838 * Lookup335: orml_xtokens::module::Error<T>2903 **/2839 **/2904 OrmlXtokensModuleError: {2840 OrmlXtokensModuleError: {2905 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2841 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2906 },2842 },2907 /**2843 /**2908 * Lookup344: orml_tokens::BalanceLock<Balance>2844 * Lookup338: orml_tokens::BalanceLock<Balance>2909 **/2845 **/2910 OrmlTokensBalanceLock: {2846 OrmlTokensBalanceLock: {2911 id: '[u8;8]',2847 id: '[u8;8]',2912 amount: 'u128'2848 amount: 'u128'2913 },2849 },2914 /**2850 /**2915 * Lookup346: orml_tokens::AccountData<Balance>2851 * Lookup340: orml_tokens::AccountData<Balance>2916 **/2852 **/2917 OrmlTokensAccountData: {2853 OrmlTokensAccountData: {2918 free: 'u128',2854 free: 'u128',2919 reserved: 'u128',2855 reserved: 'u128',2920 frozen: 'u128'2856 frozen: 'u128'2921 },2857 },2922 /**2858 /**2923 * Lookup348: orml_tokens::ReserveData<ReserveIdentifier, Balance>2859 * Lookup342: orml_tokens::ReserveData<ReserveIdentifier, Balance>2924 **/2860 **/2925 OrmlTokensReserveData: {2861 OrmlTokensReserveData: {2926 id: 'Null',2862 id: 'Null',2927 amount: 'u128'2863 amount: 'u128'2928 },2864 },2929 /**2865 /**2930 * Lookup350: orml_tokens::module::Error<T>2866 * Lookup344: orml_tokens::module::Error<T>2931 **/2867 **/2932 OrmlTokensModuleError: {2868 OrmlTokensModuleError: {2933 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2869 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2934 },2870 },2935 /**2871 /**2936 * Lookup352: cumulus_pallet_xcmp_queue::InboundChannelDetails2872 * Lookup346: cumulus_pallet_xcmp_queue::InboundChannelDetails2937 **/2873 **/2938 CumulusPalletXcmpQueueInboundChannelDetails: {2874 CumulusPalletXcmpQueueInboundChannelDetails: {2939 sender: 'u32',2875 sender: 'u32',2940 state: 'CumulusPalletXcmpQueueInboundState',2876 state: 'CumulusPalletXcmpQueueInboundState',2941 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2877 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2942 },2878 },2943 /**2879 /**2944 * Lookup353: cumulus_pallet_xcmp_queue::InboundState2880 * Lookup347: cumulus_pallet_xcmp_queue::InboundState2945 **/2881 **/2946 CumulusPalletXcmpQueueInboundState: {2882 CumulusPalletXcmpQueueInboundState: {2947 _enum: ['Ok', 'Suspended']2883 _enum: ['Ok', 'Suspended']2948 },2884 },2949 /**2885 /**2950 * Lookup356: polkadot_parachain::primitives::XcmpMessageFormat2886 * Lookup350: polkadot_parachain::primitives::XcmpMessageFormat2951 **/2887 **/2952 PolkadotParachainPrimitivesXcmpMessageFormat: {2888 PolkadotParachainPrimitivesXcmpMessageFormat: {2953 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2889 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2954 },2890 },2955 /**2891 /**2956 * Lookup359: cumulus_pallet_xcmp_queue::OutboundChannelDetails2892 * Lookup353: cumulus_pallet_xcmp_queue::OutboundChannelDetails2957 **/2893 **/2958 CumulusPalletXcmpQueueOutboundChannelDetails: {2894 CumulusPalletXcmpQueueOutboundChannelDetails: {2959 recipient: 'u32',2895 recipient: 'u32',2960 state: 'CumulusPalletXcmpQueueOutboundState',2896 state: 'CumulusPalletXcmpQueueOutboundState',2961 signalsExist: 'bool',2897 signalsExist: 'bool',2962 firstIndex: 'u16',2898 firstIndex: 'u16',2963 lastIndex: 'u16'2899 lastIndex: 'u16'2964 },2900 },2965 /**2901 /**2966 * Lookup360: cumulus_pallet_xcmp_queue::OutboundState2902 * Lookup354: cumulus_pallet_xcmp_queue::OutboundState2967 **/2903 **/2968 CumulusPalletXcmpQueueOutboundState: {2904 CumulusPalletXcmpQueueOutboundState: {2969 _enum: ['Ok', 'Suspended']2905 _enum: ['Ok', 'Suspended']2970 },2906 },2971 /**2907 /**2972 * Lookup362: cumulus_pallet_xcmp_queue::QueueConfigData2908 * Lookup356: cumulus_pallet_xcmp_queue::QueueConfigData2973 **/2909 **/2974 CumulusPalletXcmpQueueQueueConfigData: {2910 CumulusPalletXcmpQueueQueueConfigData: {2975 suspendThreshold: 'u32',2911 suspendThreshold: 'u32',2976 dropThreshold: 'u32',2912 dropThreshold: 'u32',2979 weightRestrictDecay: 'Weight',2915 weightRestrictDecay: 'Weight',2980 xcmpMaxIndividualWeight: 'Weight'2916 xcmpMaxIndividualWeight: 'Weight'2981 },2917 },2982 /**2918 /**2983 * Lookup364: cumulus_pallet_xcmp_queue::pallet::Error<T>2919 * Lookup358: cumulus_pallet_xcmp_queue::pallet::Error<T>2984 **/2920 **/2985 CumulusPalletXcmpQueueError: {2921 CumulusPalletXcmpQueueError: {2986 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2922 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2987 },2923 },2988 /**2924 /**2989 * Lookup365: pallet_xcm::pallet::Error<T>2925 * Lookup359: pallet_xcm::pallet::Error<T>2990 **/2926 **/2991 PalletXcmError: {2927 PalletXcmError: {2992 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2928 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2993 },2929 },2994 /**2930 /**2995 * Lookup366: cumulus_pallet_xcm::pallet::Error<T>2931 * Lookup360: cumulus_pallet_xcm::pallet::Error<T>2996 **/2932 **/2997 CumulusPalletXcmError: 'Null',2933 CumulusPalletXcmError: 'Null',2998 /**2934 /**2999 * Lookup367: cumulus_pallet_dmp_queue::ConfigData2935 * Lookup361: cumulus_pallet_dmp_queue::ConfigData3000 **/2936 **/3001 CumulusPalletDmpQueueConfigData: {2937 CumulusPalletDmpQueueConfigData: {3002 maxIndividual: 'Weight'2938 maxIndividual: 'Weight'3003 },2939 },3004 /**2940 /**3005 * Lookup368: cumulus_pallet_dmp_queue::PageIndexData2941 * Lookup362: cumulus_pallet_dmp_queue::PageIndexData3006 **/2942 **/3007 CumulusPalletDmpQueuePageIndexData: {2943 CumulusPalletDmpQueuePageIndexData: {3008 beginUsed: 'u32',2944 beginUsed: 'u32',3009 endUsed: 'u32',2945 endUsed: 'u32',3010 overweightCount: 'u64'2946 overweightCount: 'u64'3011 },2947 },3012 /**2948 /**3013 * Lookup371: cumulus_pallet_dmp_queue::pallet::Error<T>2949 * Lookup365: cumulus_pallet_dmp_queue::pallet::Error<T>3014 **/2950 **/3015 CumulusPalletDmpQueueError: {2951 CumulusPalletDmpQueueError: {3016 _enum: ['Unknown', 'OverLimit']2952 _enum: ['Unknown', 'OverLimit']3017 },2953 },3018 /**2954 /**3019 * Lookup375: pallet_unique::Error<T>2955 * Lookup369: pallet_unique::Error<T>3020 **/2956 **/3021 PalletUniqueError: {2957 PalletUniqueError: {3022 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']2958 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3023 },2959 },3024 /**3025 * Lookup378: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3026 **/3027 PalletUniqueSchedulerScheduledV3: {3028 maybeId: 'Option<[u8;16]>',3029 priority: 'u8',3030 call: 'FrameSupportScheduleMaybeHashed',3031 maybePeriodic: 'Option<(u32,u32)>',3032 origin: 'OpalRuntimeOriginCaller'3033 },3034 /**3035 * Lookup379: opal_runtime::OriginCaller3036 **/3037 OpalRuntimeOriginCaller: {3038 _enum: {3039 system: 'FrameSupportDispatchRawOrigin',3040 __Unused1: 'Null',3041 __Unused2: 'Null',3042 __Unused3: 'Null',3043 Void: 'SpCoreVoid',3044 __Unused5: 'Null',3045 __Unused6: 'Null',3046 __Unused7: 'Null',3047 __Unused8: 'Null',3048 __Unused9: 'Null',3049 __Unused10: 'Null',3050 __Unused11: 'Null',3051 __Unused12: 'Null',3052 __Unused13: 'Null',3053 __Unused14: 'Null',3054 __Unused15: 'Null',3055 __Unused16: 'Null',3056 __Unused17: 'Null',3057 __Unused18: 'Null',3058 __Unused19: 'Null',3059 __Unused20: 'Null',3060 __Unused21: 'Null',3061 __Unused22: 'Null',3062 __Unused23: 'Null',3063 __Unused24: 'Null',3064 __Unused25: 'Null',3065 __Unused26: 'Null',3066 __Unused27: 'Null',3067 __Unused28: 'Null',3068 __Unused29: 'Null',3069 __Unused30: 'Null',3070 __Unused31: 'Null',3071 __Unused32: 'Null',3072 __Unused33: 'Null',3073 __Unused34: 'Null',3074 __Unused35: 'Null',3075 __Unused36: 'Null',3076 __Unused37: 'Null',3077 __Unused38: 'Null',3078 __Unused39: 'Null',3079 __Unused40: 'Null',3080 __Unused41: 'Null',3081 __Unused42: 'Null',3082 __Unused43: 'Null',3083 __Unused44: 'Null',3084 __Unused45: 'Null',3085 __Unused46: 'Null',3086 __Unused47: 'Null',3087 __Unused48: 'Null',3088 __Unused49: 'Null',3089 __Unused50: 'Null',3090 PolkadotXcm: 'PalletXcmOrigin',3091 CumulusXcm: 'CumulusPalletXcmOrigin',3092 __Unused53: 'Null',3093 __Unused54: 'Null',3094 __Unused55: 'Null',3095 __Unused56: 'Null',3096 __Unused57: 'Null',3097 __Unused58: 'Null',3098 __Unused59: 'Null',3099 __Unused60: 'Null',3100 __Unused61: 'Null',3101 __Unused62: 'Null',3102 __Unused63: 'Null',3103 __Unused64: 'Null',3104 __Unused65: 'Null',3105 __Unused66: 'Null',3106 __Unused67: 'Null',3107 __Unused68: 'Null',3108 __Unused69: 'Null',3109 __Unused70: 'Null',3110 __Unused71: 'Null',3111 __Unused72: 'Null',3112 __Unused73: 'Null',3113 __Unused74: 'Null',3114 __Unused75: 'Null',3115 __Unused76: 'Null',3116 __Unused77: 'Null',3117 __Unused78: 'Null',3118 __Unused79: 'Null',3119 __Unused80: 'Null',3120 __Unused81: 'Null',3121 __Unused82: 'Null',3122 __Unused83: 'Null',3123 __Unused84: 'Null',3124 __Unused85: 'Null',3125 __Unused86: 'Null',3126 __Unused87: 'Null',3127 __Unused88: 'Null',3128 __Unused89: 'Null',3129 __Unused90: 'Null',3130 __Unused91: 'Null',3131 __Unused92: 'Null',3132 __Unused93: 'Null',3133 __Unused94: 'Null',3134 __Unused95: 'Null',3135 __Unused96: 'Null',3136 __Unused97: 'Null',3137 __Unused98: 'Null',3138 __Unused99: 'Null',3139 __Unused100: 'Null',3140 Ethereum: 'PalletEthereumRawOrigin'3141 }3142 },3143 /**3144 * Lookup380: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3145 **/3146 FrameSupportDispatchRawOrigin: {3147 _enum: {3148 Root: 'Null',3149 Signed: 'AccountId32',3150 None: 'Null'3151 }3152 },3153 /**3154 * Lookup381: pallet_xcm::pallet::Origin3155 **/3156 PalletXcmOrigin: {3157 _enum: {3158 Xcm: 'XcmV1MultiLocation',3159 Response: 'XcmV1MultiLocation'3160 }3161 },3162 /**3163 * Lookup382: cumulus_pallet_xcm::pallet::Origin3164 **/3165 CumulusPalletXcmOrigin: {3166 _enum: {3167 Relay: 'Null',3168 SiblingParachain: 'u32'3169 }3170 },3171 /**3172 * Lookup383: pallet_ethereum::RawOrigin3173 **/3174 PalletEthereumRawOrigin: {3175 _enum: {3176 EthereumTransaction: 'H160'3177 }3178 },3179 /**3180 * Lookup384: sp_core::Void3181 **/3182 SpCoreVoid: 'Null',3183 /**3184 * Lookup385: pallet_unique_scheduler::pallet::Error<T>3185 **/3186 PalletUniqueSchedulerError: {3187 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']3188 },3189 /**2960 /**3190 * Lookup386: up_data_structs::Collection<sp_core::crypto::AccountId32>2961 * Lookup370: up_data_structs::Collection<sp_core::crypto::AccountId32>3191 **/2962 **/3192 UpDataStructsCollection: {2963 UpDataStructsCollection: {3193 owner: 'AccountId32',2964 owner: 'AccountId32',3194 mode: 'UpDataStructsCollectionMode',2965 mode: 'UpDataStructsCollectionMode',3200 permissions: 'UpDataStructsCollectionPermissions',2971 permissions: 'UpDataStructsCollectionPermissions',3201 flags: '[u8;1]'2972 flags: '[u8;1]'3202 },2973 },3203 /**2974 /**3204 * Lookup387: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2975 * Lookup371: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3205 **/2976 **/3206 UpDataStructsSponsorshipStateAccountId32: {2977 UpDataStructsSponsorshipStateAccountId32: {3207 _enum: {2978 _enum: {3208 Disabled: 'Null',2979 Disabled: 'Null',3209 Unconfirmed: 'AccountId32',2980 Unconfirmed: 'AccountId32',3210 Confirmed: 'AccountId32'2981 Confirmed: 'AccountId32'3211 }2982 }3212 },2983 },3213 /**2984 /**3214 * Lookup389: up_data_structs::Properties2985 * Lookup373: up_data_structs::Properties3215 **/2986 **/3216 UpDataStructsProperties: {2987 UpDataStructsProperties: {3217 map: 'UpDataStructsPropertiesMapBoundedVec',2988 map: 'UpDataStructsPropertiesMapBoundedVec',3218 consumedSpace: 'u32',2989 consumedSpace: 'u32',3219 spaceLimit: 'u32'2990 spaceLimit: 'u32'3220 },2991 },3221 /**2992 /**3222 * Lookup390: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2993 * Lookup374: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3223 **/2994 **/3224 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',2995 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3225 /**2996 /**3226 * Lookup395: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>2997 * Lookup379: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3227 **/2998 **/3228 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',2999 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3229 /**3000 /**3230 * Lookup402: up_data_structs::CollectionStats3001 * Lookup386: up_data_structs::CollectionStats3231 **/3002 **/3232 UpDataStructsCollectionStats: {3003 UpDataStructsCollectionStats: {3233 created: 'u32',3004 created: 'u32',3234 destroyed: 'u32',3005 destroyed: 'u32',3235 alive: 'u32'3006 alive: 'u32'3236 },3007 },3237 /**3008 /**3238 * Lookup403: up_data_structs::TokenChild3009 * Lookup387: up_data_structs::TokenChild3239 **/3010 **/3240 UpDataStructsTokenChild: {3011 UpDataStructsTokenChild: {3241 token: 'u32',3012 token: 'u32',3242 collection: 'u32'3013 collection: 'u32'3243 },3014 },3244 /**3015 /**3245 * Lookup404: PhantomType::up_data_structs<T>3016 * Lookup388: PhantomType::up_data_structs<T>3246 **/3017 **/3247 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3018 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3248 /**3019 /**3249 * Lookup406: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3020 * Lookup390: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3250 **/3021 **/3251 UpDataStructsTokenData: {3022 UpDataStructsTokenData: {3252 properties: 'Vec<UpDataStructsProperty>',3023 properties: 'Vec<UpDataStructsProperty>',3253 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3024 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3254 pieces: 'u128'3025 pieces: 'u128'3255 },3026 },3256 /**3027 /**3257 * Lookup408: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3028 * Lookup392: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3258 **/3029 **/3259 UpDataStructsRpcCollection: {3030 UpDataStructsRpcCollection: {3260 owner: 'AccountId32',3031 owner: 'AccountId32',3261 mode: 'UpDataStructsCollectionMode',3032 mode: 'UpDataStructsCollectionMode',3270 readOnly: 'bool',3041 readOnly: 'bool',3271 flags: 'UpDataStructsRpcCollectionFlags'3042 flags: 'UpDataStructsRpcCollectionFlags'3272 },3043 },3273 /**3044 /**3274 * Lookup409: up_data_structs::RpcCollectionFlags3045 * Lookup393: up_data_structs::RpcCollectionFlags3275 **/3046 **/3276 UpDataStructsRpcCollectionFlags: {3047 UpDataStructsRpcCollectionFlags: {3277 foreign: 'bool',3048 foreign: 'bool',3278 erc721metadata: 'bool'3049 erc721metadata: 'bool'3279 },3050 },3280 /**3051 /**3281 * 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>3052 * 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>3282 **/3053 **/3283 RmrkTraitsCollectionCollectionInfo: {3054 RmrkTraitsCollectionCollectionInfo: {3284 issuer: 'AccountId32',3055 issuer: 'AccountId32',3285 metadata: 'Bytes',3056 metadata: 'Bytes',3286 max: 'Option<u32>',3057 max: 'Option<u32>',3287 symbol: 'Bytes',3058 symbol: 'Bytes',3288 nftsCount: 'u32'3059 nftsCount: 'u32'3289 },3060 },3290 /**3061 /**3291 * Lookup411: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3062 * Lookup395: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3292 **/3063 **/3293 RmrkTraitsNftNftInfo: {3064 RmrkTraitsNftNftInfo: {3294 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3065 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3295 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3066 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3296 metadata: 'Bytes',3067 metadata: 'Bytes',3297 equipped: 'bool',3068 equipped: 'bool',3298 pending: 'bool'3069 pending: 'bool'3299 },3070 },3300 /**3071 /**3301 * Lookup413: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3072 * Lookup397: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3302 **/3073 **/3303 RmrkTraitsNftRoyaltyInfo: {3074 RmrkTraitsNftRoyaltyInfo: {3304 recipient: 'AccountId32',3075 recipient: 'AccountId32',3305 amount: 'Permill'3076 amount: 'Permill'3306 },3077 },3307 /**3078 /**3308 * Lookup414: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3079 * Lookup398: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3309 **/3080 **/3310 RmrkTraitsResourceResourceInfo: {3081 RmrkTraitsResourceResourceInfo: {3311 id: 'u32',3082 id: 'u32',3312 resource: 'RmrkTraitsResourceResourceTypes',3083 resource: 'RmrkTraitsResourceResourceTypes',3313 pending: 'bool',3084 pending: 'bool',3314 pendingRemoval: 'bool'3085 pendingRemoval: 'bool'3315 },3086 },3316 /**3087 /**3317 * Lookup415: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3088 * Lookup399: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3318 **/3089 **/3319 RmrkTraitsPropertyPropertyInfo: {3090 RmrkTraitsPropertyPropertyInfo: {3320 key: 'Bytes',3091 key: 'Bytes',3321 value: 'Bytes'3092 value: 'Bytes'3322 },3093 },3323 /**3094 /**3324 * Lookup416: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3095 * Lookup400: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3325 **/3096 **/3326 RmrkTraitsBaseBaseInfo: {3097 RmrkTraitsBaseBaseInfo: {3327 issuer: 'AccountId32',3098 issuer: 'AccountId32',3328 baseType: 'Bytes',3099 baseType: 'Bytes',3329 symbol: 'Bytes'3100 symbol: 'Bytes'3330 },3101 },3331 /**3102 /**3332 * Lookup417: rmrk_traits::nft::NftChild3103 * Lookup401: rmrk_traits::nft::NftChild3333 **/3104 **/3334 RmrkTraitsNftNftChild: {3105 RmrkTraitsNftNftChild: {3335 collectionId: 'u32',3106 collectionId: 'u32',3336 nftId: 'u32'3107 nftId: 'u32'3337 },3108 },3338 /**3109 /**3339 * Lookup419: pallet_common::pallet::Error<T>3110 * Lookup403: pallet_common::pallet::Error<T>3340 **/3111 **/3341 PalletCommonError: {3112 PalletCommonError: {3342 _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']3113 _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']3343 },3114 },3344 /**3115 /**3345 * Lookup421: pallet_fungible::pallet::Error<T>3116 * Lookup405: pallet_fungible::pallet::Error<T>3346 **/3117 **/3347 PalletFungibleError: {3118 PalletFungibleError: {3348 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3119 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3349 },3120 },3350 /**3121 /**3351 * Lookup422: pallet_refungible::ItemData3122 * Lookup406: pallet_refungible::ItemData3352 **/3123 **/3353 PalletRefungibleItemData: {3124 PalletRefungibleItemData: {3354 constData: 'Bytes'3125 constData: 'Bytes'3355 },3126 },3356 /**3127 /**3357 * Lookup427: pallet_refungible::pallet::Error<T>3128 * Lookup411: pallet_refungible::pallet::Error<T>3358 **/3129 **/3359 PalletRefungibleError: {3130 PalletRefungibleError: {3360 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3131 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3361 },3132 },3362 /**3133 /**3363 * Lookup428: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3134 * Lookup412: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3364 **/3135 **/3365 PalletNonfungibleItemData: {3136 PalletNonfungibleItemData: {3366 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3137 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3367 },3138 },3368 /**3139 /**3369 * Lookup430: up_data_structs::PropertyScope3140 * Lookup414: up_data_structs::PropertyScope3370 **/3141 **/3371 UpDataStructsPropertyScope: {3142 UpDataStructsPropertyScope: {3372 _enum: ['None', 'Rmrk']3143 _enum: ['None', 'Rmrk']3373 },3144 },3374 /**3145 /**3375 * Lookup432: pallet_nonfungible::pallet::Error<T>3146 * Lookup416: pallet_nonfungible::pallet::Error<T>3376 **/3147 **/3377 PalletNonfungibleError: {3148 PalletNonfungibleError: {3378 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3149 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3379 },3150 },3380 /**3151 /**3381 * Lookup433: pallet_structure::pallet::Error<T>3152 * Lookup417: pallet_structure::pallet::Error<T>3382 **/3153 **/3383 PalletStructureError: {3154 PalletStructureError: {3384 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3155 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3385 },3156 },3386 /**3157 /**3387 * Lookup434: pallet_rmrk_core::pallet::Error<T>3158 * Lookup418: pallet_rmrk_core::pallet::Error<T>3388 **/3159 **/3389 PalletRmrkCoreError: {3160 PalletRmrkCoreError: {3390 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3161 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3391 },3162 },3392 /**3163 /**3393 * Lookup436: pallet_rmrk_equip::pallet::Error<T>3164 * Lookup420: pallet_rmrk_equip::pallet::Error<T>3394 **/3165 **/3395 PalletRmrkEquipError: {3166 PalletRmrkEquipError: {3396 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3167 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3397 },3168 },3398 /**3169 /**3399 * Lookup442: pallet_app_promotion::pallet::Error<T>3170 * Lookup426: pallet_app_promotion::pallet::Error<T>3400 **/3171 **/3401 PalletAppPromotionError: {3172 PalletAppPromotionError: {3402 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3173 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3403 },3174 },3404 /**3175 /**3405 * Lookup443: pallet_foreign_assets::module::Error<T>3176 * Lookup427: pallet_foreign_assets::module::Error<T>3406 **/3177 **/3407 PalletForeignAssetsModuleError: {3178 PalletForeignAssetsModuleError: {3408 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3179 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3409 },3180 },3410 /**3181 /**3411 * Lookup446: pallet_evm::pallet::Error<T>3182 * Lookup430: pallet_evm::pallet::Error<T>3412 **/3183 **/3413 PalletEvmError: {3184 PalletEvmError: {3414 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']3185 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']3415 },3186 },3416 /**3187 /**3417 * Lookup449: fp_rpc::TransactionStatus3188 * Lookup433: fp_rpc::TransactionStatus3418 **/3189 **/3419 FpRpcTransactionStatus: {3190 FpRpcTransactionStatus: {3420 transactionHash: 'H256',3191 transactionHash: 'H256',3421 transactionIndex: 'u32',3192 transactionIndex: 'u32',3425 logs: 'Vec<EthereumLog>',3196 logs: 'Vec<EthereumLog>',3426 logsBloom: 'EthbloomBloom'3197 logsBloom: 'EthbloomBloom'3427 },3198 },3428 /**3199 /**3429 * Lookup451: ethbloom::Bloom3200 * Lookup435: ethbloom::Bloom3430 **/3201 **/3431 EthbloomBloom: '[u8;256]',3202 EthbloomBloom: '[u8;256]',3432 /**3203 /**3433 * Lookup453: ethereum::receipt::ReceiptV33204 * Lookup437: ethereum::receipt::ReceiptV33434 **/3205 **/3435 EthereumReceiptReceiptV3: {3206 EthereumReceiptReceiptV3: {3436 _enum: {3207 _enum: {3437 Legacy: 'EthereumReceiptEip658ReceiptData',3208 Legacy: 'EthereumReceiptEip658ReceiptData',3438 EIP2930: 'EthereumReceiptEip658ReceiptData',3209 EIP2930: 'EthereumReceiptEip658ReceiptData',3439 EIP1559: 'EthereumReceiptEip658ReceiptData'3210 EIP1559: 'EthereumReceiptEip658ReceiptData'3440 }3211 }3441 },3212 },3442 /**3213 /**3443 * Lookup454: ethereum::receipt::EIP658ReceiptData3214 * Lookup438: ethereum::receipt::EIP658ReceiptData3444 **/3215 **/3445 EthereumReceiptEip658ReceiptData: {3216 EthereumReceiptEip658ReceiptData: {3446 statusCode: 'u8',3217 statusCode: 'u8',3447 usedGas: 'U256',3218 usedGas: 'U256',3448 logsBloom: 'EthbloomBloom',3219 logsBloom: 'EthbloomBloom',3449 logs: 'Vec<EthereumLog>'3220 logs: 'Vec<EthereumLog>'3450 },3221 },3451 /**3222 /**3452 * Lookup455: ethereum::block::Block<ethereum::transaction::TransactionV2>3223 * Lookup439: ethereum::block::Block<ethereum::transaction::TransactionV2>3453 **/3224 **/3454 EthereumBlock: {3225 EthereumBlock: {3455 header: 'EthereumHeader',3226 header: 'EthereumHeader',3456 transactions: 'Vec<EthereumTransactionTransactionV2>',3227 transactions: 'Vec<EthereumTransactionTransactionV2>',3457 ommers: 'Vec<EthereumHeader>'3228 ommers: 'Vec<EthereumHeader>'3458 },3229 },3459 /**3230 /**3460 * Lookup456: ethereum::header::Header3231 * Lookup440: ethereum::header::Header3461 **/3232 **/3462 EthereumHeader: {3233 EthereumHeader: {3463 parentHash: 'H256',3234 parentHash: 'H256',3464 ommersHash: 'H256',3235 ommersHash: 'H256',3476 mixHash: 'H256',3247 mixHash: 'H256',3477 nonce: 'EthereumTypesHashH64'3248 nonce: 'EthereumTypesHashH64'3478 },3249 },3479 /**3250 /**3480 * Lookup457: ethereum_types::hash::H643251 * Lookup441: ethereum_types::hash::H643481 **/3252 **/3482 EthereumTypesHashH64: '[u8;8]',3253 EthereumTypesHashH64: '[u8;8]',3483 /**3254 /**3484 * Lookup462: pallet_ethereum::pallet::Error<T>3255 * Lookup446: pallet_ethereum::pallet::Error<T>3485 **/3256 **/3486 PalletEthereumError: {3257 PalletEthereumError: {3487 _enum: ['InvalidSignature', 'PreLogExists']3258 _enum: ['InvalidSignature', 'PreLogExists']3488 },3259 },3489 /**3260 /**3490 * Lookup463: pallet_evm_coder_substrate::pallet::Error<T>3261 * Lookup447: pallet_evm_coder_substrate::pallet::Error<T>3491 **/3262 **/3492 PalletEvmCoderSubstrateError: {3263 PalletEvmCoderSubstrateError: {3493 _enum: ['OutOfGas', 'OutOfFund']3264 _enum: ['OutOfGas', 'OutOfFund']3494 },3265 },3495 /**3266 /**3496 * Lookup464: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3267 * Lookup448: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3497 **/3268 **/3498 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3269 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3499 _enum: {3270 _enum: {3500 Disabled: 'Null',3271 Disabled: 'Null',3501 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3272 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3502 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3273 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3503 }3274 }3504 },3275 },3505 /**3276 /**3506 * Lookup465: pallet_evm_contract_helpers::SponsoringModeT3277 * Lookup449: pallet_evm_contract_helpers::SponsoringModeT3507 **/3278 **/3508 PalletEvmContractHelpersSponsoringModeT: {3279 PalletEvmContractHelpersSponsoringModeT: {3509 _enum: ['Disabled', 'Allowlisted', 'Generous']3280 _enum: ['Disabled', 'Allowlisted', 'Generous']3510 },3281 },3511 /**3282 /**3512 * Lookup471: pallet_evm_contract_helpers::pallet::Error<T>3283 * Lookup455: pallet_evm_contract_helpers::pallet::Error<T>3513 **/3284 **/3514 PalletEvmContractHelpersError: {3285 PalletEvmContractHelpersError: {3515 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3286 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3516 },3287 },3517 /**3288 /**3518 * Lookup472: pallet_evm_migration::pallet::Error<T>3289 * Lookup456: pallet_evm_migration::pallet::Error<T>3519 **/3290 **/3520 PalletEvmMigrationError: {3291 PalletEvmMigrationError: {3521 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3292 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3522 },3293 },3523 /**3294 /**3524 * Lookup474: sp_runtime::MultiSignature3295 * Lookup458: sp_runtime::MultiSignature3525 **/3296 **/3526 SpRuntimeMultiSignature: {3297 SpRuntimeMultiSignature: {3527 _enum: {3298 _enum: {3528 Ed25519: 'SpCoreEd25519Signature',3299 Ed25519: 'SpCoreEd25519Signature',3529 Sr25519: 'SpCoreSr25519Signature',3300 Sr25519: 'SpCoreSr25519Signature',3530 Ecdsa: 'SpCoreEcdsaSignature'3301 Ecdsa: 'SpCoreEcdsaSignature'3531 }3302 }3532 },3303 },3533 /**3304 /**3534 * Lookup475: sp_core::ed25519::Signature3305 * Lookup459: sp_core::ed25519::Signature3535 **/3306 **/3536 SpCoreEd25519Signature: '[u8;64]',3307 SpCoreEd25519Signature: '[u8;64]',3537 /**3308 /**3538 * Lookup477: sp_core::sr25519::Signature3309 * Lookup461: sp_core::sr25519::Signature3539 **/3310 **/3540 SpCoreSr25519Signature: '[u8;64]',3311 SpCoreSr25519Signature: '[u8;64]',3541 /**3312 /**3542 * Lookup478: sp_core::ecdsa::Signature3313 * Lookup462: sp_core::ecdsa::Signature3543 **/3314 **/3544 SpCoreEcdsaSignature: '[u8;65]',3315 SpCoreEcdsaSignature: '[u8;65]',3545 /**3316 /**3546 * Lookup481: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3317 * Lookup465: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3547 **/3318 **/3548 FrameSystemExtensionsCheckSpecVersion: 'Null',3319 FrameSystemExtensionsCheckSpecVersion: 'Null',3549 /**3320 /**3550 * Lookup482: frame_system::extensions::check_tx_version::CheckTxVersion<T>3321 * Lookup466: frame_system::extensions::check_tx_version::CheckTxVersion<T>3551 **/3322 **/3552 FrameSystemExtensionsCheckTxVersion: 'Null',3323 FrameSystemExtensionsCheckTxVersion: 'Null',3553 /**3324 /**3554 * Lookup483: frame_system::extensions::check_genesis::CheckGenesis<T>3325 * Lookup467: frame_system::extensions::check_genesis::CheckGenesis<T>3555 **/3326 **/3556 FrameSystemExtensionsCheckGenesis: 'Null',3327 FrameSystemExtensionsCheckGenesis: 'Null',3557 /**3328 /**3558 * Lookup486: frame_system::extensions::check_nonce::CheckNonce<T>3329 * Lookup470: frame_system::extensions::check_nonce::CheckNonce<T>3559 **/3330 **/3560 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3331 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3561 /**3332 /**3562 * Lookup487: frame_system::extensions::check_weight::CheckWeight<T>3333 * Lookup471: frame_system::extensions::check_weight::CheckWeight<T>3563 **/3334 **/3564 FrameSystemExtensionsCheckWeight: 'Null',3335 FrameSystemExtensionsCheckWeight: 'Null',3565 /**3336 /**3566 * Lookup488: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3337 * Lookup472: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3567 **/3338 **/3568 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3339 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3569 /**3340 /**3570 * Lookup489: opal_runtime::Runtime3341 * Lookup473: opal_runtime::Runtime3571 **/3342 **/3572 OpalRuntimeRuntime: 'Null',3343 OpalRuntimeRuntime: 'Null',3573 /**3344 /**3574 * Lookup490: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3345 * Lookup474: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3575 **/3346 **/3576 PalletEthereumFakeTransactionFinalizer: 'Null'3347 PalletEthereumFakeTransactionFinalizer: 'Null'3577};3348};35783349tests/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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -28,8 +28,8 @@
readonly feeFrozen: u128;
}
- /** @name FrameSupportWeightsPerDispatchClassWeight (7) */
- interface FrameSupportWeightsPerDispatchClassWeight extends Struct {
+ /** @name FrameSupportDispatchPerDispatchClassWeight (7) */
+ interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
readonly normal: Weight;
readonly operational: Weight;
readonly mandatory: Weight;
@@ -65,12 +65,12 @@
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;
@@ -89,23 +89,23 @@
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
}
- /** @name FrameSupportWeightsDispatchInfo (20) */
- interface FrameSupportWeightsDispatchInfo extends Struct {
+ /** @name FrameSupportDispatchDispatchInfo (20) */
+ interface FrameSupportDispatchDispatchInfo extends Struct {
readonly weight: Weight;
- readonly class: FrameSupportWeightsDispatchClass;
- readonly paysFee: FrameSupportWeightsPays;
+ readonly class: FrameSupportDispatchDispatchClass;
+ readonly paysFee: FrameSupportDispatchPays;
}
- /** @name FrameSupportWeightsDispatchClass (21) */
- interface FrameSupportWeightsDispatchClass extends Enum {
+ /** @name FrameSupportDispatchDispatchClass (21) */
+ interface FrameSupportDispatchDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
readonly isMandatory: boolean;
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
- /** @name FrameSupportWeightsPays (22) */
- interface FrameSupportWeightsPays extends Enum {
+ /** @name FrameSupportDispatchPays (22) */
+ interface FrameSupportDispatchPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
@@ -1132,41 +1132,7 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletUniqueSchedulerEvent (93) */
- 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 FrameSupportScheduleLookupError (96) */
- interface FrameSupportScheduleLookupError extends Enum {
- readonly isUnknown: boolean;
- readonly isBadFormat: boolean;
- readonly type: 'Unknown' | 'BadFormat';
- }
-
- /** @name PalletCommonEvent (97) */
+ /** @name PalletCommonEvent (93) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1193,14 +1159,14 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
}
- /** @name PalletStructureEvent (100) */
+ /** @name PalletStructureEvent (96) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (101) */
+ /** @name PalletRmrkCoreEvent (97) */
interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -1290,7 +1256,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */
interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1299,7 +1265,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name PalletRmrkEquipEvent (107) */
+ /** @name PalletRmrkEquipEvent (103) */
interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -1314,7 +1280,7 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
- /** @name PalletAppPromotionEvent (108) */
+ /** @name PalletAppPromotionEvent (104) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1327,7 +1293,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (109) */
+ /** @name PalletForeignAssetsModuleEvent (105) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1354,7 +1320,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (110) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (106) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1362,7 +1328,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (111) */
+ /** @name PalletEvmEvent (107) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: EthereumLog;
@@ -1381,21 +1347,21 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
}
- /** @name EthereumLog (112) */
+ /** @name EthereumLog (108) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (116) */
+ /** @name PalletEthereumEvent (112) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (117) */
+ /** @name EvmCoreErrorExitReason (113) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1408,7 +1374,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (118) */
+ /** @name EvmCoreErrorExitSucceed (114) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1416,7 +1382,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (119) */
+ /** @name EvmCoreErrorExitError (115) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1437,13 +1403,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (122) */
+ /** @name EvmCoreErrorExitRevert (118) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (123) */
+ /** @name EvmCoreErrorExitFatal (119) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1454,7 +1420,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (124) */
+ /** @name PalletEvmContractHelpersEvent (120) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1465,7 +1431,7 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name FrameSystemPhase (125) */
+ /** @name FrameSystemPhase (121) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1474,13 +1440,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (127) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (124) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (128) */
+ /** @name FrameSystemCall (125) */
interface FrameSystemCall extends Enum {
readonly isFillBlock: boolean;
readonly asFillBlock: {
@@ -1522,21 +1488,21 @@
readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (133) */
+ /** @name FrameSystemLimitsBlockWeights (130) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: Weight;
readonly maxBlock: Weight;
- readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
+ readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (134) */
- interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */
+ interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (135) */
+ /** @name FrameSystemLimitsWeightsPerClass (132) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: Weight;
readonly maxExtrinsic: Option<Weight>;
@@ -1544,25 +1510,25 @@
readonly reserved: Option<Weight>;
}
- /** @name FrameSystemLimitsBlockLength (137) */
+ /** @name FrameSystemLimitsBlockLength (134) */
interface FrameSystemLimitsBlockLength extends Struct {
- readonly max: FrameSupportWeightsPerDispatchClassU32;
+ readonly max: FrameSupportDispatchPerDispatchClassU32;
}
- /** @name FrameSupportWeightsPerDispatchClassU32 (138) */
- interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
+ /** @name FrameSupportDispatchPerDispatchClassU32 (135) */
+ interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name FrameSupportWeightsRuntimeDbWeight (139) */
- interface FrameSupportWeightsRuntimeDbWeight extends Struct {
+ /** @name SpWeightsRuntimeDbWeight (136) */
+ interface SpWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (140) */
+ /** @name SpVersionRuntimeVersion (137) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1574,7 +1540,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (145) */
+ /** @name FrameSystemError (142) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1585,7 +1551,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (146) */
+ /** @name PolkadotPrimitivesV2PersistedValidationData (143) */
interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
@@ -1593,18 +1559,18 @@
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */
interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (150) */
+ /** @name SpTrieStorageProof (147) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1612,7 +1578,7 @@
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */
interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
@@ -1622,7 +1588,7 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */
interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
@@ -1635,13 +1601,13 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (163) */
+ /** @name CumulusPalletParachainSystemCall (160) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1662,7 +1628,7 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
@@ -1670,19 +1636,19 @@
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (172) */
+ /** @name CumulusPalletParachainSystemError (169) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1695,14 +1661,14 @@
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
}
- /** @name PalletBalancesBalanceLock (174) */
+ /** @name PalletBalancesBalanceLock (171) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (175) */
+ /** @name PalletBalancesReasons (172) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -1710,20 +1676,20 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (178) */
+ /** @name PalletBalancesReserveData (175) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesReleases (180) */
+ /** @name PalletBalancesReleases (177) */
interface PalletBalancesReleases extends Enum {
readonly isV100: boolean;
readonly isV200: boolean;
readonly type: 'V100' | 'V200';
}
- /** @name PalletBalancesCall (181) */
+ /** @name PalletBalancesCall (178) */
interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1760,7 +1726,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesError (184) */
+ /** @name PalletBalancesError (181) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -1773,7 +1739,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (186) */
+ /** @name PalletTimestampCall (183) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -1782,14 +1748,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (188) */
+ /** @name PalletTransactionPaymentReleases (185) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (189) */
+ /** @name PalletTreasuryProposal (186) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -1797,7 +1763,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (192) */
+ /** @name PalletTreasuryCall (189) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -1824,10 +1790,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (195) */
+ /** @name FrameSupportPalletId (192) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (196) */
+ /** @name PalletTreasuryError (193) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -1837,7 +1803,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (197) */
+ /** @name PalletSudoCall (194) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -1860,7 +1826,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (199) */
+ /** @name OrmlVestingModuleCall (196) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -1880,7 +1846,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlXtokensModuleCall (201) */
+ /** @name OrmlXtokensModuleCall (198) */
interface OrmlXtokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1927,7 +1893,7 @@
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
- /** @name XcmVersionedMultiAsset (202) */
+ /** @name XcmVersionedMultiAsset (199) */
interface XcmVersionedMultiAsset extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiAsset;
@@ -1936,7 +1902,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name OrmlTokensModuleCall (205) */
+ /** @name OrmlTokensModuleCall (202) */
interface OrmlTokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1973,7 +1939,7 @@
readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
}
- /** @name CumulusPalletXcmpQueueCall (206) */
+ /** @name CumulusPalletXcmpQueueCall (203) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2009,7 +1975,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (207) */
+ /** @name PalletXcmCall (204) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -2071,7 +2037,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedXcm (208) */
+ /** @name XcmVersionedXcm (205) */
interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -2082,7 +2048,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (209) */
+ /** @name XcmV0Xcm (206) */
interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2145,7 +2111,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0Order (211) */
+ /** @name XcmV0Order (208) */
interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -2193,14 +2159,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (213) */
+ /** @name XcmV0Response (210) */
interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV1Xcm (214) */
+ /** @name XcmV1Xcm (211) */
interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2269,7 +2235,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1Order (216) */
+ /** @name XcmV1Order (213) */
interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -2319,7 +2285,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1Response (218) */
+ /** @name XcmV1Response (215) */
interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2328,10 +2294,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name CumulusPalletXcmCall (232) */
+ /** @name CumulusPalletXcmCall (229) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (233) */
+ /** @name CumulusPalletDmpQueueCall (230) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2341,7 +2307,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (234) */
+ /** @name PalletInflationCall (231) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2350,7 +2316,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (235) */
+ /** @name PalletUniqueCall (232) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2508,7 +2474,7 @@
readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';
}
- /** @name UpDataStructsCollectionMode (240) */
+ /** @name UpDataStructsCollectionMode (237) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2517,7 +2483,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (241) */
+ /** @name UpDataStructsCreateCollectionData (238) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2531,14 +2497,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (243) */
+ /** @name UpDataStructsAccessMode (240) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (245) */
+ /** @name UpDataStructsCollectionLimits (242) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -2551,7 +2517,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (247) */
+ /** @name UpDataStructsSponsoringRateLimit (244) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -2559,43 +2525,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (250) */
+ /** @name UpDataStructsCollectionPermissions (247) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (252) */
+ /** @name UpDataStructsNestingPermissions (249) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (254) */
+ /** @name UpDataStructsOwnerRestrictedSet (251) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (259) */
+ /** @name UpDataStructsPropertyKeyPermission (256) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (260) */
+ /** @name UpDataStructsPropertyPermission (257) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (263) */
+ /** @name UpDataStructsProperty (260) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (266) */
+ /** @name UpDataStructsCreateItemData (263) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -2606,23 +2572,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (267) */
+ /** @name UpDataStructsCreateNftData (264) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (268) */
+ /** @name UpDataStructsCreateFungibleData (265) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (269) */
+ /** @name UpDataStructsCreateReFungibleData (266) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (272) */
+ /** @name UpDataStructsCreateItemExData (269) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2635,60 +2601,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (274) */
+ /** @name UpDataStructsCreateNftExData (271) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletUniqueSchedulerCall (284) */
- 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 FrameSupportScheduleMaybeHashed (286) */
- interface FrameSupportScheduleMaybeHashed extends Enum {
- readonly isValue: boolean;
- readonly asValue: Call;
- readonly isHash: boolean;
- readonly asHash: H256;
- readonly type: 'Value' | 'Hash';
- }
-
- /** @name PalletConfigurationCall (287) */
+ /** @name PalletConfigurationCall (281) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -2701,13 +2633,13 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
}
- /** @name PalletTemplateTransactionPaymentCall (289) */
+ /** @name PalletTemplateTransactionPaymentCall (283) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (290) */
+ /** @name PalletStructureCall (284) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (291) */
+ /** @name PalletRmrkCoreCall (285) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2813,7 +2745,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (297) */
+ /** @name RmrkTraitsResourceResourceTypes (291) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2824,7 +2756,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (299) */
+ /** @name RmrkTraitsResourceBasicResource (293) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2832,7 +2764,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (301) */
+ /** @name RmrkTraitsResourceComposableResource (295) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2842,7 +2774,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (302) */
+ /** @name RmrkTraitsResourceSlotResource (296) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2852,7 +2784,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (305) */
+ /** @name PalletRmrkEquipCall (299) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2874,7 +2806,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (308) */
+ /** @name RmrkTraitsPartPartType (302) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2883,14 +2815,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (310) */
+ /** @name RmrkTraitsPartFixedPart (304) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (311) */
+ /** @name RmrkTraitsPartSlotPart (305) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2898,7 +2830,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (312) */
+ /** @name RmrkTraitsPartEquippableList (306) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2907,20 +2839,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (314) */
+ /** @name RmrkTraitsTheme (308) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (316) */
+ /** @name RmrkTraitsThemeThemeProperty (310) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (318) */
+ /** @name PalletAppPromotionCall (312) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -2954,7 +2886,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (320) */
+ /** @name PalletForeignAssetsModuleCall (314) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -2971,7 +2903,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (321) */
+ /** @name PalletEvmCall (315) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3016,7 +2948,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (325) */
+ /** @name PalletEthereumCall (319) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3025,7 +2957,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (326) */
+ /** @name EthereumTransactionTransactionV2 (320) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3036,7 +2968,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (327) */
+ /** @name EthereumTransactionLegacyTransaction (321) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3047,7 +2979,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (328) */
+ /** @name EthereumTransactionTransactionAction (322) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3055,14 +2987,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (329) */
+ /** @name EthereumTransactionTransactionSignature (323) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (331) */
+ /** @name EthereumTransactionEip2930Transaction (325) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3077,13 +3009,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (333) */
+ /** @name EthereumTransactionAccessListItem (327) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (334) */
+ /** @name EthereumTransactionEip1559Transaction (328) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3099,7 +3031,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (335) */
+ /** @name PalletEvmMigrationCall (329) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3118,13 +3050,13 @@
readonly type: 'Begin' | 'SetData' | 'Finish';
}
- /** @name PalletSudoError (338) */
+ /** @name PalletSudoError (332) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (340) */
+ /** @name OrmlVestingModuleError (334) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3135,7 +3067,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (341) */
+ /** @name OrmlXtokensModuleError (335) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3159,26 +3091,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (344) */
+ /** @name OrmlTokensBalanceLock (338) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (346) */
+ /** @name OrmlTokensAccountData (340) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (348) */
+ /** @name OrmlTokensReserveData (342) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (350) */
+ /** @name OrmlTokensModuleError (344) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3191,21 +3123,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (352) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (346) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (353) */
+ /** @name CumulusPalletXcmpQueueInboundState (347) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (356) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (350) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3213,7 +3145,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (359) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (353) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3222,14 +3154,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (360) */
+ /** @name CumulusPalletXcmpQueueOutboundState (354) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (362) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (356) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3239,7 +3171,7 @@
readonly xcmpMaxIndividualWeight: Weight;
}
- /** @name CumulusPalletXcmpQueueError (364) */
+ /** @name CumulusPalletXcmpQueueError (358) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3249,7 +3181,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (365) */
+ /** @name PalletXcmError (359) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3267,29 +3199,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (366) */
+ /** @name CumulusPalletXcmError (360) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (367) */
+ /** @name CumulusPalletDmpQueueConfigData (361) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (368) */
+ /** @name CumulusPalletDmpQueuePageIndexData (362) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (371) */
+ /** @name CumulusPalletDmpQueueError (365) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (375) */
+ /** @name PalletUniqueError (369) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -3298,75 +3230,7 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletUniqueSchedulerScheduledV3 (378) */
- interface PalletUniqueSchedulerScheduledV3 extends Struct {
- readonly maybeId: Option<U8aFixed>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: OpalRuntimeOriginCaller;
- }
-
- /** @name OpalRuntimeOriginCaller (379) */
- interface OpalRuntimeOriginCaller extends Enum {
- readonly isSystem: boolean;
- readonly asSystem: FrameSupportDispatchRawOrigin;
- readonly isVoid: boolean;
- readonly isPolkadotXcm: boolean;
- readonly asPolkadotXcm: PalletXcmOrigin;
- readonly isCumulusXcm: boolean;
- readonly asCumulusXcm: CumulusPalletXcmOrigin;
- readonly isEthereum: boolean;
- readonly asEthereum: PalletEthereumRawOrigin;
- readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
- }
-
- /** @name FrameSupportDispatchRawOrigin (380) */
- interface FrameSupportDispatchRawOrigin extends Enum {
- readonly isRoot: boolean;
- readonly isSigned: boolean;
- readonly asSigned: AccountId32;
- readonly isNone: boolean;
- readonly type: 'Root' | 'Signed' | 'None';
- }
-
- /** @name PalletXcmOrigin (381) */
- interface PalletXcmOrigin extends Enum {
- readonly isXcm: boolean;
- readonly asXcm: XcmV1MultiLocation;
- readonly isResponse: boolean;
- readonly asResponse: XcmV1MultiLocation;
- readonly type: 'Xcm' | 'Response';
- }
-
- /** @name CumulusPalletXcmOrigin (382) */
- interface CumulusPalletXcmOrigin extends Enum {
- readonly isRelay: boolean;
- readonly isSiblingParachain: boolean;
- readonly asSiblingParachain: u32;
- readonly type: 'Relay' | 'SiblingParachain';
- }
-
- /** @name PalletEthereumRawOrigin (383) */
- interface PalletEthereumRawOrigin extends Enum {
- readonly isEthereumTransaction: boolean;
- readonly asEthereumTransaction: H160;
- readonly type: 'EthereumTransaction';
- }
-
- /** @name SpCoreVoid (384) */
- type SpCoreVoid = Null;
-
- /** @name PalletUniqueSchedulerError (385) */
- interface PalletUniqueSchedulerError extends Enum {
- readonly isFailedToSchedule: boolean;
- readonly isNotFound: boolean;
- readonly isTargetBlockNumberInPast: boolean;
- readonly isRescheduleNoChange: boolean;
- readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
- }
-
- /** @name UpDataStructsCollection (386) */
+ /** @name UpDataStructsCollection (370) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3379,7 +3243,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (387) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (371) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3389,43 +3253,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (389) */
+ /** @name UpDataStructsProperties (373) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (390) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (374) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (395) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (379) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (402) */
+ /** @name UpDataStructsCollectionStats (386) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (403) */
+ /** @name UpDataStructsTokenChild (387) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (404) */
+ /** @name PhantomTypeUpDataStructs (388) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (406) */
+ /** @name UpDataStructsTokenData (390) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (408) */
+ /** @name UpDataStructsRpcCollection (392) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3441,13 +3305,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (409) */
+ /** @name UpDataStructsRpcCollectionFlags (393) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (410) */
+ /** @name RmrkTraitsCollectionCollectionInfo (394) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3456,7 +3320,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (411) */
+ /** @name RmrkTraitsNftNftInfo (395) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3465,13 +3329,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (413) */
+ /** @name RmrkTraitsNftRoyaltyInfo (397) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (414) */
+ /** @name RmrkTraitsResourceResourceInfo (398) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3479,26 +3343,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (415) */
+ /** @name RmrkTraitsPropertyPropertyInfo (399) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (416) */
+ /** @name RmrkTraitsBaseBaseInfo (400) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (417) */
+ /** @name RmrkTraitsNftNftChild (401) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (419) */
+ /** @name PalletCommonError (403) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3537,7 +3401,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
}
- /** @name PalletFungibleError (421) */
+ /** @name PalletFungibleError (405) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3547,12 +3411,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletRefungibleItemData (422) */
+ /** @name PalletRefungibleItemData (406) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (427) */
+ /** @name PalletRefungibleError (411) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3562,19 +3426,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (428) */
+ /** @name PalletNonfungibleItemData (412) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (430) */
+ /** @name UpDataStructsPropertyScope (414) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (432) */
+ /** @name PalletNonfungibleError (416) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3582,7 +3446,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (433) */
+ /** @name PalletStructureError (417) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3591,7 +3455,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (434) */
+ /** @name PalletRmrkCoreError (418) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3615,7 +3479,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (436) */
+ /** @name PalletRmrkEquipError (420) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3627,7 +3491,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (442) */
+ /** @name PalletAppPromotionError (426) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3638,7 +3502,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (443) */
+ /** @name PalletForeignAssetsModuleError (427) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3647,7 +3511,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (446) */
+ /** @name PalletEvmError (430) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3658,7 +3522,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (449) */
+ /** @name FpRpcTransactionStatus (433) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3669,10 +3533,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (451) */
+ /** @name EthbloomBloom (435) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (453) */
+ /** @name EthereumReceiptReceiptV3 (437) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3683,7 +3547,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (454) */
+ /** @name EthereumReceiptEip658ReceiptData (438) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3691,14 +3555,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (455) */
+ /** @name EthereumBlock (439) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (456) */
+ /** @name EthereumHeader (440) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3717,24 +3581,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (457) */
+ /** @name EthereumTypesHashH64 (441) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (462) */
+ /** @name PalletEthereumError (446) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (463) */
+ /** @name PalletEvmCoderSubstrateError (447) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (464) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (448) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3744,7 +3608,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (465) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (449) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3752,7 +3616,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (471) */
+ /** @name PalletEvmContractHelpersError (455) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3760,14 +3624,14 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (472) */
+ /** @name PalletEvmMigrationError (456) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (474) */
+ /** @name SpRuntimeMultiSignature (458) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3778,37 +3642,37 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (475) */
+ /** @name SpCoreEd25519Signature (459) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (477) */
+ /** @name SpCoreSr25519Signature (461) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (478) */
+ /** @name SpCoreEcdsaSignature (462) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (481) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (465) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (482) */
+ /** @name FrameSystemExtensionsCheckTxVersion (466) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (483) */
+ /** @name FrameSystemExtensionsCheckGenesis (467) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (486) */
+ /** @name FrameSystemExtensionsCheckNonce (470) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (487) */
+ /** @name FrameSystemExtensionsCheckWeight (471) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (488) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (472) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (489) */
+ /** @name OpalRuntimeRuntime (473) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (490) */
+ /** @name PalletEthereumFakeTransactionFinalizer (474) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module
tests/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