git.delta.rocks / unique-network / refs/commits / 9179b1d40a94

difftreelog

test regenerate types

Yaroslav Bolyukin2022-10-20parent: #92cf6f1.patch.diff
in: master

11 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { Codec } from '@polkadot/types-codec/types';10import type { Codec } from '@polkadot/types-codec/types';
11import type { Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { Perbill, Permill } from '@polkadot/types/interfaces/runtime';
12import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, XcmV1MultiLocation } from '@polkadot/types/lookup';
1313
14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
1515
92 **/92 **/
93 [key: string]: Codec;93 [key: string]: Codec;
94 };94 };
95 scheduler: {
96 /**
97 * The maximum weight that may be scheduled per block for any dispatchables of less
98 * priority than `schedule::HARD_DEADLINE`.
99 **/
100 maximumWeight: Weight & AugmentedConst<ApiType>;
101 /**
102 * The maximum number of scheduled calls in the queue for a single block.
103 * Not strictly enforced, but used for weight estimation.
104 **/
105 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
106 /**
107 * Generic const
108 **/
109 [key: string]: Codec;
110 };
111 system: {95 system: {
112 /**96 /**
113 * Maximum number of block number to block hash mappings to keep (oldest pruned first).97 * Maximum number of block number to block hash mappings to keep (oldest pruned first).
124 /**108 /**
125 * The weight of runtime database operations the runtime can invoke.109 * The weight of runtime database operations the runtime can invoke.
126 **/110 **/
127 dbWeight: FrameSupportWeightsRuntimeDbWeight & AugmentedConst<ApiType>;111 dbWeight: SpWeightsRuntimeDbWeight & AugmentedConst<ApiType>;
128 /**112 /**
129 * The designated SS58 prefix of this chain.113 * The designated SS58 prefix of this chain.
130 * 114 *
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
636 **/636 **/
637 [key: string]: AugmentedError<ApiType>;637 [key: string]: AugmentedError<ApiType>;
638 };638 };
639 scheduler: {
640 /**
641 * Failed to schedule a call
642 **/
643 FailedToSchedule: AugmentedError<ApiType>;
644 /**
645 * Cannot find the scheduled call.
646 **/
647 NotFound: AugmentedError<ApiType>;
648 /**
649 * Reschedule failed because it does not change scheduled time.
650 **/
651 RescheduleNoChange: AugmentedError<ApiType>;
652 /**
653 * Given target block number is in the past.
654 **/
655 TargetBlockNumberInPast: AugmentedError<ApiType>;
656 /**
657 * Generic error
658 **/
659 [key: string]: AugmentedError<ApiType>;
660 };
661 structure: {639 structure: {
662 /**640 /**
663 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.641 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
77
8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
9import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
10import type { ITuple } from '@polkadot/types-codec/types';
11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';10import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
12import 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';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
1312
14export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;13export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
1514
467 **/466 **/
468 [key: string]: AugmentedEvent<ApiType>;467 [key: string]: AugmentedEvent<ApiType>;
469 };468 };
470 scheduler: {
471 /**
472 * The call for the provided hash was not found so the task has been aborted.
473 **/
474 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;
475 /**
476 * Canceled some task.
477 **/
478 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
479 /**
480 * Dispatched some task.
481 **/
482 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> }>;
483 /**
484 * Scheduled some task.
485 **/
486 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
487 /**
488 * Generic event
489 **/
490 [key: string]: AugmentedEvent<ApiType>;
491 };
492 structure: {469 structure: {
493 /**470 /**
494 * Executed call on behalf of the token.471 * Executed call on behalf of the token.
525 /**502 /**
526 * An extrinsic failed.503 * An extrinsic failed.
527 **/504 **/
528 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;505 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;
529 /**506 /**
530 * An extrinsic completed successfully.507 * An extrinsic completed successfully.
531 **/508 **/
532 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;509 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;
533 /**510 /**
534 * An account was reaped.511 * An account was reaped.
535 **/512 **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/storage';6import '@polkadot/api-base/types/storage';
77
8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
12import 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';12import 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';
13import type { Observable } from '@polkadot/types/types';13import type { Observable } from '@polkadot/types/types';
1414
15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
670 **/670 **/
671 [key: string]: QueryableStorageEntry<ApiType>;671 [key: string]: QueryableStorageEntry<ApiType>;
672 };672 };
673 scheduler: {
674 /**
675 * Items to be executed, indexed by the block number that they should be executed on.
676 **/
677 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletUniqueSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
678 /**
679 * Lookup from identity to the block number and index of the task.
680 **/
681 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
682 /**
683 * Generic query
684 **/
685 [key: string]: QueryableStorageEntry<ApiType>;
686 };
687 structure: {673 structure: {
688 /**674 /**
689 * Generic query675 * Generic query
716 /**702 /**
717 * The current weight for the block.703 * The current weight for the block.
718 **/704 **/
719 blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;705 blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportDispatchPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;
720 /**706 /**
721 * Digest of the current block, also part of the block header.707 * Digest of the current block, also part of the block header.
722 **/708 **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/submittable';6import '@polkadot/api-base/types/submittable';
77
8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
12import 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';12import 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';
1313
14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
821 **/821 **/
822 [key: string]: SubmittableExtrinsicFunction<ApiType>;822 [key: string]: SubmittableExtrinsicFunction<ApiType>;
823 };823 };
824 scheduler: {
825 /**
826 * Cancel a named scheduled task.
827 **/
828 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
829 /**
830 * Schedule a named task.
831 **/
832 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]>;
833 /**
834 * Schedule a named task after a delay.
835 *
836 * # <weight>
837 * Same as [`schedule_named`](Self::schedule_named).
838 * # </weight>
839 **/
840 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]>;
841 /**
842 * Generic tx
843 **/
844 [key: string]: SubmittableExtrinsicFunction<ApiType>;
845 };
846 structure: {824 structure: {
847 /**825 /**
848 * Generic tx826 * Generic tx
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import 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';8import 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';
9import type { Data, StorageKey } from '@polkadot/types';9import type { Data, StorageKey } from '@polkadot/types';
10import 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';10import 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';
11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
328 CumulusPalletXcmCall: CumulusPalletXcmCall;328 CumulusPalletXcmCall: CumulusPalletXcmCall;
329 CumulusPalletXcmError: CumulusPalletXcmError;329 CumulusPalletXcmError: CumulusPalletXcmError;
330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
331 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
332 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;331 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
333 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;332 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
334 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;333 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
518 ForkTreePendingChange: ForkTreePendingChange;517 ForkTreePendingChange: ForkTreePendingChange;
519 ForkTreePendingChangeNode: ForkTreePendingChangeNode;518 ForkTreePendingChangeNode: ForkTreePendingChangeNode;
520 FpRpcTransactionStatus: FpRpcTransactionStatus;519 FpRpcTransactionStatus: FpRpcTransactionStatus;
521 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;520 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
521 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
522 FrameSupportDispatchPays: FrameSupportDispatchPays;
523 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
524 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
525 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
522 FrameSupportPalletId: FrameSupportPalletId;526 FrameSupportPalletId: FrameSupportPalletId;
523 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
524 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
525 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;527 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
526 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
527 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
528 FrameSupportWeightsPays: FrameSupportWeightsPays;
529 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;
530 FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;
531 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
532 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;
533 FrameSystemAccountInfo: FrameSystemAccountInfo;528 FrameSystemAccountInfo: FrameSystemAccountInfo;
534 FrameSystemCall: FrameSystemCall;529 FrameSystemCall: FrameSystemCall;
535 FrameSystemError: FrameSystemError;530 FrameSystemError: FrameSystemError;
774 OffenceDetails: OffenceDetails;769 OffenceDetails: OffenceDetails;
775 Offender: Offender;770 Offender: Offender;
776 OldV1SessionInfo: OldV1SessionInfo;771 OldV1SessionInfo: OldV1SessionInfo;
777 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
778 OpalRuntimeRuntime: OpalRuntimeRuntime;772 OpalRuntimeRuntime: OpalRuntimeRuntime;
779 OpaqueCall: OpaqueCall;773 OpaqueCall: OpaqueCall;
780 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;774 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
841 PalletEthereumError: PalletEthereumError;835 PalletEthereumError: PalletEthereumError;
842 PalletEthereumEvent: PalletEthereumEvent;836 PalletEthereumEvent: PalletEthereumEvent;
843 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;837 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
844 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
845 PalletEventMetadataLatest: PalletEventMetadataLatest;838 PalletEventMetadataLatest: PalletEventMetadataLatest;
846 PalletEventMetadataV14: PalletEventMetadataV14;839 PalletEventMetadataV14: PalletEventMetadataV14;
847 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;840 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
896 PalletUniqueCall: PalletUniqueCall;889 PalletUniqueCall: PalletUniqueCall;
897 PalletUniqueError: PalletUniqueError;890 PalletUniqueError: PalletUniqueError;
898 PalletUniqueRawEvent: PalletUniqueRawEvent;891 PalletUniqueRawEvent: PalletUniqueRawEvent;
899 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
900 PalletUniqueSchedulerError: PalletUniqueSchedulerError;
901 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
902 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
903 PalletVersion: PalletVersion;892 PalletVersion: PalletVersion;
904 PalletXcmCall: PalletXcmCall;893 PalletXcmCall: PalletXcmCall;
905 PalletXcmError: PalletXcmError;894 PalletXcmError: PalletXcmError;
906 PalletXcmEvent: PalletXcmEvent;895 PalletXcmEvent: PalletXcmEvent;
907 PalletXcmOrigin: PalletXcmOrigin;
908 ParachainDispatchOrigin: ParachainDispatchOrigin;896 ParachainDispatchOrigin: ParachainDispatchOrigin;
909 ParachainInherentData: ParachainInherentData;897 ParachainInherentData: ParachainInherentData;
910 ParachainProposal: ParachainProposal;898 ParachainProposal: ParachainProposal;
1178 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1166 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
1179 SpCoreEd25519Signature: SpCoreEd25519Signature;1167 SpCoreEd25519Signature: SpCoreEd25519Signature;
1180 SpCoreSr25519Signature: SpCoreSr25519Signature;1168 SpCoreSr25519Signature: SpCoreSr25519Signature;
1181 SpCoreVoid: SpCoreVoid;
1182 SpecVersion: SpecVersion;1169 SpecVersion: SpecVersion;
1183 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1170 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
1184 SpRuntimeDigest: SpRuntimeDigest;1171 SpRuntimeDigest: SpRuntimeDigest;
1190 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1177 SpRuntimeTransactionalError: SpRuntimeTransactionalError;
1191 SpTrieStorageProof: SpTrieStorageProof;1178 SpTrieStorageProof: SpTrieStorageProof;
1192 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1179 SpVersionRuntimeVersion: SpVersionRuntimeVersion;
1180 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
1193 Sr25519Signature: Sr25519Signature;1181 Sr25519Signature: Sr25519Signature;
1194 StakingLedger: StakingLedger;1182 StakingLedger: StakingLedger;
1195 StakingLedgerTo223: StakingLedgerTo223;1183 StakingLedgerTo223: StakingLedgerTo223;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
154}154}
155
156/** @name CumulusPalletXcmOrigin */
157export interface CumulusPalletXcmOrigin extends Enum {
158 readonly isRelay: boolean;
159 readonly isSiblingParachain: boolean;
160 readonly asSiblingParachain: u32;
161 readonly type: 'Relay' | 'SiblingParachain';
162}
163155
164/** @name CumulusPalletXcmpQueueCall */156/** @name CumulusPalletXcmpQueueCall */
165export interface CumulusPalletXcmpQueueCall extends Enum {157export interface CumulusPalletXcmpQueueCall extends Enum {
501 readonly logsBloom: EthbloomBloom;493 readonly logsBloom: EthbloomBloom;
502}494}
503495
504/** @name FrameSupportDispatchRawOrigin */496/** @name FrameSupportDispatchDispatchClass */
505export interface FrameSupportDispatchRawOrigin extends Enum {497export interface FrameSupportDispatchDispatchClass extends Enum {
506 readonly isRoot: boolean;498 readonly isNormal: boolean;
507 readonly isSigned: boolean;499 readonly isOperational: boolean;
508 readonly asSigned: AccountId32;
509 readonly isNone: boolean;500 readonly isMandatory: boolean;
510 readonly type: 'Root' | 'Signed' | 'None';501 readonly type: 'Normal' | 'Operational' | 'Mandatory';
511}502}
512503
513/** @name FrameSupportPalletId */504/** @name FrameSupportDispatchDispatchInfo */
514export interface FrameSupportPalletId extends U8aFixed {}505export interface FrameSupportDispatchDispatchInfo extends Struct {
506 readonly weight: Weight;
507 readonly class: FrameSupportDispatchDispatchClass;
508 readonly paysFee: FrameSupportDispatchPays;
509}
515510
516/** @name FrameSupportScheduleLookupError */511/** @name FrameSupportDispatchPays */
517export interface FrameSupportScheduleLookupError extends Enum {512export interface FrameSupportDispatchPays extends Enum {
518 readonly isUnknown: boolean;513 readonly isYes: boolean;
519 readonly isBadFormat: boolean;514 readonly isNo: boolean;
520 readonly type: 'Unknown' | 'BadFormat';515 readonly type: 'Yes' | 'No';
521}516}
522517
523/** @name FrameSupportScheduleMaybeHashed */518/** @name FrameSupportDispatchPerDispatchClassU32 */
519export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
520 readonly normal: u32;
521 readonly operational: u32;
522 readonly mandatory: u32;
523}
524
525/** @name FrameSupportDispatchPerDispatchClassWeight */
526export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
527 readonly normal: Weight;
528 readonly operational: Weight;
529 readonly mandatory: Weight;
530}
531
532/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */
524export interface FrameSupportScheduleMaybeHashed extends Enum {533export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
525 readonly isValue: boolean;534 readonly normal: FrameSystemLimitsWeightsPerClass;
526 readonly asValue: Call;535 readonly operational: FrameSystemLimitsWeightsPerClass;
527 readonly isHash: boolean;536 readonly mandatory: FrameSystemLimitsWeightsPerClass;
528 readonly asHash: H256;
529 readonly type: 'Value' | 'Hash';
530}537}
538
539/** @name FrameSupportPalletId */
540export interface FrameSupportPalletId extends U8aFixed {}
531541
532/** @name FrameSupportTokensMiscBalanceStatus */542/** @name FrameSupportTokensMiscBalanceStatus */
533export interface FrameSupportTokensMiscBalanceStatus extends Enum {543export interface FrameSupportTokensMiscBalanceStatus extends Enum {
536 readonly type: 'Free' | 'Reserved';546 readonly type: 'Free' | 'Reserved';
537}547}
538
539/** @name FrameSupportWeightsDispatchClass */
540export interface FrameSupportWeightsDispatchClass extends Enum {
541 readonly isNormal: boolean;
542 readonly isOperational: boolean;
543 readonly isMandatory: boolean;
544 readonly type: 'Normal' | 'Operational' | 'Mandatory';
545}
546
547/** @name FrameSupportWeightsDispatchInfo */
548export interface FrameSupportWeightsDispatchInfo extends Struct {
549 readonly weight: Weight;
550 readonly class: FrameSupportWeightsDispatchClass;
551 readonly paysFee: FrameSupportWeightsPays;
552}
553
554/** @name FrameSupportWeightsPays */
555export interface FrameSupportWeightsPays extends Enum {
556 readonly isYes: boolean;
557 readonly isNo: boolean;
558 readonly type: 'Yes' | 'No';
559}
560
561/** @name FrameSupportWeightsPerDispatchClassU32 */
562export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
563 readonly normal: u32;
564 readonly operational: u32;
565 readonly mandatory: u32;
566}
567
568/** @name FrameSupportWeightsPerDispatchClassWeight */
569export interface FrameSupportWeightsPerDispatchClassWeight extends Struct {
570 readonly normal: Weight;
571 readonly operational: Weight;
572 readonly mandatory: Weight;
573}
574
575/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */
576export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
577 readonly normal: FrameSystemLimitsWeightsPerClass;
578 readonly operational: FrameSystemLimitsWeightsPerClass;
579 readonly mandatory: FrameSystemLimitsWeightsPerClass;
580}
581
582/** @name FrameSupportWeightsRuntimeDbWeight */
583export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
584 readonly read: u64;
585 readonly write: u64;
586}
587548
588/** @name FrameSystemAccountInfo */549/** @name FrameSystemAccountInfo */
589export interface FrameSystemAccountInfo extends Struct {550export interface FrameSystemAccountInfo extends Struct {
651export interface FrameSystemEvent extends Enum {612export interface FrameSystemEvent extends Enum {
652 readonly isExtrinsicSuccess: boolean;613 readonly isExtrinsicSuccess: boolean;
653 readonly asExtrinsicSuccess: {614 readonly asExtrinsicSuccess: {
654 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;615 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
655 } & Struct;616 } & Struct;
656 readonly isExtrinsicFailed: boolean;617 readonly isExtrinsicFailed: boolean;
657 readonly asExtrinsicFailed: {618 readonly asExtrinsicFailed: {
658 readonly dispatchError: SpRuntimeDispatchError;619 readonly dispatchError: SpRuntimeDispatchError;
659 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;620 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
660 } & Struct;621 } & Struct;
661 readonly isCodeUpdated: boolean;622 readonly isCodeUpdated: boolean;
662 readonly isNewAccount: boolean;623 readonly isNewAccount: boolean;
705666
706/** @name FrameSystemLimitsBlockLength */667/** @name FrameSystemLimitsBlockLength */
707export interface FrameSystemLimitsBlockLength extends Struct {668export interface FrameSystemLimitsBlockLength extends Struct {
708 readonly max: FrameSupportWeightsPerDispatchClassU32;669 readonly max: FrameSupportDispatchPerDispatchClassU32;
709}670}
710671
711/** @name FrameSystemLimitsBlockWeights */672/** @name FrameSystemLimitsBlockWeights */
712export interface FrameSystemLimitsBlockWeights extends Struct {673export interface FrameSystemLimitsBlockWeights extends Struct {
713 readonly baseBlock: Weight;674 readonly baseBlock: Weight;
714 readonly maxBlock: Weight;675 readonly maxBlock: Weight;
715 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;676 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
716}677}
717678
718/** @name FrameSystemLimitsWeightsPerClass */679/** @name FrameSystemLimitsWeightsPerClass */
732 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';693 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
733}694}
734
735/** @name OpalRuntimeOriginCaller */
736export interface OpalRuntimeOriginCaller extends Enum {
737 readonly isSystem: boolean;
738 readonly asSystem: FrameSupportDispatchRawOrigin;
739 readonly isVoid: boolean;
740 readonly asVoid: SpCoreVoid;
741 readonly isPolkadotXcm: boolean;
742 readonly asPolkadotXcm: PalletXcmOrigin;
743 readonly isCumulusXcm: boolean;
744 readonly asCumulusXcm: CumulusPalletXcmOrigin;
745 readonly isEthereum: boolean;
746 readonly asEthereum: PalletEthereumRawOrigin;
747 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
748}
749695
750/** @name OpalRuntimeRuntime */696/** @name OpalRuntimeRuntime */
751export interface OpalRuntimeRuntime extends Null {}697export interface OpalRuntimeRuntime extends Null {}
1357/** @name PalletEthereumFakeTransactionFinalizer */1303/** @name PalletEthereumFakeTransactionFinalizer */
1358export interface PalletEthereumFakeTransactionFinalizer extends Null {}1304export interface PalletEthereumFakeTransactionFinalizer extends Null {}
1359
1360/** @name PalletEthereumRawOrigin */
1361export interface PalletEthereumRawOrigin extends Enum {
1362 readonly isEthereumTransaction: boolean;
1363 readonly asEthereumTransaction: H160;
1364 readonly type: 'EthereumTransaction';
1365}
13661305
1367/** @name PalletEvmAccountBasicCrossAccountIdRepr */1306/** @name PalletEvmAccountBasicCrossAccountIdRepr */
1368export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1307export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
2278 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2217 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
2279}2218}
2280
2281/** @name PalletUniqueSchedulerCall */
2282export interface PalletUniqueSchedulerCall extends Enum {
2283 readonly isScheduleNamed: boolean;
2284 readonly asScheduleNamed: {
2285 readonly id: U8aFixed;
2286 readonly when: u32;
2287 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2288 readonly priority: u8;
2289 readonly call: FrameSupportScheduleMaybeHashed;
2290 } & Struct;
2291 readonly isCancelNamed: boolean;
2292 readonly asCancelNamed: {
2293 readonly id: U8aFixed;
2294 } & Struct;
2295 readonly isScheduleNamedAfter: boolean;
2296 readonly asScheduleNamedAfter: {
2297 readonly id: U8aFixed;
2298 readonly after: u32;
2299 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2300 readonly priority: u8;
2301 readonly call: FrameSupportScheduleMaybeHashed;
2302 } & Struct;
2303 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
2304}
2305
2306/** @name PalletUniqueSchedulerError */
2307export interface PalletUniqueSchedulerError extends Enum {
2308 readonly isFailedToSchedule: boolean;
2309 readonly isNotFound: boolean;
2310 readonly isTargetBlockNumberInPast: boolean;
2311 readonly isRescheduleNoChange: boolean;
2312 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
2313}
2314
2315/** @name PalletUniqueSchedulerEvent */
2316export interface PalletUniqueSchedulerEvent extends Enum {
2317 readonly isScheduled: boolean;
2318 readonly asScheduled: {
2319 readonly when: u32;
2320 readonly index: u32;
2321 } & Struct;
2322 readonly isCanceled: boolean;
2323 readonly asCanceled: {
2324 readonly when: u32;
2325 readonly index: u32;
2326 } & Struct;
2327 readonly isDispatched: boolean;
2328 readonly asDispatched: {
2329 readonly task: ITuple<[u32, u32]>;
2330 readonly id: Option<U8aFixed>;
2331 readonly result: Result<Null, SpRuntimeDispatchError>;
2332 } & Struct;
2333 readonly isCallLookupFailed: boolean;
2334 readonly asCallLookupFailed: {
2335 readonly task: ITuple<[u32, u32]>;
2336 readonly id: Option<U8aFixed>;
2337 readonly error: FrameSupportScheduleLookupError;
2338 } & Struct;
2339 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
2340}
2341
2342/** @name PalletUniqueSchedulerScheduledV3 */
2343export interface PalletUniqueSchedulerScheduledV3 extends Struct {
2344 readonly maybeId: Option<U8aFixed>;
2345 readonly priority: u8;
2346 readonly call: FrameSupportScheduleMaybeHashed;
2347 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2348 readonly origin: OpalRuntimeOriginCaller;
2349}
23502219
2351/** @name PalletXcmCall */2220/** @name PalletXcmCall */
2352export interface PalletXcmCall extends Enum {2221export interface PalletXcmCall extends Enum {
2465 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2334 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
2466}2335}
2467
2468/** @name PalletXcmOrigin */
2469export interface PalletXcmOrigin extends Enum {
2470 readonly isXcm: boolean;
2471 readonly asXcm: XcmV1MultiLocation;
2472 readonly isResponse: boolean;
2473 readonly asResponse: XcmV1MultiLocation;
2474 readonly type: 'Xcm' | 'Response';
2475}
24762336
2477/** @name PhantomTypeUpDataStructs */2337/** @name PhantomTypeUpDataStructs */
2478export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}2338export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
2694/** @name SpCoreSr25519Signature */2554/** @name SpCoreSr25519Signature */
2695export interface SpCoreSr25519Signature extends U8aFixed {}2555export interface SpCoreSr25519Signature extends U8aFixed {}
2696
2697/** @name SpCoreVoid */
2698export interface SpCoreVoid extends Null {}
26992556
2700/** @name SpRuntimeArithmeticError */2557/** @name SpRuntimeArithmeticError */
2701export interface SpRuntimeArithmeticError extends Enum {2558export interface SpRuntimeArithmeticError extends Enum {
2796 readonly stateVersion: u8;2653 readonly stateVersion: u8;
2797}2654}
2655
2656/** @name SpWeightsRuntimeDbWeight */
2657export interface SpWeightsRuntimeDbWeight extends Struct {
2658 readonly read: u64;
2659 readonly write: u64;
2660}
27982661
2799/** @name UpDataStructsAccessMode */2662/** @name UpDataStructsAccessMode */
2800export interface UpDataStructsAccessMode extends Enum {2663export interface UpDataStructsAccessMode extends Enum {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
23 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::DispatchInfo
94 **/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::DispatchClass
102 **/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::Pays
108 **/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::LookupError
1033 **/
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::Log
1225 **/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::Event
1233 **/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::ExitReason
1241 **/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::ExitSucceed
1252 **/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::ExitError
1258 **/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::ExitRevert
1280 **/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::ExitFatal
1286 **/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::Phase
1307 **/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::LastRuntimeUpgradeInfo
1317 **/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::BlockWeights
1362 **/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::WeightsPerClass
1378 **/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::BlockLength
1387 **/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::RuntimeDbWeight
1401 **/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::RuntimeVersion
1408 **/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::UpgradeRestriction
1436 **/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::StorageProof
1442 **/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::MessagingStateSnapshot
1448 **/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::AbridgedHrmpChannel
1457 **/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::AbridgedHostConfiguration
1468 **/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::ParachainInherentData
1508 **/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::Reasons
1545 **/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::Releases
1558 **/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::Releases
1613 **/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::PalletId
1652 **/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::VersionedMultiAsset
1748 **/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::Response
2001 **/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::Response
2113 **/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::CollectionMode
2279 **/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::AccessMode
2304 **/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::CollectionLimits
2310 **/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::SponsoringRateLimit
2324 **/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::CollectionPermissions
2333 **/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::NestingPermissions
2341 **/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::OwnerRestrictedSet
2349 **/2318 **/
2350 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2319 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2351 /**2320 /**
2352 * Lookup259: up_data_structs::PropertyKeyPermission2321 * Lookup256: up_data_structs::PropertyKeyPermission
2353 **/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::PropertyPermission
2360 **/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::Property
2368 **/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::CreateItemData
2375 **/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::CreateNftData
2385 **/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::CreateFungibleData
2391 **/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::CreateReFungibleData
2397 **/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::TransactionV2
2794 **/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::LegacyTransaction
2804 **/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::TransactionAction
2816 **/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::TransactionSignature
2825 **/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::EIP2930Transaction
2833 **/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::AccessListItem
2849 **/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::EIP1559Transaction
2856 **/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::InboundChannelDetails
2937 **/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::InboundState
2945 **/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::XcmpMessageFormat
2951 **/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::OutboundChannelDetails
2957 **/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::OutboundState
2967 **/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::QueueConfigData
2973 **/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::ConfigData
3000 **/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::PageIndexData
3006 **/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::OriginCaller
3036 **/
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::Origin
3155 **/
3156 PalletXcmOrigin: {
3157 _enum: {
3158 Xcm: 'XcmV1MultiLocation',
3159 Response: 'XcmV1MultiLocation'
3160 }
3161 },
3162 /**
3163 * Lookup382: cumulus_pallet_xcm::pallet::Origin
3164 **/
3165 CumulusPalletXcmOrigin: {
3166 _enum: {
3167 Relay: 'Null',
3168 SiblingParachain: 'u32'
3169 }
3170 },
3171 /**
3172 * Lookup383: pallet_ethereum::RawOrigin
3173 **/
3174 PalletEthereumRawOrigin: {
3175 _enum: {
3176 EthereumTransaction: 'H160'
3177 }
3178 },
3179 /**
3180 * Lookup384: sp_core::Void
3181 **/
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::Properties
3215 **/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::CollectionStats
3231 **/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::TokenChild
3239 **/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::RpcCollectionFlags
3275 **/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::NftChild
3333 **/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::ItemData
3352 **/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::PropertyScope
3370 **/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::TransactionStatus
3418 **/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::Bloom
3430 **/3201 **/
3431 EthbloomBloom: '[u8;256]',3202 EthbloomBloom: '[u8;256]',
3432 /**3203 /**
3433 * Lookup453: ethereum::receipt::ReceiptV33204 * Lookup437: ethereum::receipt::ReceiptV3
3434 **/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::EIP658ReceiptData
3444 **/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::Header
3461 **/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::H64
3481 **/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::SponsoringModeT
3507 **/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::MultiSignature
3525 **/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::Signature
3535 **/3306 **/
3536 SpCoreEd25519Signature: '[u8;64]',3307 SpCoreEd25519Signature: '[u8;64]',
3537 /**3308 /**
3538 * Lookup477: sp_core::sr25519::Signature3309 * Lookup461: sp_core::sr25519::Signature
3539 **/3310 **/
3540 SpCoreSr25519Signature: '[u8;64]',3311 SpCoreSr25519Signature: '[u8;64]',
3541 /**3312 /**
3542 * Lookup478: sp_core::ecdsa::Signature3313 * Lookup462: sp_core::ecdsa::Signature
3543 **/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::Runtime
3571 **/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};
35783349
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import 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';8import 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';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
21 CumulusPalletXcmCall: CumulusPalletXcmCall;21 CumulusPalletXcmCall: CumulusPalletXcmCall;
22 CumulusPalletXcmError: CumulusPalletXcmError;22 CumulusPalletXcmError: CumulusPalletXcmError;
23 CumulusPalletXcmEvent: CumulusPalletXcmEvent;23 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
24 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
25 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;24 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
26 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;25 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
27 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;26 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
51 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;50 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;
52 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;51 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
53 FpRpcTransactionStatus: FpRpcTransactionStatus;52 FpRpcTransactionStatus: FpRpcTransactionStatus;
54 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;53 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
55 FrameSupportPalletId: FrameSupportPalletId;54 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
56 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;55 FrameSupportDispatchPays: FrameSupportDispatchPays;
57 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;56 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
58 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;57 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
59 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;58 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
60 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;59 FrameSupportPalletId: FrameSupportPalletId;
61 FrameSupportWeightsPays: FrameSupportWeightsPays;60 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
62 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;
63 FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;
64 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
65 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;
66 FrameSystemAccountInfo: FrameSystemAccountInfo;61 FrameSystemAccountInfo: FrameSystemAccountInfo;
67 FrameSystemCall: FrameSystemCall;62 FrameSystemCall: FrameSystemCall;
68 FrameSystemError: FrameSystemError;63 FrameSystemError: FrameSystemError;
78 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;73 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
79 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;74 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
80 FrameSystemPhase: FrameSystemPhase;75 FrameSystemPhase: FrameSystemPhase;
81 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
82 OpalRuntimeRuntime: OpalRuntimeRuntime;76 OpalRuntimeRuntime: OpalRuntimeRuntime;
83 OrmlTokensAccountData: OrmlTokensAccountData;77 OrmlTokensAccountData: OrmlTokensAccountData;
84 OrmlTokensBalanceLock: OrmlTokensBalanceLock;78 OrmlTokensBalanceLock: OrmlTokensBalanceLock;
111 PalletEthereumError: PalletEthereumError;105 PalletEthereumError: PalletEthereumError;
112 PalletEthereumEvent: PalletEthereumEvent;106 PalletEthereumEvent: PalletEthereumEvent;
113 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;107 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
114 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
115 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;108 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
116 PalletEvmCall: PalletEvmCall;109 PalletEvmCall: PalletEvmCall;
117 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;110 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
158 PalletUniqueCall: PalletUniqueCall;151 PalletUniqueCall: PalletUniqueCall;
159 PalletUniqueError: PalletUniqueError;152 PalletUniqueError: PalletUniqueError;
160 PalletUniqueRawEvent: PalletUniqueRawEvent;153 PalletUniqueRawEvent: PalletUniqueRawEvent;
161 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
162 PalletUniqueSchedulerError: PalletUniqueSchedulerError;
163 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
164 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
165 PalletXcmCall: PalletXcmCall;154 PalletXcmCall: PalletXcmCall;
166 PalletXcmError: PalletXcmError;155 PalletXcmError: PalletXcmError;
167 PalletXcmEvent: PalletXcmEvent;156 PalletXcmEvent: PalletXcmEvent;
168 PalletXcmOrigin: PalletXcmOrigin;
169 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;157 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
170 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;158 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
171 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;159 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
196 SpCoreEcdsaSignature: SpCoreEcdsaSignature;184 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
197 SpCoreEd25519Signature: SpCoreEd25519Signature;185 SpCoreEd25519Signature: SpCoreEd25519Signature;
198 SpCoreSr25519Signature: SpCoreSr25519Signature;186 SpCoreSr25519Signature: SpCoreSr25519Signature;
199 SpCoreVoid: SpCoreVoid;
200 SpRuntimeArithmeticError: SpRuntimeArithmeticError;187 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
201 SpRuntimeDigest: SpRuntimeDigest;188 SpRuntimeDigest: SpRuntimeDigest;
202 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;189 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
207 SpRuntimeTransactionalError: SpRuntimeTransactionalError;194 SpRuntimeTransactionalError: SpRuntimeTransactionalError;
208 SpTrieStorageProof: SpTrieStorageProof;195 SpTrieStorageProof: SpTrieStorageProof;
209 SpVersionRuntimeVersion: SpVersionRuntimeVersion;196 SpVersionRuntimeVersion: SpVersionRuntimeVersion;
197 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
210 UpDataStructsAccessMode: UpDataStructsAccessMode;198 UpDataStructsAccessMode: UpDataStructsAccessMode;
211 UpDataStructsCollection: UpDataStructsCollection;199 UpDataStructsCollection: UpDataStructsCollection;
212 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;200 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
28 readonly feeFrozen: u128;28 readonly feeFrozen: u128;
29 }29 }
3030
31 /** @name FrameSupportWeightsPerDispatchClassWeight (7) */31 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */
32 interface FrameSupportWeightsPerDispatchClassWeight extends Struct {32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
33 readonly normal: Weight;33 readonly normal: Weight;
34 readonly operational: Weight;34 readonly operational: Weight;
35 readonly mandatory: Weight;35 readonly mandatory: Weight;
65 interface FrameSystemEvent extends Enum {65 interface FrameSystemEvent extends Enum {
66 readonly isExtrinsicSuccess: boolean;66 readonly isExtrinsicSuccess: boolean;
67 readonly asExtrinsicSuccess: {67 readonly asExtrinsicSuccess: {
68 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;68 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
69 } & Struct;69 } & Struct;
70 readonly isExtrinsicFailed: boolean;70 readonly isExtrinsicFailed: boolean;
71 readonly asExtrinsicFailed: {71 readonly asExtrinsicFailed: {
72 readonly dispatchError: SpRuntimeDispatchError;72 readonly dispatchError: SpRuntimeDispatchError;
73 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;73 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
74 } & Struct;74 } & Struct;
75 readonly isCodeUpdated: boolean;75 readonly isCodeUpdated: boolean;
76 readonly isNewAccount: boolean;76 readonly isNewAccount: boolean;
89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
90 }90 }
9191
92 /** @name FrameSupportWeightsDispatchInfo (20) */92 /** @name FrameSupportDispatchDispatchInfo (20) */
93 interface FrameSupportWeightsDispatchInfo extends Struct {93 interface FrameSupportDispatchDispatchInfo extends Struct {
94 readonly weight: Weight;94 readonly weight: Weight;
95 readonly class: FrameSupportWeightsDispatchClass;95 readonly class: FrameSupportDispatchDispatchClass;
96 readonly paysFee: FrameSupportWeightsPays;96 readonly paysFee: FrameSupportDispatchPays;
97 }97 }
9898
99 /** @name FrameSupportWeightsDispatchClass (21) */99 /** @name FrameSupportDispatchDispatchClass (21) */
100 interface FrameSupportWeightsDispatchClass extends Enum {100 interface FrameSupportDispatchDispatchClass extends Enum {
101 readonly isNormal: boolean;101 readonly isNormal: boolean;
102 readonly isOperational: boolean;102 readonly isOperational: boolean;
103 readonly isMandatory: boolean;103 readonly isMandatory: boolean;
104 readonly type: 'Normal' | 'Operational' | 'Mandatory';104 readonly type: 'Normal' | 'Operational' | 'Mandatory';
105 }105 }
106106
107 /** @name FrameSupportWeightsPays (22) */107 /** @name FrameSupportDispatchPays (22) */
108 interface FrameSupportWeightsPays extends Enum {108 interface FrameSupportDispatchPays extends Enum {
109 readonly isYes: boolean;109 readonly isYes: boolean;
110 readonly isNo: boolean;110 readonly isNo: boolean;
111 readonly type: 'Yes' | 'No';111 readonly type: 'Yes' | 'No';
1132 readonly type: 'Substrate' | 'Ethereum';1132 readonly type: 'Substrate' | 'Ethereum';
1133 }1133 }
1134
1135 /** @name PalletUniqueSchedulerEvent (93) */
1136 interface PalletUniqueSchedulerEvent extends Enum {
1137 readonly isScheduled: boolean;
1138 readonly asScheduled: {
1139 readonly when: u32;
1140 readonly index: u32;
1141 } & Struct;
1142 readonly isCanceled: boolean;
1143 readonly asCanceled: {
1144 readonly when: u32;
1145 readonly index: u32;
1146 } & Struct;
1147 readonly isDispatched: boolean;
1148 readonly asDispatched: {
1149 readonly task: ITuple<[u32, u32]>;
1150 readonly id: Option<U8aFixed>;
1151 readonly result: Result<Null, SpRuntimeDispatchError>;
1152 } & Struct;
1153 readonly isCallLookupFailed: boolean;
1154 readonly asCallLookupFailed: {
1155 readonly task: ITuple<[u32, u32]>;
1156 readonly id: Option<U8aFixed>;
1157 readonly error: FrameSupportScheduleLookupError;
1158 } & Struct;
1159 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
1160 }
1161
1162 /** @name FrameSupportScheduleLookupError (96) */
1163 interface FrameSupportScheduleLookupError extends Enum {
1164 readonly isUnknown: boolean;
1165 readonly isBadFormat: boolean;
1166 readonly type: 'Unknown' | 'BadFormat';
1167 }
11681134
1169 /** @name PalletCommonEvent (97) */1135 /** @name PalletCommonEvent (93) */
1170 interface PalletCommonEvent extends Enum {1136 interface PalletCommonEvent extends Enum {
1171 readonly isCollectionCreated: boolean;1137 readonly isCollectionCreated: boolean;
1172 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1138 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
1193 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1159 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
1194 }1160 }
11951161
1196 /** @name PalletStructureEvent (100) */1162 /** @name PalletStructureEvent (96) */
1197 interface PalletStructureEvent extends Enum {1163 interface PalletStructureEvent extends Enum {
1198 readonly isExecuted: boolean;1164 readonly isExecuted: boolean;
1199 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1165 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
1200 readonly type: 'Executed';1166 readonly type: 'Executed';
1201 }1167 }
12021168
1203 /** @name PalletRmrkCoreEvent (101) */1169 /** @name PalletRmrkCoreEvent (97) */
1204 interface PalletRmrkCoreEvent extends Enum {1170 interface PalletRmrkCoreEvent extends Enum {
1205 readonly isCollectionCreated: boolean;1171 readonly isCollectionCreated: boolean;
1206 readonly asCollectionCreated: {1172 readonly asCollectionCreated: {
1290 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1256 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
1291 }1257 }
12921258
1293 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1259 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */
1294 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1260 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
1295 readonly isAccountId: boolean;1261 readonly isAccountId: boolean;
1296 readonly asAccountId: AccountId32;1262 readonly asAccountId: AccountId32;
1299 readonly type: 'AccountId' | 'CollectionAndNftTuple';1265 readonly type: 'AccountId' | 'CollectionAndNftTuple';
1300 }1266 }
13011267
1302 /** @name PalletRmrkEquipEvent (107) */1268 /** @name PalletRmrkEquipEvent (103) */
1303 interface PalletRmrkEquipEvent extends Enum {1269 interface PalletRmrkEquipEvent extends Enum {
1304 readonly isBaseCreated: boolean;1270 readonly isBaseCreated: boolean;
1305 readonly asBaseCreated: {1271 readonly asBaseCreated: {
1314 readonly type: 'BaseCreated' | 'EquippablesUpdated';1280 readonly type: 'BaseCreated' | 'EquippablesUpdated';
1315 }1281 }
13161282
1317 /** @name PalletAppPromotionEvent (108) */1283 /** @name PalletAppPromotionEvent (104) */
1318 interface PalletAppPromotionEvent extends Enum {1284 interface PalletAppPromotionEvent extends Enum {
1319 readonly isStakingRecalculation: boolean;1285 readonly isStakingRecalculation: boolean;
1320 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1286 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1327 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1293 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1328 }1294 }
13291295
1330 /** @name PalletForeignAssetsModuleEvent (109) */1296 /** @name PalletForeignAssetsModuleEvent (105) */
1331 interface PalletForeignAssetsModuleEvent extends Enum {1297 interface PalletForeignAssetsModuleEvent extends Enum {
1332 readonly isForeignAssetRegistered: boolean;1298 readonly isForeignAssetRegistered: boolean;
1333 readonly asForeignAssetRegistered: {1299 readonly asForeignAssetRegistered: {
1354 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1320 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
1355 }1321 }
13561322
1357 /** @name PalletForeignAssetsModuleAssetMetadata (110) */1323 /** @name PalletForeignAssetsModuleAssetMetadata (106) */
1358 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1324 interface PalletForeignAssetsModuleAssetMetadata extends Struct {
1359 readonly name: Bytes;1325 readonly name: Bytes;
1360 readonly symbol: Bytes;1326 readonly symbol: Bytes;
1361 readonly decimals: u8;1327 readonly decimals: u8;
1362 readonly minimalBalance: u128;1328 readonly minimalBalance: u128;
1363 }1329 }
13641330
1365 /** @name PalletEvmEvent (111) */1331 /** @name PalletEvmEvent (107) */
1366 interface PalletEvmEvent extends Enum {1332 interface PalletEvmEvent extends Enum {
1367 readonly isLog: boolean;1333 readonly isLog: boolean;
1368 readonly asLog: EthereumLog;1334 readonly asLog: EthereumLog;
1381 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1347 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
1382 }1348 }
13831349
1384 /** @name EthereumLog (112) */1350 /** @name EthereumLog (108) */
1385 interface EthereumLog extends Struct {1351 interface EthereumLog extends Struct {
1386 readonly address: H160;1352 readonly address: H160;
1387 readonly topics: Vec<H256>;1353 readonly topics: Vec<H256>;
1388 readonly data: Bytes;1354 readonly data: Bytes;
1389 }1355 }
13901356
1391 /** @name PalletEthereumEvent (116) */1357 /** @name PalletEthereumEvent (112) */
1392 interface PalletEthereumEvent extends Enum {1358 interface PalletEthereumEvent extends Enum {
1393 readonly isExecuted: boolean;1359 readonly isExecuted: boolean;
1394 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1360 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
1395 readonly type: 'Executed';1361 readonly type: 'Executed';
1396 }1362 }
13971363
1398 /** @name EvmCoreErrorExitReason (117) */1364 /** @name EvmCoreErrorExitReason (113) */
1399 interface EvmCoreErrorExitReason extends Enum {1365 interface EvmCoreErrorExitReason extends Enum {
1400 readonly isSucceed: boolean;1366 readonly isSucceed: boolean;
1401 readonly asSucceed: EvmCoreErrorExitSucceed;1367 readonly asSucceed: EvmCoreErrorExitSucceed;
1408 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1374 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1409 }1375 }
14101376
1411 /** @name EvmCoreErrorExitSucceed (118) */1377 /** @name EvmCoreErrorExitSucceed (114) */
1412 interface EvmCoreErrorExitSucceed extends Enum {1378 interface EvmCoreErrorExitSucceed extends Enum {
1413 readonly isStopped: boolean;1379 readonly isStopped: boolean;
1414 readonly isReturned: boolean;1380 readonly isReturned: boolean;
1415 readonly isSuicided: boolean;1381 readonly isSuicided: boolean;
1416 readonly type: 'Stopped' | 'Returned' | 'Suicided';1382 readonly type: 'Stopped' | 'Returned' | 'Suicided';
1417 }1383 }
14181384
1419 /** @name EvmCoreErrorExitError (119) */1385 /** @name EvmCoreErrorExitError (115) */
1420 interface EvmCoreErrorExitError extends Enum {1386 interface EvmCoreErrorExitError extends Enum {
1421 readonly isStackUnderflow: boolean;1387 readonly isStackUnderflow: boolean;
1422 readonly isStackOverflow: boolean;1388 readonly isStackOverflow: boolean;
1437 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1403 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
1438 }1404 }
14391405
1440 /** @name EvmCoreErrorExitRevert (122) */1406 /** @name EvmCoreErrorExitRevert (118) */
1441 interface EvmCoreErrorExitRevert extends Enum {1407 interface EvmCoreErrorExitRevert extends Enum {
1442 readonly isReverted: boolean;1408 readonly isReverted: boolean;
1443 readonly type: 'Reverted';1409 readonly type: 'Reverted';
1444 }1410 }
14451411
1446 /** @name EvmCoreErrorExitFatal (123) */1412 /** @name EvmCoreErrorExitFatal (119) */
1447 interface EvmCoreErrorExitFatal extends Enum {1413 interface EvmCoreErrorExitFatal extends Enum {
1448 readonly isNotSupported: boolean;1414 readonly isNotSupported: boolean;
1449 readonly isUnhandledInterrupt: boolean;1415 readonly isUnhandledInterrupt: boolean;
1454 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1420 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1455 }1421 }
14561422
1457 /** @name PalletEvmContractHelpersEvent (124) */1423 /** @name PalletEvmContractHelpersEvent (120) */
1458 interface PalletEvmContractHelpersEvent extends Enum {1424 interface PalletEvmContractHelpersEvent extends Enum {
1459 readonly isContractSponsorSet: boolean;1425 readonly isContractSponsorSet: boolean;
1460 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1426 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1465 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1431 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1466 }1432 }
14671433
1468 /** @name FrameSystemPhase (125) */1434 /** @name FrameSystemPhase (121) */
1469 interface FrameSystemPhase extends Enum {1435 interface FrameSystemPhase extends Enum {
1470 readonly isApplyExtrinsic: boolean;1436 readonly isApplyExtrinsic: boolean;
1471 readonly asApplyExtrinsic: u32;1437 readonly asApplyExtrinsic: u32;
1474 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1440 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1475 }1441 }
14761442
1477 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1443 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */
1478 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1444 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1479 readonly specVersion: Compact<u32>;1445 readonly specVersion: Compact<u32>;
1480 readonly specName: Text;1446 readonly specName: Text;
1481 }1447 }
14821448
1483 /** @name FrameSystemCall (128) */1449 /** @name FrameSystemCall (125) */
1484 interface FrameSystemCall extends Enum {1450 interface FrameSystemCall extends Enum {
1485 readonly isFillBlock: boolean;1451 readonly isFillBlock: boolean;
1486 readonly asFillBlock: {1452 readonly asFillBlock: {
1522 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1488 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1523 }1489 }
15241490
1525 /** @name FrameSystemLimitsBlockWeights (133) */1491 /** @name FrameSystemLimitsBlockWeights (130) */
1526 interface FrameSystemLimitsBlockWeights extends Struct {1492 interface FrameSystemLimitsBlockWeights extends Struct {
1527 readonly baseBlock: Weight;1493 readonly baseBlock: Weight;
1528 readonly maxBlock: Weight;1494 readonly maxBlock: Weight;
1529 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1495 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1530 }1496 }
15311497
1532 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (134) */1498 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */
1533 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1499 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1534 readonly normal: FrameSystemLimitsWeightsPerClass;1500 readonly normal: FrameSystemLimitsWeightsPerClass;
1535 readonly operational: FrameSystemLimitsWeightsPerClass;1501 readonly operational: FrameSystemLimitsWeightsPerClass;
1536 readonly mandatory: FrameSystemLimitsWeightsPerClass;1502 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1537 }1503 }
15381504
1539 /** @name FrameSystemLimitsWeightsPerClass (135) */1505 /** @name FrameSystemLimitsWeightsPerClass (132) */
1540 interface FrameSystemLimitsWeightsPerClass extends Struct {1506 interface FrameSystemLimitsWeightsPerClass extends Struct {
1541 readonly baseExtrinsic: Weight;1507 readonly baseExtrinsic: Weight;
1542 readonly maxExtrinsic: Option<Weight>;1508 readonly maxExtrinsic: Option<Weight>;
1543 readonly maxTotal: Option<Weight>;1509 readonly maxTotal: Option<Weight>;
1544 readonly reserved: Option<Weight>;1510 readonly reserved: Option<Weight>;
1545 }1511 }
15461512
1547 /** @name FrameSystemLimitsBlockLength (137) */1513 /** @name FrameSystemLimitsBlockLength (134) */
1548 interface FrameSystemLimitsBlockLength extends Struct {1514 interface FrameSystemLimitsBlockLength extends Struct {
1549 readonly max: FrameSupportWeightsPerDispatchClassU32;1515 readonly max: FrameSupportDispatchPerDispatchClassU32;
1550 }1516 }
15511517
1552 /** @name FrameSupportWeightsPerDispatchClassU32 (138) */1518 /** @name FrameSupportDispatchPerDispatchClassU32 (135) */
1553 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1519 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1554 readonly normal: u32;1520 readonly normal: u32;
1555 readonly operational: u32;1521 readonly operational: u32;
1556 readonly mandatory: u32;1522 readonly mandatory: u32;
1557 }1523 }
15581524
1559 /** @name FrameSupportWeightsRuntimeDbWeight (139) */1525 /** @name SpWeightsRuntimeDbWeight (136) */
1560 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1526 interface SpWeightsRuntimeDbWeight extends Struct {
1561 readonly read: u64;1527 readonly read: u64;
1562 readonly write: u64;1528 readonly write: u64;
1563 }1529 }
15641530
1565 /** @name SpVersionRuntimeVersion (140) */1531 /** @name SpVersionRuntimeVersion (137) */
1566 interface SpVersionRuntimeVersion extends Struct {1532 interface SpVersionRuntimeVersion extends Struct {
1567 readonly specName: Text;1533 readonly specName: Text;
1568 readonly implName: Text;1534 readonly implName: Text;
1574 readonly stateVersion: u8;1540 readonly stateVersion: u8;
1575 }1541 }
15761542
1577 /** @name FrameSystemError (145) */1543 /** @name FrameSystemError (142) */
1578 interface FrameSystemError extends Enum {1544 interface FrameSystemError extends Enum {
1579 readonly isInvalidSpecName: boolean;1545 readonly isInvalidSpecName: boolean;
1580 readonly isSpecVersionNeedsToIncrease: boolean;1546 readonly isSpecVersionNeedsToIncrease: boolean;
1585 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1551 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1586 }1552 }
15871553
1588 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1554 /** @name PolkadotPrimitivesV2PersistedValidationData (143) */
1589 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1555 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
1590 readonly parentHead: Bytes;1556 readonly parentHead: Bytes;
1591 readonly relayParentNumber: u32;1557 readonly relayParentNumber: u32;
1592 readonly relayParentStorageRoot: H256;1558 readonly relayParentStorageRoot: H256;
1593 readonly maxPovSize: u32;1559 readonly maxPovSize: u32;
1594 }1560 }
15951561
1596 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1562 /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */
1597 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1563 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
1598 readonly isPresent: boolean;1564 readonly isPresent: boolean;
1599 readonly type: 'Present';1565 readonly type: 'Present';
1600 }1566 }
16011567
1602 /** @name SpTrieStorageProof (150) */1568 /** @name SpTrieStorageProof (147) */
1603 interface SpTrieStorageProof extends Struct {1569 interface SpTrieStorageProof extends Struct {
1604 readonly trieNodes: BTreeSet<Bytes>;1570 readonly trieNodes: BTreeSet<Bytes>;
1605 }1571 }
16061572
1607 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1573 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */
1608 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1574 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1609 readonly dmqMqcHead: H256;1575 readonly dmqMqcHead: H256;
1610 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1576 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1611 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1577 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1612 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1578 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1613 }1579 }
16141580
1615 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1581 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */
1616 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1582 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
1617 readonly maxCapacity: u32;1583 readonly maxCapacity: u32;
1618 readonly maxTotalSize: u32;1584 readonly maxTotalSize: u32;
1622 readonly mqcHead: Option<H256>;1588 readonly mqcHead: Option<H256>;
1623 }1589 }
16241590
1625 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1591 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */
1626 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1592 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
1627 readonly maxCodeSize: u32;1593 readonly maxCodeSize: u32;
1628 readonly maxHeadDataSize: u32;1594 readonly maxHeadDataSize: u32;
1635 readonly validationUpgradeDelay: u32;1601 readonly validationUpgradeDelay: u32;
1636 }1602 }
16371603
1638 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1604 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */
1639 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1605 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1640 readonly recipient: u32;1606 readonly recipient: u32;
1641 readonly data: Bytes;1607 readonly data: Bytes;
1642 }1608 }
16431609
1644 /** @name CumulusPalletParachainSystemCall (163) */1610 /** @name CumulusPalletParachainSystemCall (160) */
1645 interface CumulusPalletParachainSystemCall extends Enum {1611 interface CumulusPalletParachainSystemCall extends Enum {
1646 readonly isSetValidationData: boolean;1612 readonly isSetValidationData: boolean;
1647 readonly asSetValidationData: {1613 readonly asSetValidationData: {
1662 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1628 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1663 }1629 }
16641630
1665 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1631 /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */
1666 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1632 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1667 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1633 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
1668 readonly relayChainState: SpTrieStorageProof;1634 readonly relayChainState: SpTrieStorageProof;
1669 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1635 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1670 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1636 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1671 }1637 }
16721638
1673 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1639 /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */
1674 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1640 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1675 readonly sentAt: u32;1641 readonly sentAt: u32;
1676 readonly msg: Bytes;1642 readonly msg: Bytes;
1677 }1643 }
16781644
1679 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1645 /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */
1680 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1646 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1681 readonly sentAt: u32;1647 readonly sentAt: u32;
1682 readonly data: Bytes;1648 readonly data: Bytes;
1683 }1649 }
16841650
1685 /** @name CumulusPalletParachainSystemError (172) */1651 /** @name CumulusPalletParachainSystemError (169) */
1686 interface CumulusPalletParachainSystemError extends Enum {1652 interface CumulusPalletParachainSystemError extends Enum {
1687 readonly isOverlappingUpgrades: boolean;1653 readonly isOverlappingUpgrades: boolean;
1688 readonly isProhibitedByPolkadot: boolean;1654 readonly isProhibitedByPolkadot: boolean;
1695 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1661 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1696 }1662 }
16971663
1698 /** @name PalletBalancesBalanceLock (174) */1664 /** @name PalletBalancesBalanceLock (171) */
1699 interface PalletBalancesBalanceLock extends Struct {1665 interface PalletBalancesBalanceLock extends Struct {
1700 readonly id: U8aFixed;1666 readonly id: U8aFixed;
1701 readonly amount: u128;1667 readonly amount: u128;
1702 readonly reasons: PalletBalancesReasons;1668 readonly reasons: PalletBalancesReasons;
1703 }1669 }
17041670
1705 /** @name PalletBalancesReasons (175) */1671 /** @name PalletBalancesReasons (172) */
1706 interface PalletBalancesReasons extends Enum {1672 interface PalletBalancesReasons extends Enum {
1707 readonly isFee: boolean;1673 readonly isFee: boolean;
1708 readonly isMisc: boolean;1674 readonly isMisc: boolean;
1709 readonly isAll: boolean;1675 readonly isAll: boolean;
1710 readonly type: 'Fee' | 'Misc' | 'All';1676 readonly type: 'Fee' | 'Misc' | 'All';
1711 }1677 }
17121678
1713 /** @name PalletBalancesReserveData (178) */1679 /** @name PalletBalancesReserveData (175) */
1714 interface PalletBalancesReserveData extends Struct {1680 interface PalletBalancesReserveData extends Struct {
1715 readonly id: U8aFixed;1681 readonly id: U8aFixed;
1716 readonly amount: u128;1682 readonly amount: u128;
1717 }1683 }
17181684
1719 /** @name PalletBalancesReleases (180) */1685 /** @name PalletBalancesReleases (177) */
1720 interface PalletBalancesReleases extends Enum {1686 interface PalletBalancesReleases extends Enum {
1721 readonly isV100: boolean;1687 readonly isV100: boolean;
1722 readonly isV200: boolean;1688 readonly isV200: boolean;
1723 readonly type: 'V100' | 'V200';1689 readonly type: 'V100' | 'V200';
1724 }1690 }
17251691
1726 /** @name PalletBalancesCall (181) */1692 /** @name PalletBalancesCall (178) */
1727 interface PalletBalancesCall extends Enum {1693 interface PalletBalancesCall extends Enum {
1728 readonly isTransfer: boolean;1694 readonly isTransfer: boolean;
1729 readonly asTransfer: {1695 readonly asTransfer: {
1760 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1726 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
1761 }1727 }
17621728
1763 /** @name PalletBalancesError (184) */1729 /** @name PalletBalancesError (181) */
1764 interface PalletBalancesError extends Enum {1730 interface PalletBalancesError extends Enum {
1765 readonly isVestingBalance: boolean;1731 readonly isVestingBalance: boolean;
1766 readonly isLiquidityRestrictions: boolean;1732 readonly isLiquidityRestrictions: boolean;
1773 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1739 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
1774 }1740 }
17751741
1776 /** @name PalletTimestampCall (186) */1742 /** @name PalletTimestampCall (183) */
1777 interface PalletTimestampCall extends Enum {1743 interface PalletTimestampCall extends Enum {
1778 readonly isSet: boolean;1744 readonly isSet: boolean;
1779 readonly asSet: {1745 readonly asSet: {
1782 readonly type: 'Set';1748 readonly type: 'Set';
1783 }1749 }
17841750
1785 /** @name PalletTransactionPaymentReleases (188) */1751 /** @name PalletTransactionPaymentReleases (185) */
1786 interface PalletTransactionPaymentReleases extends Enum {1752 interface PalletTransactionPaymentReleases extends Enum {
1787 readonly isV1Ancient: boolean;1753 readonly isV1Ancient: boolean;
1788 readonly isV2: boolean;1754 readonly isV2: boolean;
1789 readonly type: 'V1Ancient' | 'V2';1755 readonly type: 'V1Ancient' | 'V2';
1790 }1756 }
17911757
1792 /** @name PalletTreasuryProposal (189) */1758 /** @name PalletTreasuryProposal (186) */
1793 interface PalletTreasuryProposal extends Struct {1759 interface PalletTreasuryProposal extends Struct {
1794 readonly proposer: AccountId32;1760 readonly proposer: AccountId32;
1795 readonly value: u128;1761 readonly value: u128;
1796 readonly beneficiary: AccountId32;1762 readonly beneficiary: AccountId32;
1797 readonly bond: u128;1763 readonly bond: u128;
1798 }1764 }
17991765
1800 /** @name PalletTreasuryCall (192) */1766 /** @name PalletTreasuryCall (189) */
1801 interface PalletTreasuryCall extends Enum {1767 interface PalletTreasuryCall extends Enum {
1802 readonly isProposeSpend: boolean;1768 readonly isProposeSpend: boolean;
1803 readonly asProposeSpend: {1769 readonly asProposeSpend: {
1824 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1790 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
1825 }1791 }
18261792
1827 /** @name FrameSupportPalletId (195) */1793 /** @name FrameSupportPalletId (192) */
1828 interface FrameSupportPalletId extends U8aFixed {}1794 interface FrameSupportPalletId extends U8aFixed {}
18291795
1830 /** @name PalletTreasuryError (196) */1796 /** @name PalletTreasuryError (193) */
1831 interface PalletTreasuryError extends Enum {1797 interface PalletTreasuryError extends Enum {
1832 readonly isInsufficientProposersBalance: boolean;1798 readonly isInsufficientProposersBalance: boolean;
1833 readonly isInvalidIndex: boolean;1799 readonly isInvalidIndex: boolean;
1837 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1803 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
1838 }1804 }
18391805
1840 /** @name PalletSudoCall (197) */1806 /** @name PalletSudoCall (194) */
1841 interface PalletSudoCall extends Enum {1807 interface PalletSudoCall extends Enum {
1842 readonly isSudo: boolean;1808 readonly isSudo: boolean;
1843 readonly asSudo: {1809 readonly asSudo: {
1860 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1826 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
1861 }1827 }
18621828
1863 /** @name OrmlVestingModuleCall (199) */1829 /** @name OrmlVestingModuleCall (196) */
1864 interface OrmlVestingModuleCall extends Enum {1830 interface OrmlVestingModuleCall extends Enum {
1865 readonly isClaim: boolean;1831 readonly isClaim: boolean;
1866 readonly isVestedTransfer: boolean;1832 readonly isVestedTransfer: boolean;
1880 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1846 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
1881 }1847 }
18821848
1883 /** @name OrmlXtokensModuleCall (201) */1849 /** @name OrmlXtokensModuleCall (198) */
1884 interface OrmlXtokensModuleCall extends Enum {1850 interface OrmlXtokensModuleCall extends Enum {
1885 readonly isTransfer: boolean;1851 readonly isTransfer: boolean;
1886 readonly asTransfer: {1852 readonly asTransfer: {
1927 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1893 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
1928 }1894 }
19291895
1930 /** @name XcmVersionedMultiAsset (202) */1896 /** @name XcmVersionedMultiAsset (199) */
1931 interface XcmVersionedMultiAsset extends Enum {1897 interface XcmVersionedMultiAsset extends Enum {
1932 readonly isV0: boolean;1898 readonly isV0: boolean;
1933 readonly asV0: XcmV0MultiAsset;1899 readonly asV0: XcmV0MultiAsset;
1936 readonly type: 'V0' | 'V1';1902 readonly type: 'V0' | 'V1';
1937 }1903 }
19381904
1939 /** @name OrmlTokensModuleCall (205) */1905 /** @name OrmlTokensModuleCall (202) */
1940 interface OrmlTokensModuleCall extends Enum {1906 interface OrmlTokensModuleCall extends Enum {
1941 readonly isTransfer: boolean;1907 readonly isTransfer: boolean;
1942 readonly asTransfer: {1908 readonly asTransfer: {
1973 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1939 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
1974 }1940 }
19751941
1976 /** @name CumulusPalletXcmpQueueCall (206) */1942 /** @name CumulusPalletXcmpQueueCall (203) */
1977 interface CumulusPalletXcmpQueueCall extends Enum {1943 interface CumulusPalletXcmpQueueCall extends Enum {
1978 readonly isServiceOverweight: boolean;1944 readonly isServiceOverweight: boolean;
1979 readonly asServiceOverweight: {1945 readonly asServiceOverweight: {
2009 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';1975 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
2010 }1976 }
20111977
2012 /** @name PalletXcmCall (207) */1978 /** @name PalletXcmCall (204) */
2013 interface PalletXcmCall extends Enum {1979 interface PalletXcmCall extends Enum {
2014 readonly isSend: boolean;1980 readonly isSend: boolean;
2015 readonly asSend: {1981 readonly asSend: {
2071 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2037 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
2072 }2038 }
20732039
2074 /** @name XcmVersionedXcm (208) */2040 /** @name XcmVersionedXcm (205) */
2075 interface XcmVersionedXcm extends Enum {2041 interface XcmVersionedXcm extends Enum {
2076 readonly isV0: boolean;2042 readonly isV0: boolean;
2077 readonly asV0: XcmV0Xcm;2043 readonly asV0: XcmV0Xcm;
2082 readonly type: 'V0' | 'V1' | 'V2';2048 readonly type: 'V0' | 'V1' | 'V2';
2083 }2049 }
20842050
2085 /** @name XcmV0Xcm (209) */2051 /** @name XcmV0Xcm (206) */
2086 interface XcmV0Xcm extends Enum {2052 interface XcmV0Xcm extends Enum {
2087 readonly isWithdrawAsset: boolean;2053 readonly isWithdrawAsset: boolean;
2088 readonly asWithdrawAsset: {2054 readonly asWithdrawAsset: {
2145 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2111 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
2146 }2112 }
21472113
2148 /** @name XcmV0Order (211) */2114 /** @name XcmV0Order (208) */
2149 interface XcmV0Order extends Enum {2115 interface XcmV0Order extends Enum {
2150 readonly isNull: boolean;2116 readonly isNull: boolean;
2151 readonly isDepositAsset: boolean;2117 readonly isDepositAsset: boolean;
2193 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2159 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2194 }2160 }
21952161
2196 /** @name XcmV0Response (213) */2162 /** @name XcmV0Response (210) */
2197 interface XcmV0Response extends Enum {2163 interface XcmV0Response extends Enum {
2198 readonly isAssets: boolean;2164 readonly isAssets: boolean;
2199 readonly asAssets: Vec<XcmV0MultiAsset>;2165 readonly asAssets: Vec<XcmV0MultiAsset>;
2200 readonly type: 'Assets';2166 readonly type: 'Assets';
2201 }2167 }
22022168
2203 /** @name XcmV1Xcm (214) */2169 /** @name XcmV1Xcm (211) */
2204 interface XcmV1Xcm extends Enum {2170 interface XcmV1Xcm extends Enum {
2205 readonly isWithdrawAsset: boolean;2171 readonly isWithdrawAsset: boolean;
2206 readonly asWithdrawAsset: {2172 readonly asWithdrawAsset: {
2269 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2235 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
2270 }2236 }
22712237
2272 /** @name XcmV1Order (216) */2238 /** @name XcmV1Order (213) */
2273 interface XcmV1Order extends Enum {2239 interface XcmV1Order extends Enum {
2274 readonly isNoop: boolean;2240 readonly isNoop: boolean;
2275 readonly isDepositAsset: boolean;2241 readonly isDepositAsset: boolean;
2319 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2285 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2320 }2286 }
23212287
2322 /** @name XcmV1Response (218) */2288 /** @name XcmV1Response (215) */
2323 interface XcmV1Response extends Enum {2289 interface XcmV1Response extends Enum {
2324 readonly isAssets: boolean;2290 readonly isAssets: boolean;
2325 readonly asAssets: XcmV1MultiassetMultiAssets;2291 readonly asAssets: XcmV1MultiassetMultiAssets;
2328 readonly type: 'Assets' | 'Version';2294 readonly type: 'Assets' | 'Version';
2329 }2295 }
23302296
2331 /** @name CumulusPalletXcmCall (232) */2297 /** @name CumulusPalletXcmCall (229) */
2332 type CumulusPalletXcmCall = Null;2298 type CumulusPalletXcmCall = Null;
23332299
2334 /** @name CumulusPalletDmpQueueCall (233) */2300 /** @name CumulusPalletDmpQueueCall (230) */
2335 interface CumulusPalletDmpQueueCall extends Enum {2301 interface CumulusPalletDmpQueueCall extends Enum {
2336 readonly isServiceOverweight: boolean;2302 readonly isServiceOverweight: boolean;
2337 readonly asServiceOverweight: {2303 readonly asServiceOverweight: {
2341 readonly type: 'ServiceOverweight';2307 readonly type: 'ServiceOverweight';
2342 }2308 }
23432309
2344 /** @name PalletInflationCall (234) */2310 /** @name PalletInflationCall (231) */
2345 interface PalletInflationCall extends Enum {2311 interface PalletInflationCall extends Enum {
2346 readonly isStartInflation: boolean;2312 readonly isStartInflation: boolean;
2347 readonly asStartInflation: {2313 readonly asStartInflation: {
2350 readonly type: 'StartInflation';2316 readonly type: 'StartInflation';
2351 }2317 }
23522318
2353 /** @name PalletUniqueCall (235) */2319 /** @name PalletUniqueCall (232) */
2354 interface PalletUniqueCall extends Enum {2320 interface PalletUniqueCall extends Enum {
2355 readonly isCreateCollection: boolean;2321 readonly isCreateCollection: boolean;
2356 readonly asCreateCollection: {2322 readonly asCreateCollection: {
2508 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2474 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';
2509 }2475 }
25102476
2511 /** @name UpDataStructsCollectionMode (240) */2477 /** @name UpDataStructsCollectionMode (237) */
2512 interface UpDataStructsCollectionMode extends Enum {2478 interface UpDataStructsCollectionMode extends Enum {
2513 readonly isNft: boolean;2479 readonly isNft: boolean;
2514 readonly isFungible: boolean;2480 readonly isFungible: boolean;
2517 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2483 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2518 }2484 }
25192485
2520 /** @name UpDataStructsCreateCollectionData (241) */2486 /** @name UpDataStructsCreateCollectionData (238) */
2521 interface UpDataStructsCreateCollectionData extends Struct {2487 interface UpDataStructsCreateCollectionData extends Struct {
2522 readonly mode: UpDataStructsCollectionMode;2488 readonly mode: UpDataStructsCollectionMode;
2523 readonly access: Option<UpDataStructsAccessMode>;2489 readonly access: Option<UpDataStructsAccessMode>;
2531 readonly properties: Vec<UpDataStructsProperty>;2497 readonly properties: Vec<UpDataStructsProperty>;
2532 }2498 }
25332499
2534 /** @name UpDataStructsAccessMode (243) */2500 /** @name UpDataStructsAccessMode (240) */
2535 interface UpDataStructsAccessMode extends Enum {2501 interface UpDataStructsAccessMode extends Enum {
2536 readonly isNormal: boolean;2502 readonly isNormal: boolean;
2537 readonly isAllowList: boolean;2503 readonly isAllowList: boolean;
2538 readonly type: 'Normal' | 'AllowList';2504 readonly type: 'Normal' | 'AllowList';
2539 }2505 }
25402506
2541 /** @name UpDataStructsCollectionLimits (245) */2507 /** @name UpDataStructsCollectionLimits (242) */
2542 interface UpDataStructsCollectionLimits extends Struct {2508 interface UpDataStructsCollectionLimits extends Struct {
2543 readonly accountTokenOwnershipLimit: Option<u32>;2509 readonly accountTokenOwnershipLimit: Option<u32>;
2544 readonly sponsoredDataSize: Option<u32>;2510 readonly sponsoredDataSize: Option<u32>;
2551 readonly transfersEnabled: Option<bool>;2517 readonly transfersEnabled: Option<bool>;
2552 }2518 }
25532519
2554 /** @name UpDataStructsSponsoringRateLimit (247) */2520 /** @name UpDataStructsSponsoringRateLimit (244) */
2555 interface UpDataStructsSponsoringRateLimit extends Enum {2521 interface UpDataStructsSponsoringRateLimit extends Enum {
2556 readonly isSponsoringDisabled: boolean;2522 readonly isSponsoringDisabled: boolean;
2557 readonly isBlocks: boolean;2523 readonly isBlocks: boolean;
2558 readonly asBlocks: u32;2524 readonly asBlocks: u32;
2559 readonly type: 'SponsoringDisabled' | 'Blocks';2525 readonly type: 'SponsoringDisabled' | 'Blocks';
2560 }2526 }
25612527
2562 /** @name UpDataStructsCollectionPermissions (250) */2528 /** @name UpDataStructsCollectionPermissions (247) */
2563 interface UpDataStructsCollectionPermissions extends Struct {2529 interface UpDataStructsCollectionPermissions extends Struct {
2564 readonly access: Option<UpDataStructsAccessMode>;2530 readonly access: Option<UpDataStructsAccessMode>;
2565 readonly mintMode: Option<bool>;2531 readonly mintMode: Option<bool>;
2566 readonly nesting: Option<UpDataStructsNestingPermissions>;2532 readonly nesting: Option<UpDataStructsNestingPermissions>;
2567 }2533 }
25682534
2569 /** @name UpDataStructsNestingPermissions (252) */2535 /** @name UpDataStructsNestingPermissions (249) */
2570 interface UpDataStructsNestingPermissions extends Struct {2536 interface UpDataStructsNestingPermissions extends Struct {
2571 readonly tokenOwner: bool;2537 readonly tokenOwner: bool;
2572 readonly collectionAdmin: bool;2538 readonly collectionAdmin: bool;
2573 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2539 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
2574 }2540 }
25752541
2576 /** @name UpDataStructsOwnerRestrictedSet (254) */2542 /** @name UpDataStructsOwnerRestrictedSet (251) */
2577 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2543 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
25782544
2579 /** @name UpDataStructsPropertyKeyPermission (259) */2545 /** @name UpDataStructsPropertyKeyPermission (256) */
2580 interface UpDataStructsPropertyKeyPermission extends Struct {2546 interface UpDataStructsPropertyKeyPermission extends Struct {
2581 readonly key: Bytes;2547 readonly key: Bytes;
2582 readonly permission: UpDataStructsPropertyPermission;2548 readonly permission: UpDataStructsPropertyPermission;
2583 }2549 }
25842550
2585 /** @name UpDataStructsPropertyPermission (260) */2551 /** @name UpDataStructsPropertyPermission (257) */
2586 interface UpDataStructsPropertyPermission extends Struct {2552 interface UpDataStructsPropertyPermission extends Struct {
2587 readonly mutable: bool;2553 readonly mutable: bool;
2588 readonly collectionAdmin: bool;2554 readonly collectionAdmin: bool;
2589 readonly tokenOwner: bool;2555 readonly tokenOwner: bool;
2590 }2556 }
25912557
2592 /** @name UpDataStructsProperty (263) */2558 /** @name UpDataStructsProperty (260) */
2593 interface UpDataStructsProperty extends Struct {2559 interface UpDataStructsProperty extends Struct {
2594 readonly key: Bytes;2560 readonly key: Bytes;
2595 readonly value: Bytes;2561 readonly value: Bytes;
2596 }2562 }
25972563
2598 /** @name UpDataStructsCreateItemData (266) */2564 /** @name UpDataStructsCreateItemData (263) */
2599 interface UpDataStructsCreateItemData extends Enum {2565 interface UpDataStructsCreateItemData extends Enum {
2600 readonly isNft: boolean;2566 readonly isNft: boolean;
2601 readonly asNft: UpDataStructsCreateNftData;2567 readonly asNft: UpDataStructsCreateNftData;
2606 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2572 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2607 }2573 }
26082574
2609 /** @name UpDataStructsCreateNftData (267) */2575 /** @name UpDataStructsCreateNftData (264) */
2610 interface UpDataStructsCreateNftData extends Struct {2576 interface UpDataStructsCreateNftData extends Struct {
2611 readonly properties: Vec<UpDataStructsProperty>;2577 readonly properties: Vec<UpDataStructsProperty>;
2612 }2578 }
26132579
2614 /** @name UpDataStructsCreateFungibleData (268) */2580 /** @name UpDataStructsCreateFungibleData (265) */
2615 interface UpDataStructsCreateFungibleData extends Struct {2581 interface UpDataStructsCreateFungibleData extends Struct {
2616 readonly value: u128;2582 readonly value: u128;
2617 }2583 }
26182584
2619 /** @name UpDataStructsCreateReFungibleData (269) */2585 /** @name UpDataStructsCreateReFungibleData (266) */
2620 interface UpDataStructsCreateReFungibleData extends Struct {2586 interface UpDataStructsCreateReFungibleData extends Struct {
2621 readonly pieces: u128;2587 readonly pieces: u128;
2622 readonly properties: Vec<UpDataStructsProperty>;2588 readonly properties: Vec<UpDataStructsProperty>;
2623 }2589 }
26242590
2625 /** @name UpDataStructsCreateItemExData (272) */2591 /** @name UpDataStructsCreateItemExData (269) */
2626 interface UpDataStructsCreateItemExData extends Enum {2592 interface UpDataStructsCreateItemExData extends Enum {
2627 readonly isNft: boolean;2593 readonly isNft: boolean;
2628 readonly asNft: Vec<UpDataStructsCreateNftExData>;2594 readonly asNft: Vec<UpDataStructsCreateNftExData>;
2635 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2601 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
2636 }2602 }
26372603
2638 /** @name UpDataStructsCreateNftExData (274) */2604 /** @name UpDataStructsCreateNftExData (271) */
2639 interface UpDataStructsCreateNftExData extends Struct {2605 interface UpDataStructsCreateNftExData extends Struct {
2640 readonly properties: Vec<UpDataStructsProperty>;2606 readonly properties: Vec<UpDataStructsProperty>;
2641 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2607 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2642 }2608 }
26432609
2644 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2610 /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */
2645 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2611 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
2646 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2612 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
2647 readonly pieces: u128;2613 readonly pieces: u128;
2648 readonly properties: Vec<UpDataStructsProperty>;2614 readonly properties: Vec<UpDataStructsProperty>;
2649 }2615 }
26502616
2651 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2617 /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */
2652 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2618 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
2653 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2619 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
2654 readonly properties: Vec<UpDataStructsProperty>;2620 readonly properties: Vec<UpDataStructsProperty>;
2655 }2621 }
2656
2657 /** @name PalletUniqueSchedulerCall (284) */
2658 interface PalletUniqueSchedulerCall extends Enum {
2659 readonly isScheduleNamed: boolean;
2660 readonly asScheduleNamed: {
2661 readonly id: U8aFixed;
2662 readonly when: u32;
2663 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2664 readonly priority: u8;
2665 readonly call: FrameSupportScheduleMaybeHashed;
2666 } & Struct;
2667 readonly isCancelNamed: boolean;
2668 readonly asCancelNamed: {
2669 readonly id: U8aFixed;
2670 } & Struct;
2671 readonly isScheduleNamedAfter: boolean;
2672 readonly asScheduleNamedAfter: {
2673 readonly id: U8aFixed;
2674 readonly after: u32;
2675 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2676 readonly priority: u8;
2677 readonly call: FrameSupportScheduleMaybeHashed;
2678 } & Struct;
2679 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
2680 }
2681
2682 /** @name FrameSupportScheduleMaybeHashed (286) */
2683 interface FrameSupportScheduleMaybeHashed extends Enum {
2684 readonly isValue: boolean;
2685 readonly asValue: Call;
2686 readonly isHash: boolean;
2687 readonly asHash: H256;
2688 readonly type: 'Value' | 'Hash';
2689 }
26902622
2691 /** @name PalletConfigurationCall (287) */2623 /** @name PalletConfigurationCall (281) */
2692 interface PalletConfigurationCall extends Enum {2624 interface PalletConfigurationCall extends Enum {
2693 readonly isSetWeightToFeeCoefficientOverride: boolean;2625 readonly isSetWeightToFeeCoefficientOverride: boolean;
2694 readonly asSetWeightToFeeCoefficientOverride: {2626 readonly asSetWeightToFeeCoefficientOverride: {
2701 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2633 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
2702 }2634 }
27032635
2704 /** @name PalletTemplateTransactionPaymentCall (289) */2636 /** @name PalletTemplateTransactionPaymentCall (283) */
2705 type PalletTemplateTransactionPaymentCall = Null;2637 type PalletTemplateTransactionPaymentCall = Null;
27062638
2707 /** @name PalletStructureCall (290) */2639 /** @name PalletStructureCall (284) */
2708 type PalletStructureCall = Null;2640 type PalletStructureCall = Null;
27092641
2710 /** @name PalletRmrkCoreCall (291) */2642 /** @name PalletRmrkCoreCall (285) */
2711 interface PalletRmrkCoreCall extends Enum {2643 interface PalletRmrkCoreCall extends Enum {
2712 readonly isCreateCollection: boolean;2644 readonly isCreateCollection: boolean;
2713 readonly asCreateCollection: {2645 readonly asCreateCollection: {
2813 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2745 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
2814 }2746 }
28152747
2816 /** @name RmrkTraitsResourceResourceTypes (297) */2748 /** @name RmrkTraitsResourceResourceTypes (291) */
2817 interface RmrkTraitsResourceResourceTypes extends Enum {2749 interface RmrkTraitsResourceResourceTypes extends Enum {
2818 readonly isBasic: boolean;2750 readonly isBasic: boolean;
2819 readonly asBasic: RmrkTraitsResourceBasicResource;2751 readonly asBasic: RmrkTraitsResourceBasicResource;
2824 readonly type: 'Basic' | 'Composable' | 'Slot';2756 readonly type: 'Basic' | 'Composable' | 'Slot';
2825 }2757 }
28262758
2827 /** @name RmrkTraitsResourceBasicResource (299) */2759 /** @name RmrkTraitsResourceBasicResource (293) */
2828 interface RmrkTraitsResourceBasicResource extends Struct {2760 interface RmrkTraitsResourceBasicResource extends Struct {
2829 readonly src: Option<Bytes>;2761 readonly src: Option<Bytes>;
2830 readonly metadata: Option<Bytes>;2762 readonly metadata: Option<Bytes>;
2831 readonly license: Option<Bytes>;2763 readonly license: Option<Bytes>;
2832 readonly thumb: Option<Bytes>;2764 readonly thumb: Option<Bytes>;
2833 }2765 }
28342766
2835 /** @name RmrkTraitsResourceComposableResource (301) */2767 /** @name RmrkTraitsResourceComposableResource (295) */
2836 interface RmrkTraitsResourceComposableResource extends Struct {2768 interface RmrkTraitsResourceComposableResource extends Struct {
2837 readonly parts: Vec<u32>;2769 readonly parts: Vec<u32>;
2838 readonly base: u32;2770 readonly base: u32;
2842 readonly thumb: Option<Bytes>;2774 readonly thumb: Option<Bytes>;
2843 }2775 }
28442776
2845 /** @name RmrkTraitsResourceSlotResource (302) */2777 /** @name RmrkTraitsResourceSlotResource (296) */
2846 interface RmrkTraitsResourceSlotResource extends Struct {2778 interface RmrkTraitsResourceSlotResource extends Struct {
2847 readonly base: u32;2779 readonly base: u32;
2848 readonly src: Option<Bytes>;2780 readonly src: Option<Bytes>;
2852 readonly thumb: Option<Bytes>;2784 readonly thumb: Option<Bytes>;
2853 }2785 }
28542786
2855 /** @name PalletRmrkEquipCall (305) */2787 /** @name PalletRmrkEquipCall (299) */
2856 interface PalletRmrkEquipCall extends Enum {2788 interface PalletRmrkEquipCall extends Enum {
2857 readonly isCreateBase: boolean;2789 readonly isCreateBase: boolean;
2858 readonly asCreateBase: {2790 readonly asCreateBase: {
2874 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2806 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
2875 }2807 }
28762808
2877 /** @name RmrkTraitsPartPartType (308) */2809 /** @name RmrkTraitsPartPartType (302) */
2878 interface RmrkTraitsPartPartType extends Enum {2810 interface RmrkTraitsPartPartType extends Enum {
2879 readonly isFixedPart: boolean;2811 readonly isFixedPart: boolean;
2880 readonly asFixedPart: RmrkTraitsPartFixedPart;2812 readonly asFixedPart: RmrkTraitsPartFixedPart;
2883 readonly type: 'FixedPart' | 'SlotPart';2815 readonly type: 'FixedPart' | 'SlotPart';
2884 }2816 }
28852817
2886 /** @name RmrkTraitsPartFixedPart (310) */2818 /** @name RmrkTraitsPartFixedPart (304) */
2887 interface RmrkTraitsPartFixedPart extends Struct {2819 interface RmrkTraitsPartFixedPart extends Struct {
2888 readonly id: u32;2820 readonly id: u32;
2889 readonly z: u32;2821 readonly z: u32;
2890 readonly src: Bytes;2822 readonly src: Bytes;
2891 }2823 }
28922824
2893 /** @name RmrkTraitsPartSlotPart (311) */2825 /** @name RmrkTraitsPartSlotPart (305) */
2894 interface RmrkTraitsPartSlotPart extends Struct {2826 interface RmrkTraitsPartSlotPart extends Struct {
2895 readonly id: u32;2827 readonly id: u32;
2896 readonly equippable: RmrkTraitsPartEquippableList;2828 readonly equippable: RmrkTraitsPartEquippableList;
2897 readonly src: Bytes;2829 readonly src: Bytes;
2898 readonly z: u32;2830 readonly z: u32;
2899 }2831 }
29002832
2901 /** @name RmrkTraitsPartEquippableList (312) */2833 /** @name RmrkTraitsPartEquippableList (306) */
2902 interface RmrkTraitsPartEquippableList extends Enum {2834 interface RmrkTraitsPartEquippableList extends Enum {
2903 readonly isAll: boolean;2835 readonly isAll: boolean;
2904 readonly isEmpty: boolean;2836 readonly isEmpty: boolean;
2907 readonly type: 'All' | 'Empty' | 'Custom';2839 readonly type: 'All' | 'Empty' | 'Custom';
2908 }2840 }
29092841
2910 /** @name RmrkTraitsTheme (314) */2842 /** @name RmrkTraitsTheme (308) */
2911 interface RmrkTraitsTheme extends Struct {2843 interface RmrkTraitsTheme extends Struct {
2912 readonly name: Bytes;2844 readonly name: Bytes;
2913 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2845 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
2914 readonly inherit: bool;2846 readonly inherit: bool;
2915 }2847 }
29162848
2917 /** @name RmrkTraitsThemeThemeProperty (316) */2849 /** @name RmrkTraitsThemeThemeProperty (310) */
2918 interface RmrkTraitsThemeThemeProperty extends Struct {2850 interface RmrkTraitsThemeThemeProperty extends Struct {
2919 readonly key: Bytes;2851 readonly key: Bytes;
2920 readonly value: Bytes;2852 readonly value: Bytes;
2921 }2853 }
29222854
2923 /** @name PalletAppPromotionCall (318) */2855 /** @name PalletAppPromotionCall (312) */
2924 interface PalletAppPromotionCall extends Enum {2856 interface PalletAppPromotionCall extends Enum {
2925 readonly isSetAdminAddress: boolean;2857 readonly isSetAdminAddress: boolean;
2926 readonly asSetAdminAddress: {2858 readonly asSetAdminAddress: {
2954 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2886 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
2955 }2887 }
29562888
2957 /** @name PalletForeignAssetsModuleCall (320) */2889 /** @name PalletForeignAssetsModuleCall (314) */
2958 interface PalletForeignAssetsModuleCall extends Enum {2890 interface PalletForeignAssetsModuleCall extends Enum {
2959 readonly isRegisterForeignAsset: boolean;2891 readonly isRegisterForeignAsset: boolean;
2960 readonly asRegisterForeignAsset: {2892 readonly asRegisterForeignAsset: {
2971 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2903 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
2972 }2904 }
29732905
2974 /** @name PalletEvmCall (321) */2906 /** @name PalletEvmCall (315) */
2975 interface PalletEvmCall extends Enum {2907 interface PalletEvmCall extends Enum {
2976 readonly isWithdraw: boolean;2908 readonly isWithdraw: boolean;
2977 readonly asWithdraw: {2909 readonly asWithdraw: {
3016 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2948 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3017 }2949 }
30182950
3019 /** @name PalletEthereumCall (325) */2951 /** @name PalletEthereumCall (319) */
3020 interface PalletEthereumCall extends Enum {2952 interface PalletEthereumCall extends Enum {
3021 readonly isTransact: boolean;2953 readonly isTransact: boolean;
3022 readonly asTransact: {2954 readonly asTransact: {
3025 readonly type: 'Transact';2957 readonly type: 'Transact';
3026 }2958 }
30272959
3028 /** @name EthereumTransactionTransactionV2 (326) */2960 /** @name EthereumTransactionTransactionV2 (320) */
3029 interface EthereumTransactionTransactionV2 extends Enum {2961 interface EthereumTransactionTransactionV2 extends Enum {
3030 readonly isLegacy: boolean;2962 readonly isLegacy: boolean;
3031 readonly asLegacy: EthereumTransactionLegacyTransaction;2963 readonly asLegacy: EthereumTransactionLegacyTransaction;
3036 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2968 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3037 }2969 }
30382970
3039 /** @name EthereumTransactionLegacyTransaction (327) */2971 /** @name EthereumTransactionLegacyTransaction (321) */
3040 interface EthereumTransactionLegacyTransaction extends Struct {2972 interface EthereumTransactionLegacyTransaction extends Struct {
3041 readonly nonce: U256;2973 readonly nonce: U256;
3042 readonly gasPrice: U256;2974 readonly gasPrice: U256;
3047 readonly signature: EthereumTransactionTransactionSignature;2979 readonly signature: EthereumTransactionTransactionSignature;
3048 }2980 }
30492981
3050 /** @name EthereumTransactionTransactionAction (328) */2982 /** @name EthereumTransactionTransactionAction (322) */
3051 interface EthereumTransactionTransactionAction extends Enum {2983 interface EthereumTransactionTransactionAction extends Enum {
3052 readonly isCall: boolean;2984 readonly isCall: boolean;
3053 readonly asCall: H160;2985 readonly asCall: H160;
3054 readonly isCreate: boolean;2986 readonly isCreate: boolean;
3055 readonly type: 'Call' | 'Create';2987 readonly type: 'Call' | 'Create';
3056 }2988 }
30572989
3058 /** @name EthereumTransactionTransactionSignature (329) */2990 /** @name EthereumTransactionTransactionSignature (323) */
3059 interface EthereumTransactionTransactionSignature extends Struct {2991 interface EthereumTransactionTransactionSignature extends Struct {
3060 readonly v: u64;2992 readonly v: u64;
3061 readonly r: H256;2993 readonly r: H256;
3062 readonly s: H256;2994 readonly s: H256;
3063 }2995 }
30642996
3065 /** @name EthereumTransactionEip2930Transaction (331) */2997 /** @name EthereumTransactionEip2930Transaction (325) */
3066 interface EthereumTransactionEip2930Transaction extends Struct {2998 interface EthereumTransactionEip2930Transaction extends Struct {
3067 readonly chainId: u64;2999 readonly chainId: u64;
3068 readonly nonce: U256;3000 readonly nonce: U256;
3077 readonly s: H256;3009 readonly s: H256;
3078 }3010 }
30793011
3080 /** @name EthereumTransactionAccessListItem (333) */3012 /** @name EthereumTransactionAccessListItem (327) */
3081 interface EthereumTransactionAccessListItem extends Struct {3013 interface EthereumTransactionAccessListItem extends Struct {
3082 readonly address: H160;3014 readonly address: H160;
3083 readonly storageKeys: Vec<H256>;3015 readonly storageKeys: Vec<H256>;
3084 }3016 }
30853017
3086 /** @name EthereumTransactionEip1559Transaction (334) */3018 /** @name EthereumTransactionEip1559Transaction (328) */
3087 interface EthereumTransactionEip1559Transaction extends Struct {3019 interface EthereumTransactionEip1559Transaction extends Struct {
3088 readonly chainId: u64;3020 readonly chainId: u64;
3089 readonly nonce: U256;3021 readonly nonce: U256;
3099 readonly s: H256;3031 readonly s: H256;
3100 }3032 }
31013033
3102 /** @name PalletEvmMigrationCall (335) */3034 /** @name PalletEvmMigrationCall (329) */
3103 interface PalletEvmMigrationCall extends Enum {3035 interface PalletEvmMigrationCall extends Enum {
3104 readonly isBegin: boolean;3036 readonly isBegin: boolean;
3105 readonly asBegin: {3037 readonly asBegin: {
3118 readonly type: 'Begin' | 'SetData' | 'Finish';3050 readonly type: 'Begin' | 'SetData' | 'Finish';
3119 }3051 }
31203052
3121 /** @name PalletSudoError (338) */3053 /** @name PalletSudoError (332) */
3122 interface PalletSudoError extends Enum {3054 interface PalletSudoError extends Enum {
3123 readonly isRequireSudo: boolean;3055 readonly isRequireSudo: boolean;
3124 readonly type: 'RequireSudo';3056 readonly type: 'RequireSudo';
3125 }3057 }
31263058
3127 /** @name OrmlVestingModuleError (340) */3059 /** @name OrmlVestingModuleError (334) */
3128 interface OrmlVestingModuleError extends Enum {3060 interface OrmlVestingModuleError extends Enum {
3129 readonly isZeroVestingPeriod: boolean;3061 readonly isZeroVestingPeriod: boolean;
3130 readonly isZeroVestingPeriodCount: boolean;3062 readonly isZeroVestingPeriodCount: boolean;
3135 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3067 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3136 }3068 }
31373069
3138 /** @name OrmlXtokensModuleError (341) */3070 /** @name OrmlXtokensModuleError (335) */
3139 interface OrmlXtokensModuleError extends Enum {3071 interface OrmlXtokensModuleError extends Enum {
3140 readonly isAssetHasNoReserve: boolean;3072 readonly isAssetHasNoReserve: boolean;
3141 readonly isNotCrossChainTransfer: boolean;3073 readonly isNotCrossChainTransfer: boolean;
3159 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3091 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3160 }3092 }
31613093
3162 /** @name OrmlTokensBalanceLock (344) */3094 /** @name OrmlTokensBalanceLock (338) */
3163 interface OrmlTokensBalanceLock extends Struct {3095 interface OrmlTokensBalanceLock extends Struct {
3164 readonly id: U8aFixed;3096 readonly id: U8aFixed;
3165 readonly amount: u128;3097 readonly amount: u128;
3166 }3098 }
31673099
3168 /** @name OrmlTokensAccountData (346) */3100 /** @name OrmlTokensAccountData (340) */
3169 interface OrmlTokensAccountData extends Struct {3101 interface OrmlTokensAccountData extends Struct {
3170 readonly free: u128;3102 readonly free: u128;
3171 readonly reserved: u128;3103 readonly reserved: u128;
3172 readonly frozen: u128;3104 readonly frozen: u128;
3173 }3105 }
31743106
3175 /** @name OrmlTokensReserveData (348) */3107 /** @name OrmlTokensReserveData (342) */
3176 interface OrmlTokensReserveData extends Struct {3108 interface OrmlTokensReserveData extends Struct {
3177 readonly id: Null;3109 readonly id: Null;
3178 readonly amount: u128;3110 readonly amount: u128;
3179 }3111 }
31803112
3181 /** @name OrmlTokensModuleError (350) */3113 /** @name OrmlTokensModuleError (344) */
3182 interface OrmlTokensModuleError extends Enum {3114 interface OrmlTokensModuleError extends Enum {
3183 readonly isBalanceTooLow: boolean;3115 readonly isBalanceTooLow: boolean;
3184 readonly isAmountIntoBalanceFailed: boolean;3116 readonly isAmountIntoBalanceFailed: boolean;
3191 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3123 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3192 }3124 }
31933125
3194 /** @name CumulusPalletXcmpQueueInboundChannelDetails (352) */3126 /** @name CumulusPalletXcmpQueueInboundChannelDetails (346) */
3195 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3127 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3196 readonly sender: u32;3128 readonly sender: u32;
3197 readonly state: CumulusPalletXcmpQueueInboundState;3129 readonly state: CumulusPalletXcmpQueueInboundState;
3198 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3130 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3199 }3131 }
32003132
3201 /** @name CumulusPalletXcmpQueueInboundState (353) */3133 /** @name CumulusPalletXcmpQueueInboundState (347) */
3202 interface CumulusPalletXcmpQueueInboundState extends Enum {3134 interface CumulusPalletXcmpQueueInboundState extends Enum {
3203 readonly isOk: boolean;3135 readonly isOk: boolean;
3204 readonly isSuspended: boolean;3136 readonly isSuspended: boolean;
3205 readonly type: 'Ok' | 'Suspended';3137 readonly type: 'Ok' | 'Suspended';
3206 }3138 }
32073139
3208 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (356) */3140 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (350) */
3209 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3141 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3210 readonly isConcatenatedVersionedXcm: boolean;3142 readonly isConcatenatedVersionedXcm: boolean;
3211 readonly isConcatenatedEncodedBlob: boolean;3143 readonly isConcatenatedEncodedBlob: boolean;
3212 readonly isSignals: boolean;3144 readonly isSignals: boolean;
3213 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3145 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3214 }3146 }
32153147
3216 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (359) */3148 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (353) */
3217 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3149 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3218 readonly recipient: u32;3150 readonly recipient: u32;
3219 readonly state: CumulusPalletXcmpQueueOutboundState;3151 readonly state: CumulusPalletXcmpQueueOutboundState;
3222 readonly lastIndex: u16;3154 readonly lastIndex: u16;
3223 }3155 }
32243156
3225 /** @name CumulusPalletXcmpQueueOutboundState (360) */3157 /** @name CumulusPalletXcmpQueueOutboundState (354) */
3226 interface CumulusPalletXcmpQueueOutboundState extends Enum {3158 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3227 readonly isOk: boolean;3159 readonly isOk: boolean;
3228 readonly isSuspended: boolean;3160 readonly isSuspended: boolean;
3229 readonly type: 'Ok' | 'Suspended';3161 readonly type: 'Ok' | 'Suspended';
3230 }3162 }
32313163
3232 /** @name CumulusPalletXcmpQueueQueueConfigData (362) */3164 /** @name CumulusPalletXcmpQueueQueueConfigData (356) */
3233 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3165 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3234 readonly suspendThreshold: u32;3166 readonly suspendThreshold: u32;
3235 readonly dropThreshold: u32;3167 readonly dropThreshold: u32;
3239 readonly xcmpMaxIndividualWeight: Weight;3171 readonly xcmpMaxIndividualWeight: Weight;
3240 }3172 }
32413173
3242 /** @name CumulusPalletXcmpQueueError (364) */3174 /** @name CumulusPalletXcmpQueueError (358) */
3243 interface CumulusPalletXcmpQueueError extends Enum {3175 interface CumulusPalletXcmpQueueError extends Enum {
3244 readonly isFailedToSend: boolean;3176 readonly isFailedToSend: boolean;
3245 readonly isBadXcmOrigin: boolean;3177 readonly isBadXcmOrigin: boolean;
3249 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3181 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3250 }3182 }
32513183
3252 /** @name PalletXcmError (365) */3184 /** @name PalletXcmError (359) */
3253 interface PalletXcmError extends Enum {3185 interface PalletXcmError extends Enum {
3254 readonly isUnreachable: boolean;3186 readonly isUnreachable: boolean;
3255 readonly isSendFailure: boolean;3187 readonly isSendFailure: boolean;
3267 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3199 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
3268 }3200 }
32693201
3270 /** @name CumulusPalletXcmError (366) */3202 /** @name CumulusPalletXcmError (360) */
3271 type CumulusPalletXcmError = Null;3203 type CumulusPalletXcmError = Null;
32723204
3273 /** @name CumulusPalletDmpQueueConfigData (367) */3205 /** @name CumulusPalletDmpQueueConfigData (361) */
3274 interface CumulusPalletDmpQueueConfigData extends Struct {3206 interface CumulusPalletDmpQueueConfigData extends Struct {
3275 readonly maxIndividual: Weight;3207 readonly maxIndividual: Weight;
3276 }3208 }
32773209
3278 /** @name CumulusPalletDmpQueuePageIndexData (368) */3210 /** @name CumulusPalletDmpQueuePageIndexData (362) */
3279 interface CumulusPalletDmpQueuePageIndexData extends Struct {3211 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3280 readonly beginUsed: u32;3212 readonly beginUsed: u32;
3281 readonly endUsed: u32;3213 readonly endUsed: u32;
3282 readonly overweightCount: u64;3214 readonly overweightCount: u64;
3283 }3215 }
32843216
3285 /** @name CumulusPalletDmpQueueError (371) */3217 /** @name CumulusPalletDmpQueueError (365) */
3286 interface CumulusPalletDmpQueueError extends Enum {3218 interface CumulusPalletDmpQueueError extends Enum {
3287 readonly isUnknown: boolean;3219 readonly isUnknown: boolean;
3288 readonly isOverLimit: boolean;3220 readonly isOverLimit: boolean;
3289 readonly type: 'Unknown' | 'OverLimit';3221 readonly type: 'Unknown' | 'OverLimit';
3290 }3222 }
32913223
3292 /** @name PalletUniqueError (375) */3224 /** @name PalletUniqueError (369) */
3293 interface PalletUniqueError extends Enum {3225 interface PalletUniqueError extends Enum {
3294 readonly isCollectionDecimalPointLimitExceeded: boolean;3226 readonly isCollectionDecimalPointLimitExceeded: boolean;
3295 readonly isConfirmUnsetSponsorFail: boolean;3227 readonly isConfirmUnsetSponsorFail: boolean;
3298 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3230 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3299 }3231 }
3300
3301 /** @name PalletUniqueSchedulerScheduledV3 (378) */
3302 interface PalletUniqueSchedulerScheduledV3 extends Struct {
3303 readonly maybeId: Option<U8aFixed>;
3304 readonly priority: u8;
3305 readonly call: FrameSupportScheduleMaybeHashed;
3306 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
3307 readonly origin: OpalRuntimeOriginCaller;
3308 }
3309
3310 /** @name OpalRuntimeOriginCaller (379) */
3311 interface OpalRuntimeOriginCaller extends Enum {
3312 readonly isSystem: boolean;
3313 readonly asSystem: FrameSupportDispatchRawOrigin;
3314 readonly isVoid: boolean;
3315 readonly isPolkadotXcm: boolean;
3316 readonly asPolkadotXcm: PalletXcmOrigin;
3317 readonly isCumulusXcm: boolean;
3318 readonly asCumulusXcm: CumulusPalletXcmOrigin;
3319 readonly isEthereum: boolean;
3320 readonly asEthereum: PalletEthereumRawOrigin;
3321 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
3322 }
3323
3324 /** @name FrameSupportDispatchRawOrigin (380) */
3325 interface FrameSupportDispatchRawOrigin extends Enum {
3326 readonly isRoot: boolean;
3327 readonly isSigned: boolean;
3328 readonly asSigned: AccountId32;
3329 readonly isNone: boolean;
3330 readonly type: 'Root' | 'Signed' | 'None';
3331 }
3332
3333 /** @name PalletXcmOrigin (381) */
3334 interface PalletXcmOrigin extends Enum {
3335 readonly isXcm: boolean;
3336 readonly asXcm: XcmV1MultiLocation;
3337 readonly isResponse: boolean;
3338 readonly asResponse: XcmV1MultiLocation;
3339 readonly type: 'Xcm' | 'Response';
3340 }
3341
3342 /** @name CumulusPalletXcmOrigin (382) */
3343 interface CumulusPalletXcmOrigin extends Enum {
3344 readonly isRelay: boolean;
3345 readonly isSiblingParachain: boolean;
3346 readonly asSiblingParachain: u32;
3347 readonly type: 'Relay' | 'SiblingParachain';
3348 }
3349
3350 /** @name PalletEthereumRawOrigin (383) */
3351 interface PalletEthereumRawOrigin extends Enum {
3352 readonly isEthereumTransaction: boolean;
3353 readonly asEthereumTransaction: H160;
3354 readonly type: 'EthereumTransaction';
3355 }
3356
3357 /** @name SpCoreVoid (384) */
3358 type SpCoreVoid = Null;
3359
3360 /** @name PalletUniqueSchedulerError (385) */
3361 interface PalletUniqueSchedulerError extends Enum {
3362 readonly isFailedToSchedule: boolean;
3363 readonly isNotFound: boolean;
3364 readonly isTargetBlockNumberInPast: boolean;
3365 readonly isRescheduleNoChange: boolean;
3366 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
3367 }
33683232
3369 /** @name UpDataStructsCollection (386) */3233 /** @name UpDataStructsCollection (370) */
3370 interface UpDataStructsCollection extends Struct {3234 interface UpDataStructsCollection extends Struct {
3371 readonly owner: AccountId32;3235 readonly owner: AccountId32;
3372 readonly mode: UpDataStructsCollectionMode;3236 readonly mode: UpDataStructsCollectionMode;
3379 readonly flags: U8aFixed;3243 readonly flags: U8aFixed;
3380 }3244 }
33813245
3382 /** @name UpDataStructsSponsorshipStateAccountId32 (387) */3246 /** @name UpDataStructsSponsorshipStateAccountId32 (371) */
3383 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3247 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3384 readonly isDisabled: boolean;3248 readonly isDisabled: boolean;
3385 readonly isUnconfirmed: boolean;3249 readonly isUnconfirmed: boolean;
3389 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3253 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3390 }3254 }
33913255
3392 /** @name UpDataStructsProperties (389) */3256 /** @name UpDataStructsProperties (373) */
3393 interface UpDataStructsProperties extends Struct {3257 interface UpDataStructsProperties extends Struct {
3394 readonly map: UpDataStructsPropertiesMapBoundedVec;3258 readonly map: UpDataStructsPropertiesMapBoundedVec;
3395 readonly consumedSpace: u32;3259 readonly consumedSpace: u32;
3396 readonly spaceLimit: u32;3260 readonly spaceLimit: u32;
3397 }3261 }
33983262
3399 /** @name UpDataStructsPropertiesMapBoundedVec (390) */3263 /** @name UpDataStructsPropertiesMapBoundedVec (374) */
3400 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3264 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
34013265
3402 /** @name UpDataStructsPropertiesMapPropertyPermission (395) */3266 /** @name UpDataStructsPropertiesMapPropertyPermission (379) */
3403 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3267 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
34043268
3405 /** @name UpDataStructsCollectionStats (402) */3269 /** @name UpDataStructsCollectionStats (386) */
3406 interface UpDataStructsCollectionStats extends Struct {3270 interface UpDataStructsCollectionStats extends Struct {
3407 readonly created: u32;3271 readonly created: u32;
3408 readonly destroyed: u32;3272 readonly destroyed: u32;
3409 readonly alive: u32;3273 readonly alive: u32;
3410 }3274 }
34113275
3412 /** @name UpDataStructsTokenChild (403) */3276 /** @name UpDataStructsTokenChild (387) */
3413 interface UpDataStructsTokenChild extends Struct {3277 interface UpDataStructsTokenChild extends Struct {
3414 readonly token: u32;3278 readonly token: u32;
3415 readonly collection: u32;3279 readonly collection: u32;
3416 }3280 }
34173281
3418 /** @name PhantomTypeUpDataStructs (404) */3282 /** @name PhantomTypeUpDataStructs (388) */
3419 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3283 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
34203284
3421 /** @name UpDataStructsTokenData (406) */3285 /** @name UpDataStructsTokenData (390) */
3422 interface UpDataStructsTokenData extends Struct {3286 interface UpDataStructsTokenData extends Struct {
3423 readonly properties: Vec<UpDataStructsProperty>;3287 readonly properties: Vec<UpDataStructsProperty>;
3424 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3288 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3425 readonly pieces: u128;3289 readonly pieces: u128;
3426 }3290 }
34273291
3428 /** @name UpDataStructsRpcCollection (408) */3292 /** @name UpDataStructsRpcCollection (392) */
3429 interface UpDataStructsRpcCollection extends Struct {3293 interface UpDataStructsRpcCollection extends Struct {
3430 readonly owner: AccountId32;3294 readonly owner: AccountId32;
3431 readonly mode: UpDataStructsCollectionMode;3295 readonly mode: UpDataStructsCollectionMode;
3441 readonly flags: UpDataStructsRpcCollectionFlags;3305 readonly flags: UpDataStructsRpcCollectionFlags;
3442 }3306 }
34433307
3444 /** @name UpDataStructsRpcCollectionFlags (409) */3308 /** @name UpDataStructsRpcCollectionFlags (393) */
3445 interface UpDataStructsRpcCollectionFlags extends Struct {3309 interface UpDataStructsRpcCollectionFlags extends Struct {
3446 readonly foreign: bool;3310 readonly foreign: bool;
3447 readonly erc721metadata: bool;3311 readonly erc721metadata: bool;
3448 }3312 }
34493313
3450 /** @name RmrkTraitsCollectionCollectionInfo (410) */3314 /** @name RmrkTraitsCollectionCollectionInfo (394) */
3451 interface RmrkTraitsCollectionCollectionInfo extends Struct {3315 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3452 readonly issuer: AccountId32;3316 readonly issuer: AccountId32;
3453 readonly metadata: Bytes;3317 readonly metadata: Bytes;
3456 readonly nftsCount: u32;3320 readonly nftsCount: u32;
3457 }3321 }
34583322
3459 /** @name RmrkTraitsNftNftInfo (411) */3323 /** @name RmrkTraitsNftNftInfo (395) */
3460 interface RmrkTraitsNftNftInfo extends Struct {3324 interface RmrkTraitsNftNftInfo extends Struct {
3461 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3325 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3462 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3326 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3465 readonly pending: bool;3329 readonly pending: bool;
3466 }3330 }
34673331
3468 /** @name RmrkTraitsNftRoyaltyInfo (413) */3332 /** @name RmrkTraitsNftRoyaltyInfo (397) */
3469 interface RmrkTraitsNftRoyaltyInfo extends Struct {3333 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3470 readonly recipient: AccountId32;3334 readonly recipient: AccountId32;
3471 readonly amount: Permill;3335 readonly amount: Permill;
3472 }3336 }
34733337
3474 /** @name RmrkTraitsResourceResourceInfo (414) */3338 /** @name RmrkTraitsResourceResourceInfo (398) */
3475 interface RmrkTraitsResourceResourceInfo extends Struct {3339 interface RmrkTraitsResourceResourceInfo extends Struct {
3476 readonly id: u32;3340 readonly id: u32;
3477 readonly resource: RmrkTraitsResourceResourceTypes;3341 readonly resource: RmrkTraitsResourceResourceTypes;
3478 readonly pending: bool;3342 readonly pending: bool;
3479 readonly pendingRemoval: bool;3343 readonly pendingRemoval: bool;
3480 }3344 }
34813345
3482 /** @name RmrkTraitsPropertyPropertyInfo (415) */3346 /** @name RmrkTraitsPropertyPropertyInfo (399) */
3483 interface RmrkTraitsPropertyPropertyInfo extends Struct {3347 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3484 readonly key: Bytes;3348 readonly key: Bytes;
3485 readonly value: Bytes;3349 readonly value: Bytes;
3486 }3350 }
34873351
3488 /** @name RmrkTraitsBaseBaseInfo (416) */3352 /** @name RmrkTraitsBaseBaseInfo (400) */
3489 interface RmrkTraitsBaseBaseInfo extends Struct {3353 interface RmrkTraitsBaseBaseInfo extends Struct {
3490 readonly issuer: AccountId32;3354 readonly issuer: AccountId32;
3491 readonly baseType: Bytes;3355 readonly baseType: Bytes;
3492 readonly symbol: Bytes;3356 readonly symbol: Bytes;
3493 }3357 }
34943358
3495 /** @name RmrkTraitsNftNftChild (417) */3359 /** @name RmrkTraitsNftNftChild (401) */
3496 interface RmrkTraitsNftNftChild extends Struct {3360 interface RmrkTraitsNftNftChild extends Struct {
3497 readonly collectionId: u32;3361 readonly collectionId: u32;
3498 readonly nftId: u32;3362 readonly nftId: u32;
3499 }3363 }
35003364
3501 /** @name PalletCommonError (419) */3365 /** @name PalletCommonError (403) */
3502 interface PalletCommonError extends Enum {3366 interface PalletCommonError extends Enum {
3503 readonly isCollectionNotFound: boolean;3367 readonly isCollectionNotFound: boolean;
3504 readonly isMustBeTokenOwner: boolean;3368 readonly isMustBeTokenOwner: boolean;
3537 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3401 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
3538 }3402 }
35393403
3540 /** @name PalletFungibleError (421) */3404 /** @name PalletFungibleError (405) */
3541 interface PalletFungibleError extends Enum {3405 interface PalletFungibleError extends Enum {
3542 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3406 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3543 readonly isFungibleItemsHaveNoId: boolean;3407 readonly isFungibleItemsHaveNoId: boolean;
3547 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3411 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3548 }3412 }
35493413
3550 /** @name PalletRefungibleItemData (422) */3414 /** @name PalletRefungibleItemData (406) */
3551 interface PalletRefungibleItemData extends Struct {3415 interface PalletRefungibleItemData extends Struct {
3552 readonly constData: Bytes;3416 readonly constData: Bytes;
3553 }3417 }
35543418
3555 /** @name PalletRefungibleError (427) */3419 /** @name PalletRefungibleError (411) */
3556 interface PalletRefungibleError extends Enum {3420 interface PalletRefungibleError extends Enum {
3557 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3421 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3558 readonly isWrongRefungiblePieces: boolean;3422 readonly isWrongRefungiblePieces: boolean;
3562 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3426 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3563 }3427 }
35643428
3565 /** @name PalletNonfungibleItemData (428) */3429 /** @name PalletNonfungibleItemData (412) */
3566 interface PalletNonfungibleItemData extends Struct {3430 interface PalletNonfungibleItemData extends Struct {
3567 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3431 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3568 }3432 }
35693433
3570 /** @name UpDataStructsPropertyScope (430) */3434 /** @name UpDataStructsPropertyScope (414) */
3571 interface UpDataStructsPropertyScope extends Enum {3435 interface UpDataStructsPropertyScope extends Enum {
3572 readonly isNone: boolean;3436 readonly isNone: boolean;
3573 readonly isRmrk: boolean;3437 readonly isRmrk: boolean;
3574 readonly type: 'None' | 'Rmrk';3438 readonly type: 'None' | 'Rmrk';
3575 }3439 }
35763440
3577 /** @name PalletNonfungibleError (432) */3441 /** @name PalletNonfungibleError (416) */
3578 interface PalletNonfungibleError extends Enum {3442 interface PalletNonfungibleError extends Enum {
3579 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3443 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3580 readonly isNonfungibleItemsHaveNoAmount: boolean;3444 readonly isNonfungibleItemsHaveNoAmount: boolean;
3581 readonly isCantBurnNftWithChildren: boolean;3445 readonly isCantBurnNftWithChildren: boolean;
3582 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3446 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3583 }3447 }
35843448
3585 /** @name PalletStructureError (433) */3449 /** @name PalletStructureError (417) */
3586 interface PalletStructureError extends Enum {3450 interface PalletStructureError extends Enum {
3587 readonly isOuroborosDetected: boolean;3451 readonly isOuroborosDetected: boolean;
3588 readonly isDepthLimit: boolean;3452 readonly isDepthLimit: boolean;
3591 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3455 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
3592 }3456 }
35933457
3594 /** @name PalletRmrkCoreError (434) */3458 /** @name PalletRmrkCoreError (418) */
3595 interface PalletRmrkCoreError extends Enum {3459 interface PalletRmrkCoreError extends Enum {
3596 readonly isCorruptedCollectionType: boolean;3460 readonly isCorruptedCollectionType: boolean;
3597 readonly isRmrkPropertyKeyIsTooLong: boolean;3461 readonly isRmrkPropertyKeyIsTooLong: boolean;
3615 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3479 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
3616 }3480 }
36173481
3618 /** @name PalletRmrkEquipError (436) */3482 /** @name PalletRmrkEquipError (420) */
3619 interface PalletRmrkEquipError extends Enum {3483 interface PalletRmrkEquipError extends Enum {
3620 readonly isPermissionError: boolean;3484 readonly isPermissionError: boolean;
3621 readonly isNoAvailableBaseId: boolean;3485 readonly isNoAvailableBaseId: boolean;
3627 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3491 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
3628 }3492 }
36293493
3630 /** @name PalletAppPromotionError (442) */3494 /** @name PalletAppPromotionError (426) */
3631 interface PalletAppPromotionError extends Enum {3495 interface PalletAppPromotionError extends Enum {
3632 readonly isAdminNotSet: boolean;3496 readonly isAdminNotSet: boolean;
3633 readonly isNoPermission: boolean;3497 readonly isNoPermission: boolean;
3638 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3502 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
3639 }3503 }
36403504
3641 /** @name PalletForeignAssetsModuleError (443) */3505 /** @name PalletForeignAssetsModuleError (427) */
3642 interface PalletForeignAssetsModuleError extends Enum {3506 interface PalletForeignAssetsModuleError extends Enum {
3643 readonly isBadLocation: boolean;3507 readonly isBadLocation: boolean;
3644 readonly isMultiLocationExisted: boolean;3508 readonly isMultiLocationExisted: boolean;
3647 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3511 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3648 }3512 }
36493513
3650 /** @name PalletEvmError (446) */3514 /** @name PalletEvmError (430) */
3651 interface PalletEvmError extends Enum {3515 interface PalletEvmError extends Enum {
3652 readonly isBalanceLow: boolean;3516 readonly isBalanceLow: boolean;
3653 readonly isFeeOverflow: boolean;3517 readonly isFeeOverflow: boolean;
3658 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3522 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
3659 }3523 }
36603524
3661 /** @name FpRpcTransactionStatus (449) */3525 /** @name FpRpcTransactionStatus (433) */
3662 interface FpRpcTransactionStatus extends Struct {3526 interface FpRpcTransactionStatus extends Struct {
3663 readonly transactionHash: H256;3527 readonly transactionHash: H256;
3664 readonly transactionIndex: u32;3528 readonly transactionIndex: u32;
3669 readonly logsBloom: EthbloomBloom;3533 readonly logsBloom: EthbloomBloom;
3670 }3534 }
36713535
3672 /** @name EthbloomBloom (451) */3536 /** @name EthbloomBloom (435) */
3673 interface EthbloomBloom extends U8aFixed {}3537 interface EthbloomBloom extends U8aFixed {}
36743538
3675 /** @name EthereumReceiptReceiptV3 (453) */3539 /** @name EthereumReceiptReceiptV3 (437) */
3676 interface EthereumReceiptReceiptV3 extends Enum {3540 interface EthereumReceiptReceiptV3 extends Enum {
3677 readonly isLegacy: boolean;3541 readonly isLegacy: boolean;
3678 readonly asLegacy: EthereumReceiptEip658ReceiptData;3542 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3683 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3547 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3684 }3548 }
36853549
3686 /** @name EthereumReceiptEip658ReceiptData (454) */3550 /** @name EthereumReceiptEip658ReceiptData (438) */
3687 interface EthereumReceiptEip658ReceiptData extends Struct {3551 interface EthereumReceiptEip658ReceiptData extends Struct {
3688 readonly statusCode: u8;3552 readonly statusCode: u8;
3689 readonly usedGas: U256;3553 readonly usedGas: U256;
3690 readonly logsBloom: EthbloomBloom;3554 readonly logsBloom: EthbloomBloom;
3691 readonly logs: Vec<EthereumLog>;3555 readonly logs: Vec<EthereumLog>;
3692 }3556 }
36933557
3694 /** @name EthereumBlock (455) */3558 /** @name EthereumBlock (439) */
3695 interface EthereumBlock extends Struct {3559 interface EthereumBlock extends Struct {
3696 readonly header: EthereumHeader;3560 readonly header: EthereumHeader;
3697 readonly transactions: Vec<EthereumTransactionTransactionV2>;3561 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3698 readonly ommers: Vec<EthereumHeader>;3562 readonly ommers: Vec<EthereumHeader>;
3699 }3563 }
37003564
3701 /** @name EthereumHeader (456) */3565 /** @name EthereumHeader (440) */
3702 interface EthereumHeader extends Struct {3566 interface EthereumHeader extends Struct {
3703 readonly parentHash: H256;3567 readonly parentHash: H256;
3704 readonly ommersHash: H256;3568 readonly ommersHash: H256;
3717 readonly nonce: EthereumTypesHashH64;3581 readonly nonce: EthereumTypesHashH64;
3718 }3582 }
37193583
3720 /** @name EthereumTypesHashH64 (457) */3584 /** @name EthereumTypesHashH64 (441) */
3721 interface EthereumTypesHashH64 extends U8aFixed {}3585 interface EthereumTypesHashH64 extends U8aFixed {}
37223586
3723 /** @name PalletEthereumError (462) */3587 /** @name PalletEthereumError (446) */
3724 interface PalletEthereumError extends Enum {3588 interface PalletEthereumError extends Enum {
3725 readonly isInvalidSignature: boolean;3589 readonly isInvalidSignature: boolean;
3726 readonly isPreLogExists: boolean;3590 readonly isPreLogExists: boolean;
3727 readonly type: 'InvalidSignature' | 'PreLogExists';3591 readonly type: 'InvalidSignature' | 'PreLogExists';
3728 }3592 }
37293593
3730 /** @name PalletEvmCoderSubstrateError (463) */3594 /** @name PalletEvmCoderSubstrateError (447) */
3731 interface PalletEvmCoderSubstrateError extends Enum {3595 interface PalletEvmCoderSubstrateError extends Enum {
3732 readonly isOutOfGas: boolean;3596 readonly isOutOfGas: boolean;
3733 readonly isOutOfFund: boolean;3597 readonly isOutOfFund: boolean;
3734 readonly type: 'OutOfGas' | 'OutOfFund';3598 readonly type: 'OutOfGas' | 'OutOfFund';
3735 }3599 }
37363600
3737 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (464) */3601 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (448) */
3738 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3602 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
3739 readonly isDisabled: boolean;3603 readonly isDisabled: boolean;
3740 readonly isUnconfirmed: boolean;3604 readonly isUnconfirmed: boolean;
3744 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3608 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3745 }3609 }
37463610
3747 /** @name PalletEvmContractHelpersSponsoringModeT (465) */3611 /** @name PalletEvmContractHelpersSponsoringModeT (449) */
3748 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3612 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3749 readonly isDisabled: boolean;3613 readonly isDisabled: boolean;
3750 readonly isAllowlisted: boolean;3614 readonly isAllowlisted: boolean;
3751 readonly isGenerous: boolean;3615 readonly isGenerous: boolean;
3752 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3616 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3753 }3617 }
37543618
3755 /** @name PalletEvmContractHelpersError (471) */3619 /** @name PalletEvmContractHelpersError (455) */
3756 interface PalletEvmContractHelpersError extends Enum {3620 interface PalletEvmContractHelpersError extends Enum {
3757 readonly isNoPermission: boolean;3621 readonly isNoPermission: boolean;
3758 readonly isNoPendingSponsor: boolean;3622 readonly isNoPendingSponsor: boolean;
3759 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3623 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
3760 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3624 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
3761 }3625 }
37623626
3763 /** @name PalletEvmMigrationError (472) */3627 /** @name PalletEvmMigrationError (456) */
3764 interface PalletEvmMigrationError extends Enum {3628 interface PalletEvmMigrationError extends Enum {
3765 readonly isAccountNotEmpty: boolean;3629 readonly isAccountNotEmpty: boolean;
3766 readonly isAccountIsNotMigrating: boolean;3630 readonly isAccountIsNotMigrating: boolean;
3767 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3631 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
3768 }3632 }
37693633
3770 /** @name SpRuntimeMultiSignature (474) */3634 /** @name SpRuntimeMultiSignature (458) */
3771 interface SpRuntimeMultiSignature extends Enum {3635 interface SpRuntimeMultiSignature extends Enum {
3772 readonly isEd25519: boolean;3636 readonly isEd25519: boolean;
3773 readonly asEd25519: SpCoreEd25519Signature;3637 readonly asEd25519: SpCoreEd25519Signature;
3778 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3642 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3779 }3643 }
37803644
3781 /** @name SpCoreEd25519Signature (475) */3645 /** @name SpCoreEd25519Signature (459) */
3782 interface SpCoreEd25519Signature extends U8aFixed {}3646 interface SpCoreEd25519Signature extends U8aFixed {}
37833647
3784 /** @name SpCoreSr25519Signature (477) */3648 /** @name SpCoreSr25519Signature (461) */
3785 interface SpCoreSr25519Signature extends U8aFixed {}3649 interface SpCoreSr25519Signature extends U8aFixed {}
37863650
3787 /** @name SpCoreEcdsaSignature (478) */3651 /** @name SpCoreEcdsaSignature (462) */
3788 interface SpCoreEcdsaSignature extends U8aFixed {}3652 interface SpCoreEcdsaSignature extends U8aFixed {}
37893653
3790 /** @name FrameSystemExtensionsCheckSpecVersion (481) */3654 /** @name FrameSystemExtensionsCheckSpecVersion (465) */
3791 type FrameSystemExtensionsCheckSpecVersion = Null;3655 type FrameSystemExtensionsCheckSpecVersion = Null;
37923656
3793 /** @name FrameSystemExtensionsCheckTxVersion (482) */3657 /** @name FrameSystemExtensionsCheckTxVersion (466) */
3794 type FrameSystemExtensionsCheckTxVersion = Null;3658 type FrameSystemExtensionsCheckTxVersion = Null;
37953659
3796 /** @name FrameSystemExtensionsCheckGenesis (483) */3660 /** @name FrameSystemExtensionsCheckGenesis (467) */
3797 type FrameSystemExtensionsCheckGenesis = Null;3661 type FrameSystemExtensionsCheckGenesis = Null;
37983662
3799 /** @name FrameSystemExtensionsCheckNonce (486) */3663 /** @name FrameSystemExtensionsCheckNonce (470) */
3800 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3664 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
38013665
3802 /** @name FrameSystemExtensionsCheckWeight (487) */3666 /** @name FrameSystemExtensionsCheckWeight (471) */
3803 type FrameSystemExtensionsCheckWeight = Null;3667 type FrameSystemExtensionsCheckWeight = Null;
38043668
3805 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (488) */3669 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (472) */
3806 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3670 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
38073671
3808 /** @name OpalRuntimeRuntime (489) */3672 /** @name OpalRuntimeRuntime (473) */
3809 type OpalRuntimeRuntime = Null;3673 type OpalRuntimeRuntime = Null;
38103674
3811 /** @name PalletEthereumFakeTransactionFinalizer (490) */3675 /** @name PalletEthereumFakeTransactionFinalizer (474) */
3812 type PalletEthereumFakeTransactionFinalizer = Null;3676 type PalletEthereumFakeTransactionFinalizer = Null;
38133677
3814} // declare module3678} // declare module
modifiedtests/update_types.shdiffbeforeafterboth
13 sed -i '1s;^;//@ts-nocheck\n;' $file13 sed -i '1s;^;//@ts-nocheck\n;' $file
14done14done
15
16pushd unique-types-js
17git add .
18git commit -m "chore: regenerate types"
19popd
2015