git.delta.rocks / unique-network / refs/commits / aab5a725f94a

difftreelog

fix regenerate types

Daniel Shiposha2022-06-09parent: #d8b912f.patch.diff
in: master

11 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
46 **/46 **/
47 [key: string]: Codec;47 [key: string]: Codec;
48 };48 };
49 scheduler: {
50 /**
51 * The maximum weight that may be scheduled per block for any dispatchables of less
52 * priority than `schedule::HARD_DEADLINE`.
53 **/
54 maximumWeight: u64 & AugmentedConst<ApiType>;
55 /**
56 * The maximum number of scheduled calls in the queue for a single block.
57 * Not strictly enforced, but used for weight estimation.
58 **/
59 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
60 /**
61 * Generic const
62 **/
63 [key: string]: Codec;
64 };
49 system: {65 system: {
50 /**66 /**
51 * Maximum number of block number to block hash mappings to keep (oldest pruned first).67 * Maximum number of block number to block hash mappings to keep (oldest pruned first).
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
478 **/478 **/
479 [key: string]: AugmentedError<ApiType>;479 [key: string]: AugmentedError<ApiType>;
480 };480 };
481 scheduler: {
482 /**
483 * Failed to schedule a call
484 **/
485 FailedToSchedule: AugmentedError<ApiType>;
486 /**
487 * Cannot find the scheduled call.
488 **/
489 NotFound: AugmentedError<ApiType>;
490 /**
491 * Reschedule failed because it does not change scheduled time.
492 **/
493 RescheduleNoChange: AugmentedError<ApiType>;
494 /**
495 * Given target block number is in the past.
496 **/
497 TargetBlockNumberInPast: AugmentedError<ApiType>;
498 /**
499 * Generic error
500 **/
501 [key: string]: AugmentedError<ApiType>;
502 };
481 structure: {503 structure: {
482 /**504 /**
483 * While searched for owner, encountered depth limit505 * While searched for owner, encountered depth limit
549 * No proposal or bounty at that index.571 * No proposal or bounty at that index.
550 **/572 **/
551 InvalidIndex: AugmentedError<ApiType>;573 InvalidIndex: AugmentedError<ApiType>;
574 /**
575 * Proposal has not been approved.
576 **/
577 ProposalNotApproved: AugmentedError<ApiType>;
552 /**578 /**
553 * Too many approvals in the queue.579 * Too many approvals in the queue.
554 **/580 **/
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
33
4import type { ApiTypes } from '@polkadot/api-base/types';4import type { ApiTypes } from '@polkadot/api-base/types';
5import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';5import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
6import type { ITuple } from '@polkadot/types-codec/types';
6import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';7import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
7import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';8import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
89
9declare module '@polkadot/api-base/types/events' {10declare module '@polkadot/api-base/types/events' {
10 export interface AugmentedEvents<ApiType extends ApiTypes> {11 export interface AugmentedEvents<ApiType extends ApiTypes> {
424 **/425 **/
425 [key: string]: AugmentedEvent<ApiType>;426 [key: string]: AugmentedEvent<ApiType>;
426 };427 };
428 scheduler: {
429 /**
430 * The call for the provided hash was not found so the task has been aborted.
431 **/
432 CallLookupFailed: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, FrameSupportScheduleLookupError]>;
433 /**
434 * Canceled some task.
435 **/
436 Canceled: AugmentedEvent<ApiType, [u32, u32]>;
437 /**
438 * Dispatched some task.
439 **/
440 Dispatched: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, Result<Null, SpRuntimeDispatchError>]>;
441 /**
442 * Scheduled some task.
443 **/
444 Scheduled: AugmentedEvent<ApiType, [u32, u32]>;
445 /**
446 * Generic event
447 **/
448 [key: string]: AugmentedEvent<ApiType>;
449 };
427 structure: {450 structure: {
428 /**451 /**
429 * Executed call on behalf of token452 * Executed call on behalf of token
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
2/* eslint-disable */2/* eslint-disable */
33
4import type { ApiTypes } from '@polkadot/api-base/types';4import type { ApiTypes } from '@polkadot/api-base/types';
5import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';5import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
6import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';6import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
7import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';7import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
8import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsTokenChild } from '@polkadot/types/lookup';8import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUnqSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsTokenChild } from '@polkadot/types/lookup';
9import type { Observable } from '@polkadot/types/types';9import type { Observable } from '@polkadot/types/types';
1010
11declare module '@polkadot/api-base/types/storage' {11declare module '@polkadot/api-base/types/storage' {
432 **/432 **/
433 [key: string]: QueryableStorageEntry<ApiType>;433 [key: string]: QueryableStorageEntry<ApiType>;
434 };434 };
435 scheduler: {
436 /**
437 * Items to be executed, indexed by the block number that they should be executed on.
438 **/
439 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletUnqSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
440 /**
441 * Lookup from identity to the block number and index of the task.
442 **/
443 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
444 /**
445 * Generic query
446 **/
447 [key: string]: QueryableStorageEntry<ApiType>;
448 };
435 structure: {449 structure: {
436 /**450 /**
437 * Generic query451 * Generic query
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4import type { PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData } from './default';4import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsPartPartType, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData } from './default';
5import type { AugmentedRpc } from '@polkadot/rpc-core/types';5import type { AugmentedRpc } from '@polkadot/rpc-core/types';
6import type { Metadata, StorageKey } from '@polkadot/types';6import type { Metadata, StorageKey } from '@polkadot/types';
7import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, u128, u32, u64 } from '@polkadot/types-codec';7import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, u128, u32, u64 } from '@polkadot/types-codec';
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
2/* eslint-disable */2/* eslint-disable */
33
4import type { ApiTypes } from '@polkadot/api-base/types';4import type { ApiTypes } from '@polkadot/api-base/types';
5import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';5import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
6import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';6import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
8import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';8import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
99
10declare module '@polkadot/api-base/types/submittable' {10declare module '@polkadot/api-base/types/submittable' {
11 export interface AugmentedSubmittables<ApiType extends ApiTypes> {11 export interface AugmentedSubmittables<ApiType extends ApiTypes> {
377 **/377 **/
378 [key: string]: SubmittableExtrinsicFunction<ApiType>;378 [key: string]: SubmittableExtrinsicFunction<ApiType>;
379 };379 };
380 scheduler: {
381 /**
382 * Cancel a named scheduled task.
383 **/
384 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
385 /**
386 * Schedule a named task.
387 **/
388 scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | object | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
389 /**
390 * Schedule a named task after a delay.
391 *
392 * # <weight>
393 * Same as [`schedule_named`](Self::schedule_named).
394 * # </weight>
395 **/
396 scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | object | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
397 /**
398 * Generic tx
399 **/
400 [key: string]: SubmittableExtrinsicFunction<ApiType>;
401 };
380 structure: {402 structure: {
381 /**403 /**
382 * Generic tx404 * Generic tx
573 * # </weight>595 * # </weight>
574 **/596 **/
575 rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;597 rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
598 /**
599 * Force a previously approved proposal to be removed from the approval queue.
600 * The original deposit will no longer be returned.
601 *
602 * May only be called from `T::RejectOrigin`.
603 * - `proposal_id`: The index of a proposal
604 *
605 * # <weight>
606 * - Complexity: O(A) where `A` is the number of approvals
607 * - Db reads and writes: `Approvals`
608 * # </weight>
609 *
610 * Errors:
611 * - `ProposalNotApproved`: The `proposal_id` supplied was not found in the approval queue,
612 * i.e., the proposal has not been approved. This could also mean the proposal does not
613 * exist altogether, thus there is no way it would have been approved in the first place.
614 **/
615 removeApproval: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
576 /**616 /**
577 * Generic tx617 * Generic tx
578 **/618 **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4import 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, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';4import 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, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUnqSchedulerCall, PalletUnqSchedulerError, PalletUnqSchedulerEvent, PalletUnqSchedulerScheduledV3, 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, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
5import type { Data, StorageKey } from '@polkadot/types';5import type { Data, StorageKey } from '@polkadot/types';
6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
18import type { StatementKind } from '@polkadot/types/interfaces/claims';18import type { StatementKind } from '@polkadot/types/interfaces/claims';
19import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';19import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
20import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';20import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
21import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';21import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
22import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';22import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
23import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';23import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
24import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';24import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
54import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';54import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
55import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';55import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
56import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';56import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
57import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';57import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
58import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';58import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';
59import type { Multiplier } from '@polkadot/types/interfaces/txpayment';59import type { Multiplier } from '@polkadot/types/interfaces/txpayment';
60import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';60import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';
241 ContractEventSpecV1: ContractEventSpecV1;241 ContractEventSpecV1: ContractEventSpecV1;
242 ContractEventSpecV2: ContractEventSpecV2;242 ContractEventSpecV2: ContractEventSpecV2;
243 ContractExecResult: ContractExecResult;243 ContractExecResult: ContractExecResult;
244 ContractExecResultErr: ContractExecResultErr;
245 ContractExecResultErrModule: ContractExecResultErrModule;
246 ContractExecResultOk: ContractExecResultOk;244 ContractExecResultOk: ContractExecResultOk;
247 ContractExecResultResult: ContractExecResultResult;245 ContractExecResultResult: ContractExecResultResult;
248 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;246 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;
303 CumulusPalletXcmCall: CumulusPalletXcmCall;301 CumulusPalletXcmCall: CumulusPalletXcmCall;
304 CumulusPalletXcmError: CumulusPalletXcmError;302 CumulusPalletXcmError: CumulusPalletXcmError;
305 CumulusPalletXcmEvent: CumulusPalletXcmEvent;303 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
304 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
306 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;305 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
307 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;306 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
308 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;307 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
329 DispatchClass: DispatchClass;328 DispatchClass: DispatchClass;
330 DispatchError: DispatchError;329 DispatchError: DispatchError;
331 DispatchErrorModule: DispatchErrorModule;330 DispatchErrorModule: DispatchErrorModule;
331 DispatchErrorModuleU8: DispatchErrorModuleU8;
332 DispatchErrorModuleU8a: DispatchErrorModuleU8a;332 DispatchErrorModuleU8a: DispatchErrorModuleU8a;
333 DispatchErrorTo198: DispatchErrorTo198;333 DispatchErrorTo198: DispatchErrorTo198;
334 DispatchFeePayment: DispatchFeePayment;334 DispatchFeePayment: DispatchFeePayment;
477 ForkTreePendingChange: ForkTreePendingChange;477 ForkTreePendingChange: ForkTreePendingChange;
478 ForkTreePendingChangeNode: ForkTreePendingChangeNode;478 ForkTreePendingChangeNode: ForkTreePendingChangeNode;
479 FpRpcTransactionStatus: FpRpcTransactionStatus;479 FpRpcTransactionStatus: FpRpcTransactionStatus;
480 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
480 FrameSupportPalletId: FrameSupportPalletId;481 FrameSupportPalletId: FrameSupportPalletId;
482 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
483 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
481 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;484 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
482 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;485 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
483 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;486 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
717 OffchainAccuracyCompact: OffchainAccuracyCompact;720 OffchainAccuracyCompact: OffchainAccuracyCompact;
718 OffenceDetails: OffenceDetails;721 OffenceDetails: OffenceDetails;
719 Offender: Offender;722 Offender: Offender;
723 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
720 OpalRuntimeRuntime: OpalRuntimeRuntime;724 OpalRuntimeRuntime: OpalRuntimeRuntime;
721 OpaqueCall: OpaqueCall;725 OpaqueCall: OpaqueCall;
722 OpaqueMultiaddr: OpaqueMultiaddr;726 OpaqueMultiaddr: OpaqueMultiaddr;
768 PalletEthereumError: PalletEthereumError;772 PalletEthereumError: PalletEthereumError;
769 PalletEthereumEvent: PalletEthereumEvent;773 PalletEthereumEvent: PalletEthereumEvent;
770 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;774 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
775 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
771 PalletEventMetadataLatest: PalletEventMetadataLatest;776 PalletEventMetadataLatest: PalletEventMetadataLatest;
772 PalletEventMetadataV14: PalletEventMetadataV14;777 PalletEventMetadataV14: PalletEventMetadataV14;
773 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;778 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
814 PalletUniqueCall: PalletUniqueCall;819 PalletUniqueCall: PalletUniqueCall;
815 PalletUniqueError: PalletUniqueError;820 PalletUniqueError: PalletUniqueError;
816 PalletUniqueRawEvent: PalletUniqueRawEvent;821 PalletUniqueRawEvent: PalletUniqueRawEvent;
822 PalletUnqSchedulerCall: PalletUnqSchedulerCall;
823 PalletUnqSchedulerError: PalletUnqSchedulerError;
824 PalletUnqSchedulerEvent: PalletUnqSchedulerEvent;
825 PalletUnqSchedulerScheduledV3: PalletUnqSchedulerScheduledV3;
817 PalletVersion: PalletVersion;826 PalletVersion: PalletVersion;
818 PalletXcmCall: PalletXcmCall;827 PalletXcmCall: PalletXcmCall;
819 PalletXcmError: PalletXcmError;828 PalletXcmError: PalletXcmError;
820 PalletXcmEvent: PalletXcmEvent;829 PalletXcmEvent: PalletXcmEvent;
830 PalletXcmOrigin: PalletXcmOrigin;
821 ParachainDispatchOrigin: ParachainDispatchOrigin;831 ParachainDispatchOrigin: ParachainDispatchOrigin;
822 ParachainInherentData: ParachainInherentData;832 ParachainInherentData: ParachainInherentData;
823 ParachainProposal: ParachainProposal;833 ParachainProposal: ParachainProposal;
1085 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1095 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
1086 SpCoreEd25519Signature: SpCoreEd25519Signature;1096 SpCoreEd25519Signature: SpCoreEd25519Signature;
1087 SpCoreSr25519Signature: SpCoreSr25519Signature;1097 SpCoreSr25519Signature: SpCoreSr25519Signature;
1098 SpCoreVoid: SpCoreVoid;
1088 SpecVersion: SpecVersion;1099 SpecVersion: SpecVersion;
1089 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1100 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
1090 SpRuntimeDigest: SpRuntimeDigest;1101 SpRuntimeDigest: SpRuntimeDigest;
1160 TombstoneContractInfo: TombstoneContractInfo;1171 TombstoneContractInfo: TombstoneContractInfo;
1161 TraceBlockResponse: TraceBlockResponse;1172 TraceBlockResponse: TraceBlockResponse;
1162 TraceError: TraceError;1173 TraceError: TraceError;
1174 TransactionalError: TransactionalError;
1163 TransactionInfo: TransactionInfo;1175 TransactionInfo: TransactionInfo;
1164 TransactionPriority: TransactionPriority;1176 TransactionPriority: TransactionPriority;
1165 TransactionStorageProof: TransactionStorageProof;1177 TransactionStorageProof: TransactionStorageProof;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
126 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';126 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
127}127}
128
129/** @name CumulusPalletXcmOrigin */
130export interface CumulusPalletXcmOrigin extends Enum {
131 readonly isRelay: boolean;
132 readonly isSiblingParachain: boolean;
133 readonly asSiblingParachain: u32;
134 readonly type: 'Relay' | 'SiblingParachain';
135}
128136
129/** @name CumulusPalletXcmpQueueCall */137/** @name CumulusPalletXcmpQueueCall */
130export interface CumulusPalletXcmpQueueCall extends Enum {138export interface CumulusPalletXcmpQueueCall extends Enum {
443 readonly logsBloom: EthbloomBloom;451 readonly logsBloom: EthbloomBloom;
444}452}
453
454/** @name FrameSupportDispatchRawOrigin */
455export interface FrameSupportDispatchRawOrigin extends Enum {
456 readonly isRoot: boolean;
457 readonly isSigned: boolean;
458 readonly asSigned: AccountId32;
459 readonly isNone: boolean;
460 readonly type: 'Root' | 'Signed' | 'None';
461}
445462
446/** @name FrameSupportPalletId */463/** @name FrameSupportPalletId */
447export interface FrameSupportPalletId extends U8aFixed {}464export interface FrameSupportPalletId extends U8aFixed {}
465
466/** @name FrameSupportScheduleLookupError */
467export interface FrameSupportScheduleLookupError extends Enum {
468 readonly isUnknown: boolean;
469 readonly isBadFormat: boolean;
470 readonly type: 'Unknown' | 'BadFormat';
471}
472
473/** @name FrameSupportScheduleMaybeHashed */
474export interface FrameSupportScheduleMaybeHashed extends Enum {
475 readonly isValue: boolean;
476 readonly asValue: Call;
477 readonly isHash: boolean;
478 readonly asHash: H256;
479 readonly type: 'Value' | 'Hash';
480}
448481
449/** @name FrameSupportTokensMiscBalanceStatus */482/** @name FrameSupportTokensMiscBalanceStatus */
450export interface FrameSupportTokensMiscBalanceStatus extends Enum {483export interface FrameSupportTokensMiscBalanceStatus extends Enum {
654 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';687 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
655}688}
689
690/** @name OpalRuntimeOriginCaller */
691export interface OpalRuntimeOriginCaller extends Enum {
692 readonly isVoid: boolean;
693 readonly asVoid: SpCoreVoid;
694 readonly isSystem: boolean;
695 readonly asSystem: FrameSupportDispatchRawOrigin;
696 readonly isPolkadotXcm: boolean;
697 readonly asPolkadotXcm: PalletXcmOrigin;
698 readonly isCumulusXcm: boolean;
699 readonly asCumulusXcm: CumulusPalletXcmOrigin;
700 readonly isEthereum: boolean;
701 readonly asEthereum: PalletEthereumRawOrigin;
702 readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
703}
656704
657/** @name OpalRuntimeRuntime */705/** @name OpalRuntimeRuntime */
658export interface OpalRuntimeRuntime extends Null {}706export interface OpalRuntimeRuntime extends Null {}
954/** @name PalletEthereumFakeTransactionFinalizer */1002/** @name PalletEthereumFakeTransactionFinalizer */
955export interface PalletEthereumFakeTransactionFinalizer extends Null {}1003export interface PalletEthereumFakeTransactionFinalizer extends Null {}
1004
1005/** @name PalletEthereumRawOrigin */
1006export interface PalletEthereumRawOrigin extends Enum {
1007 readonly isEthereumTransaction: boolean;
1008 readonly asEthereumTransaction: H160;
1009 readonly type: 'EthereumTransaction';
1010}
9561011
957/** @name PalletEvmAccountBasicCrossAccountIdRepr */1012/** @name PalletEvmAccountBasicCrossAccountIdRepr */
958export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1013export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1484 readonly asApproveProposal: {1539 readonly asApproveProposal: {
1485 readonly proposalId: Compact<u32>;1540 readonly proposalId: Compact<u32>;
1486 } & Struct;1541 } & Struct;
1542 readonly isRemoveApproval: boolean;
1543 readonly asRemoveApproval: {
1544 readonly proposalId: Compact<u32>;
1545 } & Struct;
1487 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';1546 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';
1488}1547}
14891548
1490/** @name PalletTreasuryError */1549/** @name PalletTreasuryError */
1491export interface PalletTreasuryError extends Enum {1550export interface PalletTreasuryError extends Enum {
1492 readonly isInsufficientProposersBalance: boolean;1551 readonly isInsufficientProposersBalance: boolean;
1493 readonly isInvalidIndex: boolean;1552 readonly isInvalidIndex: boolean;
1494 readonly isTooManyApprovals: boolean;1553 readonly isTooManyApprovals: boolean;
1554 readonly isProposalNotApproved: boolean;
1495 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';1555 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';
1496}1556}
14971557
1498/** @name PalletTreasuryEvent */1558/** @name PalletTreasuryEvent */
1724 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1784 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
1725}1785}
1786
1787/** @name PalletUnqSchedulerCall */
1788export interface PalletUnqSchedulerCall extends Enum {
1789 readonly isScheduleNamed: boolean;
1790 readonly asScheduleNamed: {
1791 readonly id: U8aFixed;
1792 readonly when: u32;
1793 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
1794 readonly priority: u8;
1795 readonly call: FrameSupportScheduleMaybeHashed;
1796 } & Struct;
1797 readonly isCancelNamed: boolean;
1798 readonly asCancelNamed: {
1799 readonly id: U8aFixed;
1800 } & Struct;
1801 readonly isScheduleNamedAfter: boolean;
1802 readonly asScheduleNamedAfter: {
1803 readonly id: U8aFixed;
1804 readonly after: u32;
1805 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
1806 readonly priority: u8;
1807 readonly call: FrameSupportScheduleMaybeHashed;
1808 } & Struct;
1809 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
1810}
1811
1812/** @name PalletUnqSchedulerError */
1813export interface PalletUnqSchedulerError extends Enum {
1814 readonly isFailedToSchedule: boolean;
1815 readonly isNotFound: boolean;
1816 readonly isTargetBlockNumberInPast: boolean;
1817 readonly isRescheduleNoChange: boolean;
1818 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
1819}
1820
1821/** @name PalletUnqSchedulerEvent */
1822export interface PalletUnqSchedulerEvent extends Enum {
1823 readonly isScheduled: boolean;
1824 readonly asScheduled: {
1825 readonly when: u32;
1826 readonly index: u32;
1827 } & Struct;
1828 readonly isCanceled: boolean;
1829 readonly asCanceled: {
1830 readonly when: u32;
1831 readonly index: u32;
1832 } & Struct;
1833 readonly isDispatched: boolean;
1834 readonly asDispatched: {
1835 readonly task: ITuple<[u32, u32]>;
1836 readonly id: Option<U8aFixed>;
1837 readonly result: Result<Null, SpRuntimeDispatchError>;
1838 } & Struct;
1839 readonly isCallLookupFailed: boolean;
1840 readonly asCallLookupFailed: {
1841 readonly task: ITuple<[u32, u32]>;
1842 readonly id: Option<U8aFixed>;
1843 readonly error: FrameSupportScheduleLookupError;
1844 } & Struct;
1845 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
1846}
1847
1848/** @name PalletUnqSchedulerScheduledV3 */
1849export interface PalletUnqSchedulerScheduledV3 extends Struct {
1850 readonly maybeId: Option<U8aFixed>;
1851 readonly priority: u8;
1852 readonly call: FrameSupportScheduleMaybeHashed;
1853 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
1854 readonly origin: OpalRuntimeOriginCaller;
1855}
17261856
1727/** @name PalletXcmCall */1857/** @name PalletXcmCall */
1728export interface PalletXcmCall extends Enum {1858export interface PalletXcmCall extends Enum {
1841 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1971 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
1842}1972}
1973
1974/** @name PalletXcmOrigin */
1975export interface PalletXcmOrigin extends Enum {
1976 readonly isXcm: boolean;
1977 readonly asXcm: XcmV1MultiLocation;
1978 readonly isResponse: boolean;
1979 readonly asResponse: XcmV1MultiLocation;
1980 readonly type: 'Xcm' | 'Response';
1981}
18431982
1844/** @name PhantomTypeUpDataStructs */1983/** @name PhantomTypeUpDataStructs */
1845export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}1984export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
2061/** @name SpCoreSr25519Signature */2200/** @name SpCoreSr25519Signature */
2062export interface SpCoreSr25519Signature extends U8aFixed {}2201export interface SpCoreSr25519Signature extends U8aFixed {}
2202
2203/** @name SpCoreVoid */
2204export interface SpCoreVoid extends Null {}
20632205
2064/** @name SpRuntimeArithmeticError */2206/** @name SpRuntimeArithmeticError */
2065export interface SpRuntimeArithmeticError extends Enum {2207export interface SpRuntimeArithmeticError extends Enum {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
154 * Lookup48: pallet_balances::ReserveData<ReserveIdentifier, Balance>154 * Lookup48: pallet_balances::ReserveData<ReserveIdentifier, Balance>
155 **/155 **/
156 PalletBalancesReserveData: {156 PalletBalancesReserveData: {
157 id: '[u8;8]',157 id: '[u8;16]',
158 amount: 'u128'158 amount: 'u128'
159 },159 },
160 /**160 /**
161 * Lookup50: pallet_balances::Releases161 * Lookup51: pallet_balances::Releases
162 **/162 **/
163 PalletBalancesReleases: {163 PalletBalancesReleases: {
164 _enum: ['V1_0_0', 'V2_0_0']164 _enum: ['V1_0_0', 'V2_0_0']
165 },165 },
166 /**166 /**
167 * Lookup51: pallet_balances::pallet::Call<T, I>167 * Lookup52: pallet_balances::pallet::Call<T, I>
168 **/168 **/
169 PalletBalancesCall: {169 PalletBalancesCall: {
170 _enum: {170 _enum: {
171 transfer: {171 transfer: {
196 }196 }
197 }197 }
198 },198 },
199 /**199 /**
200 * Lookup57: pallet_balances::pallet::Event<T, I>200 * Lookup58: pallet_balances::pallet::Event<T, I>
201 **/201 **/
202 PalletBalancesEvent: {202 PalletBalancesEvent: {
203 _enum: {203 _enum: {
204 Endowed: {204 Endowed: {
247 }247 }
248 }248 }
249 },249 },
250 /**250 /**
251 * Lookup58: frame_support::traits::tokens::misc::BalanceStatus251 * Lookup59: frame_support::traits::tokens::misc::BalanceStatus
252 **/252 **/
253 FrameSupportTokensMiscBalanceStatus: {253 FrameSupportTokensMiscBalanceStatus: {
254 _enum: ['Free', 'Reserved']254 _enum: ['Free', 'Reserved']
255 },255 },
256 /**256 /**
257 * Lookup59: pallet_balances::pallet::Error<T, I>257 * Lookup60: pallet_balances::pallet::Error<T, I>
258 **/258 **/
259 PalletBalancesError: {259 PalletBalancesError: {
260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
261 },261 },
262 /**262 /**
263 * Lookup62: pallet_timestamp::pallet::Call<T>263 * Lookup63: pallet_timestamp::pallet::Call<T>
264 **/264 **/
265 PalletTimestampCall: {265 PalletTimestampCall: {
266 _enum: {266 _enum: {
267 set: {267 set: {
268 now: 'Compact<u64>'268 now: 'Compact<u64>'
269 }269 }
270 }270 }
271 },271 },
272 /**272 /**
273 * Lookup65: pallet_transaction_payment::Releases273 * Lookup66: pallet_transaction_payment::Releases
274 **/274 **/
275 PalletTransactionPaymentReleases: {275 PalletTransactionPaymentReleases: {
276 _enum: ['V1Ancient', 'V2']276 _enum: ['V1Ancient', 'V2']
277 },277 },
278 /**278 /**
279 * Lookup67: frame_support::weights::WeightToFeeCoefficient<Balance>279 * Lookup68: frame_support::weights::WeightToFeeCoefficient<Balance>
280 **/280 **/
281 FrameSupportWeightsWeightToFeeCoefficient: {281 FrameSupportWeightsWeightToFeeCoefficient: {
282 coeffInteger: 'u128',282 coeffInteger: 'u128',
283 coeffFrac: 'Perbill',283 coeffFrac: 'Perbill',
284 negative: 'bool',284 negative: 'bool',
285 degree: 'u8'285 degree: 'u8'
286 },286 },
287 /**287 /**
288 * Lookup69: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>288 * Lookup70: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
289 **/289 **/
290 PalletTreasuryProposal: {290 PalletTreasuryProposal: {
291 proposer: 'AccountId32',291 proposer: 'AccountId32',
292 value: 'u128',292 value: 'u128',
293 beneficiary: 'AccountId32',293 beneficiary: 'AccountId32',
294 bond: 'u128'294 bond: 'u128'
295 },295 },
296 /**296 /**
297 * Lookup72: pallet_treasury::pallet::Call<T, I>297 * Lookup73: pallet_treasury::pallet::Call<T, I>
298 **/298 **/
299 PalletTreasuryCall: {299 PalletTreasuryCall: {
300 _enum: {300 _enum: {
301 propose_spend: {301 propose_spend: {
307 },307 },
308 approve_proposal: {308 approve_proposal: {
309 proposalId: 'Compact<u32>'309 proposalId: 'Compact<u32>',
310 }310 },
311 remove_approval: {
312 proposalId: 'Compact<u32>'
313 }
311 }314 }
312 },315 },
313 /**316 /**
314 * Lookup74: pallet_treasury::pallet::Event<T, I>317 * Lookup75: pallet_treasury::pallet::Event<T, I>
315 **/318 **/
316 PalletTreasuryEvent: {319 PalletTreasuryEvent: {
317 _enum: {320 _enum: {
318 Proposed: {321 Proposed: {
341 }344 }
342 }345 }
343 },346 },
344 /**347 /**
345 * Lookup77: frame_support::PalletId348 * Lookup78: frame_support::PalletId
346 **/349 **/
347 FrameSupportPalletId: '[u8;8]',350 FrameSupportPalletId: '[u8;8]',
348 /**351 /**
349 * Lookup78: pallet_treasury::pallet::Error<T, I>352 * Lookup79: pallet_treasury::pallet::Error<T, I>
350 **/353 **/
351 PalletTreasuryError: {354 PalletTreasuryError: {
352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']355 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'ProposalNotApproved']
353 },356 },
354 /**357 /**
355 * Lookup79: pallet_sudo::pallet::Call<T>358 * Lookup80: pallet_sudo::pallet::Call<T>
356 **/359 **/
357 PalletSudoCall: {360 PalletSudoCall: {
358 _enum: {361 _enum: {
359 sudo: {362 sudo: {
375 }378 }
376 }379 }
377 },380 },
378 /**381 /**
379 * Lookup81: frame_system::pallet::Call<T>382 * Lookup82: frame_system::pallet::Call<T>
380 **/383 **/
381 FrameSystemCall: {384 FrameSystemCall: {
382 _enum: {385 _enum: {
383 fill_block: {386 fill_block: {
413 }416 }
414 }417 }
415 },418 },
416 /**419 /**
417 * Lookup84: orml_vesting::module::Call<T>420 * Lookup85: orml_vesting::module::Call<T>
418 **/421 **/
419 OrmlVestingModuleCall: {422 OrmlVestingModuleCall: {
420 _enum: {423 _enum: {
421 claim: 'Null',424 claim: 'Null',
432 }435 }
433 }436 }
434 },437 },
435 /**438 /**
436 * Lookup85: orml_vesting::VestingSchedule<BlockNumber, Balance>439 * Lookup86: orml_vesting::VestingSchedule<BlockNumber, Balance>
437 **/440 **/
438 OrmlVestingVestingSchedule: {441 OrmlVestingVestingSchedule: {
439 start: 'u32',442 start: 'u32',
440 period: 'u32',443 period: 'u32',
441 periodCount: 'u32',444 periodCount: 'u32',
442 perPeriod: 'Compact<u128>'445 perPeriod: 'Compact<u128>'
443 },446 },
444 /**447 /**
445 * Lookup87: cumulus_pallet_xcmp_queue::pallet::Call<T>448 * Lookup88: cumulus_pallet_xcmp_queue::pallet::Call<T>
446 **/449 **/
447 CumulusPalletXcmpQueueCall: {450 CumulusPalletXcmpQueueCall: {
448 _enum: {451 _enum: {
449 service_overweight: {452 service_overweight: {
490 }493 }
491 }494 }
492 },495 },
493 /**496 /**
494 * Lookup88: pallet_xcm::pallet::Call<T>497 * Lookup89: pallet_xcm::pallet::Call<T>
495 **/498 **/
496 PalletXcmCall: {499 PalletXcmCall: {
497 _enum: {500 _enum: {
498 send: {501 send: {
544 }547 }
545 }548 }
546 },549 },
547 /**550 /**
548 * Lookup89: xcm::VersionedMultiLocation551 * Lookup90: xcm::VersionedMultiLocation
549 **/552 **/
550 XcmVersionedMultiLocation: {553 XcmVersionedMultiLocation: {
551 _enum: {554 _enum: {
552 V0: 'XcmV0MultiLocation',555 V0: 'XcmV0MultiLocation',
553 V1: 'XcmV1MultiLocation'556 V1: 'XcmV1MultiLocation'
554 }557 }
555 },558 },
556 /**559 /**
557 * Lookup90: xcm::v0::multi_location::MultiLocation560 * Lookup91: xcm::v0::multi_location::MultiLocation
558 **/561 **/
559 XcmV0MultiLocation: {562 XcmV0MultiLocation: {
560 _enum: {563 _enum: {
561 Null: 'Null',564 Null: 'Null',
569 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'572 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'
570 }573 }
571 },574 },
572 /**575 /**
573 * Lookup91: xcm::v0::junction::Junction576 * Lookup92: xcm::v0::junction::Junction
574 **/577 **/
575 XcmV0Junction: {578 XcmV0Junction: {
576 _enum: {579 _enum: {
577 Parent: 'Null',580 Parent: 'Null',
598 }601 }
599 }602 }
600 },603 },
601 /**604 /**
602 * Lookup92: xcm::v0::junction::NetworkId605 * Lookup93: xcm::v0::junction::NetworkId
603 **/606 **/
604 XcmV0JunctionNetworkId: {607 XcmV0JunctionNetworkId: {
605 _enum: {608 _enum: {
606 Any: 'Null',609 Any: 'Null',
609 Kusama: 'Null'612 Kusama: 'Null'
610 }613 }
611 },614 },
612 /**615 /**
613 * Lookup93: xcm::v0::junction::BodyId616 * Lookup94: xcm::v0::junction::BodyId
614 **/617 **/
615 XcmV0JunctionBodyId: {618 XcmV0JunctionBodyId: {
616 _enum: {619 _enum: {
617 Unit: 'Null',620 Unit: 'Null',
623 Judicial: 'Null'626 Judicial: 'Null'
624 }627 }
625 },628 },
626 /**629 /**
627 * Lookup94: xcm::v0::junction::BodyPart630 * Lookup95: xcm::v0::junction::BodyPart
628 **/631 **/
629 XcmV0JunctionBodyPart: {632 XcmV0JunctionBodyPart: {
630 _enum: {633 _enum: {
631 Voice: 'Null',634 Voice: 'Null',
646 }649 }
647 }650 }
648 },651 },
649 /**652 /**
650 * Lookup95: xcm::v1::multilocation::MultiLocation653 * Lookup96: xcm::v1::multilocation::MultiLocation
651 **/654 **/
652 XcmV1MultiLocation: {655 XcmV1MultiLocation: {
653 parents: 'u8',656 parents: 'u8',
654 interior: 'XcmV1MultilocationJunctions'657 interior: 'XcmV1MultilocationJunctions'
655 },658 },
656 /**659 /**
657 * Lookup96: xcm::v1::multilocation::Junctions660 * Lookup97: xcm::v1::multilocation::Junctions
658 **/661 **/
659 XcmV1MultilocationJunctions: {662 XcmV1MultilocationJunctions: {
660 _enum: {663 _enum: {
661 Here: 'Null',664 Here: 'Null',
669 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'672 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'
670 }673 }
671 },674 },
672 /**675 /**
673 * Lookup97: xcm::v1::junction::Junction676 * Lookup98: xcm::v1::junction::Junction
674 **/677 **/
675 XcmV1Junction: {678 XcmV1Junction: {
676 _enum: {679 _enum: {
677 Parachain: 'Compact<u32>',680 Parachain: 'Compact<u32>',
697 }700 }
698 }701 }
699 },702 },
700 /**703 /**
701 * Lookup98: xcm::VersionedXcm<Call>704 * Lookup99: xcm::VersionedXcm<Call>
702 **/705 **/
703 XcmVersionedXcm: {706 XcmVersionedXcm: {
704 _enum: {707 _enum: {
705 V0: 'XcmV0Xcm',708 V0: 'XcmV0Xcm',
706 V1: 'XcmV1Xcm',709 V1: 'XcmV1Xcm',
707 V2: 'XcmV2Xcm'710 V2: 'XcmV2Xcm'
708 }711 }
709 },712 },
710 /**713 /**
711 * Lookup99: xcm::v0::Xcm<Call>714 * Lookup100: xcm::v0::Xcm<Call>
712 **/715 **/
713 XcmV0Xcm: {716 XcmV0Xcm: {
714 _enum: {717 _enum: {
715 WithdrawAsset: {718 WithdrawAsset: {
761 }764 }
762 }765 }
763 },766 },
764 /**767 /**
765 * Lookup101: xcm::v0::multi_asset::MultiAsset768 * Lookup102: xcm::v0::multi_asset::MultiAsset
766 **/769 **/
767 XcmV0MultiAsset: {770 XcmV0MultiAsset: {
768 _enum: {771 _enum: {
769 None: 'Null',772 None: 'Null',
800 }803 }
801 }804 }
802 },805 },
803 /**806 /**
804 * Lookup102: xcm::v1::multiasset::AssetInstance807 * Lookup103: xcm::v1::multiasset::AssetInstance
805 **/808 **/
806 XcmV1MultiassetAssetInstance: {809 XcmV1MultiassetAssetInstance: {
807 _enum: {810 _enum: {
808 Undefined: 'Null',811 Undefined: 'Null',
1519 constData: 'Bytes',1522 constData: 'Bytes',
1520 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'1523 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'
1521 },1524 },
1525 /**
1526 * Lookup204: pallet_unq_scheduler::pallet::Call<T>
1527 **/
1528 PalletUnqSchedulerCall: {
1529 _enum: {
1530 schedule_named: {
1531 id: '[u8;16]',
1532 when: 'u32',
1533 maybePeriodic: 'Option<(u32,u32)>',
1534 priority: 'u8',
1535 call: 'FrameSupportScheduleMaybeHashed',
1536 },
1537 cancel_named: {
1538 id: '[u8;16]',
1539 },
1540 schedule_named_after: {
1541 id: '[u8;16]',
1542 after: 'u32',
1543 maybePeriodic: 'Option<(u32,u32)>',
1544 priority: 'u8',
1545 call: 'FrameSupportScheduleMaybeHashed'
1546 }
1547 }
1548 },
1549 /**
1550 * Lookup206: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
1551 **/
1552 FrameSupportScheduleMaybeHashed: {
1553 _enum: {
1554 Value: 'Call',
1555 Hash: 'H256'
1556 }
1557 },
1522 /**1558 /**
1523 * Lookup204: pallet_template_transaction_payment::Call<T>1559 * Lookup207: pallet_template_transaction_payment::Call<T>
1524 **/1560 **/
1525 PalletTemplateTransactionPaymentCall: 'Null',1561 PalletTemplateTransactionPaymentCall: 'Null',
1526 /**1562 /**
1527 * Lookup205: pallet_structure::pallet::Call<T>1563 * Lookup208: pallet_structure::pallet::Call<T>
1528 **/1564 **/
1529 PalletStructureCall: 'Null',1565 PalletStructureCall: 'Null',
1530 /**1566 /**
1531 * Lookup206: pallet_rmrk_core::pallet::Call<T>1567 * Lookup209: pallet_rmrk_core::pallet::Call<T>
1532 **/1568 **/
1533 PalletRmrkCoreCall: {1569 PalletRmrkCoreCall: {
1534 _enum: {1570 _enum: {
1535 create_collection: {1571 create_collection: {
1617 }1653 }
1618 }1654 }
1619 },1655 },
1620 /**1656 /**
1621 * Lookup210: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1657 * Lookup213: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
1622 **/1658 **/
1623 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1659 RmrkTraitsNftAccountIdOrCollectionNftTuple: {
1624 _enum: {1660 _enum: {
1625 AccountId: 'AccountId32',1661 AccountId: 'AccountId32',
1626 CollectionAndNftTuple: '(u32,u32)'1662 CollectionAndNftTuple: '(u32,u32)'
1627 }1663 }
1628 },1664 },
1629 /**1665 /**
1630 * Lookup214: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>1666 * Lookup217: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1631 **/1667 **/
1632 RmrkTraitsResourceBasicResource: {1668 RmrkTraitsResourceBasicResource: {
1633 src: 'Option<Bytes>',1669 src: 'Option<Bytes>',
1634 metadata: 'Option<Bytes>',1670 metadata: 'Option<Bytes>',
1635 license: 'Option<Bytes>',1671 license: 'Option<Bytes>',
1636 thumb: 'Option<Bytes>'1672 thumb: 'Option<Bytes>'
1637 },1673 },
1638 /**1674 /**
1639 * Lookup217: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1675 * Lookup220: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
1640 **/1676 **/
1641 RmrkTraitsResourceComposableResource: {1677 RmrkTraitsResourceComposableResource: {
1642 parts: 'Vec<u32>',1678 parts: 'Vec<u32>',
1643 base: 'u32',1679 base: 'u32',
1646 license: 'Option<Bytes>',1682 license: 'Option<Bytes>',
1647 thumb: 'Option<Bytes>'1683 thumb: 'Option<Bytes>'
1648 },1684 },
1649 /**1685 /**
1650 * Lookup219: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>1686 * Lookup222: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1651 **/1687 **/
1652 RmrkTraitsResourceSlotResource: {1688 RmrkTraitsResourceSlotResource: {
1653 base: 'u32',1689 base: 'u32',
1654 src: 'Option<Bytes>',1690 src: 'Option<Bytes>',
1657 license: 'Option<Bytes>',1693 license: 'Option<Bytes>',
1658 thumb: 'Option<Bytes>'1694 thumb: 'Option<Bytes>'
1659 },1695 },
1660 /**1696 /**
1661 * Lookup220: pallet_rmrk_equip::pallet::Call<T>1697 * Lookup223: pallet_rmrk_equip::pallet::Call<T>
1662 **/1698 **/
1663 PalletRmrkEquipCall: {1699 PalletRmrkEquipCall: {
1664 _enum: {1700 _enum: {
1665 create_base: {1701 create_base: {
1673 }1709 }
1674 }1710 }
1675 },1711 },
1676 /**1712 /**
1677 * Lookup222: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1713 * Lookup225: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
1678 **/1714 **/
1679 RmrkTraitsPartPartType: {1715 RmrkTraitsPartPartType: {
1680 _enum: {1716 _enum: {
1681 FixedPart: 'RmrkTraitsPartFixedPart',1717 FixedPart: 'RmrkTraitsPartFixedPart',
1682 SlotPart: 'RmrkTraitsPartSlotPart'1718 SlotPart: 'RmrkTraitsPartSlotPart'
1683 }1719 }
1684 },1720 },
1685 /**1721 /**
1686 * Lookup224: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>1722 * Lookup227: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1687 **/1723 **/
1688 RmrkTraitsPartFixedPart: {1724 RmrkTraitsPartFixedPart: {
1689 id: 'u32',1725 id: 'u32',
1690 z: 'u32',1726 z: 'u32',
1691 src: 'Bytes'1727 src: 'Bytes'
1692 },1728 },
1693 /**1729 /**
1694 * Lookup225: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1730 * Lookup228: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
1695 **/1731 **/
1696 RmrkTraitsPartSlotPart: {1732 RmrkTraitsPartSlotPart: {
1697 id: 'u32',1733 id: 'u32',
1698 equippable: 'RmrkTraitsPartEquippableList',1734 equippable: 'RmrkTraitsPartEquippableList',
1699 src: 'Bytes',1735 src: 'Bytes',
1700 z: 'u32'1736 z: 'u32'
1701 },1737 },
1702 /**1738 /**
1703 * Lookup226: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>1739 * Lookup229: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1704 **/1740 **/
1705 RmrkTraitsPartEquippableList: {1741 RmrkTraitsPartEquippableList: {
1706 _enum: {1742 _enum: {
1707 All: 'Null',1743 All: 'Null',
1708 Empty: 'Null',1744 Empty: 'Null',
1709 Custom: 'Vec<u32>'1745 Custom: 'Vec<u32>'
1710 }1746 }
1711 },1747 },
1712 /**1748 /**
1713 * Lookup228: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>1749 * Lookup231: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
1714 **/1750 **/
1715 RmrkTraitsTheme: {1751 RmrkTraitsTheme: {
1716 name: 'Bytes',1752 name: 'Bytes',
1717 properties: 'Vec<RmrkTraitsThemeThemeProperty>',1753 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
1718 inherit: 'bool'1754 inherit: 'bool'
1719 },1755 },
1720 /**1756 /**
1721 * Lookup230: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>1757 * Lookup233: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1722 **/1758 **/
1723 RmrkTraitsThemeThemeProperty: {1759 RmrkTraitsThemeThemeProperty: {
1724 key: 'Bytes',1760 key: 'Bytes',
1725 value: 'Bytes'1761 value: 'Bytes'
1726 },1762 },
1727 /**1763 /**
1728 * Lookup231: pallet_evm::pallet::Call<T>1764 * Lookup234: pallet_evm::pallet::Call<T>
1729 **/1765 **/
1730 PalletEvmCall: {1766 PalletEvmCall: {
1731 _enum: {1767 _enum: {
1732 withdraw: {1768 withdraw: {
1767 }1803 }
1768 }1804 }
1769 },1805 },
1770 /**1806 /**
1771 * Lookup237: pallet_ethereum::pallet::Call<T>1807 * Lookup240: pallet_ethereum::pallet::Call<T>
1772 **/1808 **/
1773 PalletEthereumCall: {1809 PalletEthereumCall: {
1774 _enum: {1810 _enum: {
1775 transact: {1811 transact: {
1776 transaction: 'EthereumTransactionTransactionV2'1812 transaction: 'EthereumTransactionTransactionV2'
1777 }1813 }
1778 }1814 }
1779 },1815 },
1780 /**1816 /**
1781 * Lookup238: ethereum::transaction::TransactionV21817 * Lookup241: ethereum::transaction::TransactionV2
1782 **/1818 **/
1783 EthereumTransactionTransactionV2: {1819 EthereumTransactionTransactionV2: {
1784 _enum: {1820 _enum: {
1785 Legacy: 'EthereumTransactionLegacyTransaction',1821 Legacy: 'EthereumTransactionLegacyTransaction',
1786 EIP2930: 'EthereumTransactionEip2930Transaction',1822 EIP2930: 'EthereumTransactionEip2930Transaction',
1787 EIP1559: 'EthereumTransactionEip1559Transaction'1823 EIP1559: 'EthereumTransactionEip1559Transaction'
1788 }1824 }
1789 },1825 },
1790 /**1826 /**
1791 * Lookup239: ethereum::transaction::LegacyTransaction1827 * Lookup242: ethereum::transaction::LegacyTransaction
1792 **/1828 **/
1793 EthereumTransactionLegacyTransaction: {1829 EthereumTransactionLegacyTransaction: {
1794 nonce: 'U256',1830 nonce: 'U256',
1795 gasPrice: 'U256',1831 gasPrice: 'U256',
1799 input: 'Bytes',1835 input: 'Bytes',
1800 signature: 'EthereumTransactionTransactionSignature'1836 signature: 'EthereumTransactionTransactionSignature'
1801 },1837 },
1802 /**1838 /**
1803 * Lookup240: ethereum::transaction::TransactionAction1839 * Lookup243: ethereum::transaction::TransactionAction
1804 **/1840 **/
1805 EthereumTransactionTransactionAction: {1841 EthereumTransactionTransactionAction: {
1806 _enum: {1842 _enum: {
1807 Call: 'H160',1843 Call: 'H160',
1808 Create: 'Null'1844 Create: 'Null'
1809 }1845 }
1810 },1846 },
1811 /**1847 /**
1812 * Lookup241: ethereum::transaction::TransactionSignature1848 * Lookup244: ethereum::transaction::TransactionSignature
1813 **/1849 **/
1814 EthereumTransactionTransactionSignature: {1850 EthereumTransactionTransactionSignature: {
1815 v: 'u64',1851 v: 'u64',
1816 r: 'H256',1852 r: 'H256',
1817 s: 'H256'1853 s: 'H256'
1818 },1854 },
1819 /**1855 /**
1820 * Lookup243: ethereum::transaction::EIP2930Transaction1856 * Lookup246: ethereum::transaction::EIP2930Transaction
1821 **/1857 **/
1822 EthereumTransactionEip2930Transaction: {1858 EthereumTransactionEip2930Transaction: {
1823 chainId: 'u64',1859 chainId: 'u64',
1824 nonce: 'U256',1860 nonce: 'U256',
1832 r: 'H256',1868 r: 'H256',
1833 s: 'H256'1869 s: 'H256'
1834 },1870 },
1835 /**1871 /**
1836 * Lookup245: ethereum::transaction::AccessListItem1872 * Lookup248: ethereum::transaction::AccessListItem
1837 **/1873 **/
1838 EthereumTransactionAccessListItem: {1874 EthereumTransactionAccessListItem: {
1839 address: 'H160',1875 address: 'H160',
1840 storageKeys: 'Vec<H256>'1876 storageKeys: 'Vec<H256>'
1841 },1877 },
1842 /**1878 /**
1843 * Lookup246: ethereum::transaction::EIP1559Transaction1879 * Lookup249: ethereum::transaction::EIP1559Transaction
1844 **/1880 **/
1845 EthereumTransactionEip1559Transaction: {1881 EthereumTransactionEip1559Transaction: {
1846 chainId: 'u64',1882 chainId: 'u64',
1847 nonce: 'U256',1883 nonce: 'U256',
1856 r: 'H256',1892 r: 'H256',
1857 s: 'H256'1893 s: 'H256'
1858 },1894 },
1859 /**1895 /**
1860 * Lookup247: pallet_evm_migration::pallet::Call<T>1896 * Lookup250: pallet_evm_migration::pallet::Call<T>
1861 **/1897 **/
1862 PalletEvmMigrationCall: {1898 PalletEvmMigrationCall: {
1863 _enum: {1899 _enum: {
1864 begin: {1900 begin: {
1874 }1910 }
1875 }1911 }
1876 },1912 },
1877 /**1913 /**
1878 * Lookup250: pallet_sudo::pallet::Event<T>1914 * Lookup253: pallet_sudo::pallet::Event<T>
1879 **/1915 **/
1880 PalletSudoEvent: {1916 PalletSudoEvent: {
1881 _enum: {1917 _enum: {
1882 Sudid: {1918 Sudid: {
1890 }1926 }
1891 }1927 }
1892 },1928 },
1893 /**1929 /**
1894 * Lookup252: sp_runtime::DispatchError1930 * Lookup255: sp_runtime::DispatchError
1895 **/1931 **/
1896 SpRuntimeDispatchError: {1932 SpRuntimeDispatchError: {
1897 _enum: {1933 _enum: {
1898 Other: 'Null',1934 Other: 'Null',
1907 Transactional: 'SpRuntimeTransactionalError'1943 Transactional: 'SpRuntimeTransactionalError'
1908 }1944 }
1909 },1945 },
1910 /**1946 /**
1911 * Lookup253: sp_runtime::ModuleError1947 * Lookup256: sp_runtime::ModuleError
1912 **/1948 **/
1913 SpRuntimeModuleError: {1949 SpRuntimeModuleError: {
1914 index: 'u8',1950 index: 'u8',
1915 error: '[u8;4]'1951 error: '[u8;4]'
1916 },1952 },
1917 /**1953 /**
1918 * Lookup254: sp_runtime::TokenError1954 * Lookup257: sp_runtime::TokenError
1919 **/1955 **/
1920 SpRuntimeTokenError: {1956 SpRuntimeTokenError: {
1921 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1957 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
1922 },1958 },
1923 /**1959 /**
1924 * Lookup255: sp_runtime::ArithmeticError1960 * Lookup258: sp_runtime::ArithmeticError
1925 **/1961 **/
1926 SpRuntimeArithmeticError: {1962 SpRuntimeArithmeticError: {
1927 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1963 _enum: ['Underflow', 'Overflow', 'DivisionByZero']
1928 },1964 },
1929 /**1965 /**
1930 * Lookup256: sp_runtime::TransactionalError1966 * Lookup259: sp_runtime::TransactionalError
1931 **/1967 **/
1932 SpRuntimeTransactionalError: {1968 SpRuntimeTransactionalError: {
1933 _enum: ['LimitReached', 'NoLayer']1969 _enum: ['LimitReached', 'NoLayer']
1934 },1970 },
1935 /**1971 /**
1936 * Lookup257: pallet_sudo::pallet::Error<T>1972 * Lookup260: pallet_sudo::pallet::Error<T>
1937 **/1973 **/
1938 PalletSudoError: {1974 PalletSudoError: {
1939 _enum: ['RequireSudo']1975 _enum: ['RequireSudo']
1940 },1976 },
1941 /**1977 /**
1942 * Lookup258: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1978 * Lookup261: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
1943 **/1979 **/
1944 FrameSystemAccountInfo: {1980 FrameSystemAccountInfo: {
1945 nonce: 'u32',1981 nonce: 'u32',
1946 consumers: 'u32',1982 consumers: 'u32',
1947 providers: 'u32',1983 providers: 'u32',
1948 sufficients: 'u32',1984 sufficients: 'u32',
1949 data: 'PalletBalancesAccountData'1985 data: 'PalletBalancesAccountData'
1950 },1986 },
1951 /**1987 /**
1952 * Lookup259: frame_support::weights::PerDispatchClass<T>1988 * Lookup262: frame_support::weights::PerDispatchClass<T>
1953 **/1989 **/
1954 FrameSupportWeightsPerDispatchClassU64: {1990 FrameSupportWeightsPerDispatchClassU64: {
1955 normal: 'u64',1991 normal: 'u64',
1956 operational: 'u64',1992 operational: 'u64',
1957 mandatory: 'u64'1993 mandatory: 'u64'
1958 },1994 },
1959 /**1995 /**
1960 * Lookup260: sp_runtime::generic::digest::Digest1996 * Lookup263: sp_runtime::generic::digest::Digest
1961 **/1997 **/
1962 SpRuntimeDigest: {1998 SpRuntimeDigest: {
1963 logs: 'Vec<SpRuntimeDigestDigestItem>'1999 logs: 'Vec<SpRuntimeDigestDigestItem>'
1964 },2000 },
1965 /**2001 /**
1966 * Lookup262: sp_runtime::generic::digest::DigestItem2002 * Lookup265: sp_runtime::generic::digest::DigestItem
1967 **/2003 **/
1968 SpRuntimeDigestDigestItem: {2004 SpRuntimeDigestDigestItem: {
1969 _enum: {2005 _enum: {
1970 Other: 'Bytes',2006 Other: 'Bytes',
1978 RuntimeEnvironmentUpdated: 'Null'2014 RuntimeEnvironmentUpdated: 'Null'
1979 }2015 }
1980 },2016 },
1981 /**2017 /**
1982 * Lookup264: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>2018 * Lookup267: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
1983 **/2019 **/
1984 FrameSystemEventRecord: {2020 FrameSystemEventRecord: {
1985 phase: 'FrameSystemPhase',2021 phase: 'FrameSystemPhase',
1986 event: 'Event',2022 event: 'Event',
1987 topics: 'Vec<H256>'2023 topics: 'Vec<H256>'
1988 },2024 },
1989 /**2025 /**
1990 * Lookup266: frame_system::pallet::Event<T>2026 * Lookup269: frame_system::pallet::Event<T>
1991 **/2027 **/
1992 FrameSystemEvent: {2028 FrameSystemEvent: {
1993 _enum: {2029 _enum: {
1994 ExtrinsicSuccess: {2030 ExtrinsicSuccess: {
2014 }2050 }
2015 }2051 }
2016 },2052 },
2017 /**2053 /**
2018 * Lookup267: frame_support::weights::DispatchInfo2054 * Lookup270: frame_support::weights::DispatchInfo
2019 **/2055 **/
2020 FrameSupportWeightsDispatchInfo: {2056 FrameSupportWeightsDispatchInfo: {
2021 weight: 'u64',2057 weight: 'u64',
2022 class: 'FrameSupportWeightsDispatchClass',2058 class: 'FrameSupportWeightsDispatchClass',
2023 paysFee: 'FrameSupportWeightsPays'2059 paysFee: 'FrameSupportWeightsPays'
2024 },2060 },
2025 /**2061 /**
2026 * Lookup268: frame_support::weights::DispatchClass2062 * Lookup271: frame_support::weights::DispatchClass
2027 **/2063 **/
2028 FrameSupportWeightsDispatchClass: {2064 FrameSupportWeightsDispatchClass: {
2029 _enum: ['Normal', 'Operational', 'Mandatory']2065 _enum: ['Normal', 'Operational', 'Mandatory']
2030 },2066 },
2031 /**2067 /**
2032 * Lookup269: frame_support::weights::Pays2068 * Lookup272: frame_support::weights::Pays
2033 **/2069 **/
2034 FrameSupportWeightsPays: {2070 FrameSupportWeightsPays: {
2035 _enum: ['Yes', 'No']2071 _enum: ['Yes', 'No']
2036 },2072 },
2037 /**2073 /**
2038 * Lookup270: orml_vesting::module::Event<T>2074 * Lookup273: orml_vesting::module::Event<T>
2039 **/2075 **/
2040 OrmlVestingModuleEvent: {2076 OrmlVestingModuleEvent: {
2041 _enum: {2077 _enum: {
2042 VestingScheduleAdded: {2078 VestingScheduleAdded: {
2053 }2089 }
2054 }2090 }
2055 },2091 },
2056 /**2092 /**
2057 * Lookup271: cumulus_pallet_xcmp_queue::pallet::Event<T>2093 * Lookup274: cumulus_pallet_xcmp_queue::pallet::Event<T>
2058 **/2094 **/
2059 CumulusPalletXcmpQueueEvent: {2095 CumulusPalletXcmpQueueEvent: {
2060 _enum: {2096 _enum: {
2061 Success: 'Option<H256>',2097 Success: 'Option<H256>',
2068 OverweightServiced: '(u64,u64)'2104 OverweightServiced: '(u64,u64)'
2069 }2105 }
2070 },2106 },
2071 /**2107 /**
2072 * Lookup272: pallet_xcm::pallet::Event<T>2108 * Lookup275: pallet_xcm::pallet::Event<T>
2073 **/2109 **/
2074 PalletXcmEvent: {2110 PalletXcmEvent: {
2075 _enum: {2111 _enum: {
2076 Attempted: 'XcmV2TraitsOutcome',2112 Attempted: 'XcmV2TraitsOutcome',
2091 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'2127 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'
2092 }2128 }
2093 },2129 },
2094 /**2130 /**
2095 * Lookup273: xcm::v2::traits::Outcome2131 * Lookup276: xcm::v2::traits::Outcome
2096 **/2132 **/
2097 XcmV2TraitsOutcome: {2133 XcmV2TraitsOutcome: {
2098 _enum: {2134 _enum: {
2099 Complete: 'u64',2135 Complete: 'u64',
2100 Incomplete: '(u64,XcmV2TraitsError)',2136 Incomplete: '(u64,XcmV2TraitsError)',
2101 Error: 'XcmV2TraitsError'2137 Error: 'XcmV2TraitsError'
2102 }2138 }
2103 },2139 },
2104 /**2140 /**
2105 * Lookup275: cumulus_pallet_xcm::pallet::Event<T>2141 * Lookup278: cumulus_pallet_xcm::pallet::Event<T>
2106 **/2142 **/
2107 CumulusPalletXcmEvent: {2143 CumulusPalletXcmEvent: {
2108 _enum: {2144 _enum: {
2109 InvalidFormat: '[u8;8]',2145 InvalidFormat: '[u8;8]',
2110 UnsupportedVersion: '[u8;8]',2146 UnsupportedVersion: '[u8;8]',
2111 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'2147 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'
2112 }2148 }
2113 },2149 },
2114 /**2150 /**
2115 * Lookup276: cumulus_pallet_dmp_queue::pallet::Event<T>2151 * Lookup279: cumulus_pallet_dmp_queue::pallet::Event<T>
2116 **/2152 **/
2117 CumulusPalletDmpQueueEvent: {2153 CumulusPalletDmpQueueEvent: {
2118 _enum: {2154 _enum: {
2119 InvalidFormat: '[u8;32]',2155 InvalidFormat: '[u8;32]',
2124 OverweightServiced: '(u64,u64)'2160 OverweightServiced: '(u64,u64)'
2125 }2161 }
2126 },2162 },
2127 /**2163 /**
2128 * Lookup277: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2164 * Lookup280: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2129 **/2165 **/
2130 PalletUniqueRawEvent: {2166 PalletUniqueRawEvent: {
2131 _enum: {2167 _enum: {
2132 CollectionSponsorRemoved: 'u32',2168 CollectionSponsorRemoved: 'u32',
2141 CollectionPermissionSet: 'u32'2177 CollectionPermissionSet: 'u32'
2142 }2178 }
2143 },2179 },
2180 /**
2181 * Lookup281: pallet_unq_scheduler::pallet::Event<T>
2182 **/
2183 PalletUnqSchedulerEvent: {
2184 _enum: {
2185 Scheduled: {
2186 when: 'u32',
2187 index: 'u32',
2188 },
2189 Canceled: {
2190 when: 'u32',
2191 index: 'u32',
2192 },
2193 Dispatched: {
2194 task: '(u32,u32)',
2195 id: 'Option<[u8;16]>',
2196 result: 'Result<Null, SpRuntimeDispatchError>',
2197 },
2198 CallLookupFailed: {
2199 task: '(u32,u32)',
2200 id: 'Option<[u8;16]>',
2201 error: 'FrameSupportScheduleLookupError'
2202 }
2203 }
2204 },
2205 /**
2206 * Lookup283: frame_support::traits::schedule::LookupError
2207 **/
2208 FrameSupportScheduleLookupError: {
2209 _enum: ['Unknown', 'BadFormat']
2210 },
2144 /**2211 /**
2145 * Lookup278: pallet_common::pallet::Event<T>2212 * Lookup284: pallet_common::pallet::Event<T>
2146 **/2213 **/
2147 PalletCommonEvent: {2214 PalletCommonEvent: {
2148 _enum: {2215 _enum: {
2149 CollectionCreated: '(u32,u8,AccountId32)',2216 CollectionCreated: '(u32,u8,AccountId32)',
2159 PropertyPermissionSet: '(u32,Bytes)'2226 PropertyPermissionSet: '(u32,Bytes)'
2160 }2227 }
2161 },2228 },
2162 /**2229 /**
2163 * Lookup279: pallet_structure::pallet::Event<T>2230 * Lookup285: pallet_structure::pallet::Event<T>
2164 **/2231 **/
2165 PalletStructureEvent: {2232 PalletStructureEvent: {
2166 _enum: {2233 _enum: {
2167 Executed: 'Result<Null, SpRuntimeDispatchError>'2234 Executed: 'Result<Null, SpRuntimeDispatchError>'
2168 }2235 }
2169 },2236 },
2170 /**2237 /**
2171 * Lookup280: pallet_rmrk_core::pallet::Event<T>2238 * Lookup286: pallet_rmrk_core::pallet::Event<T>
2172 **/2239 **/
2173 PalletRmrkCoreEvent: {2240 PalletRmrkCoreEvent: {
2174 _enum: {2241 _enum: {
2175 CollectionCreated: {2242 CollectionCreated: {
2244 }2311 }
2245 }2312 }
2246 },2313 },
2247 /**2314 /**
2248 * Lookup281: pallet_rmrk_equip::pallet::Event<T>2315 * Lookup287: pallet_rmrk_equip::pallet::Event<T>
2249 **/2316 **/
2250 PalletRmrkEquipEvent: {2317 PalletRmrkEquipEvent: {
2251 _enum: {2318 _enum: {
2252 BaseCreated: {2319 BaseCreated: {
2255 }2322 }
2256 }2323 }
2257 },2324 },
2258 /**2325 /**
2259 * Lookup282: pallet_evm::pallet::Event<T>2326 * Lookup288: pallet_evm::pallet::Event<T>
2260 **/2327 **/
2261 PalletEvmEvent: {2328 PalletEvmEvent: {
2262 _enum: {2329 _enum: {
2263 Log: 'EthereumLog',2330 Log: 'EthereumLog',
2269 BalanceWithdraw: '(AccountId32,H160,U256)'2336 BalanceWithdraw: '(AccountId32,H160,U256)'
2270 }2337 }
2271 },2338 },
2272 /**2339 /**
2273 * Lookup283: ethereum::log::Log2340 * Lookup289: ethereum::log::Log
2274 **/2341 **/
2275 EthereumLog: {2342 EthereumLog: {
2276 address: 'H160',2343 address: 'H160',
2277 topics: 'Vec<H256>',2344 topics: 'Vec<H256>',
2278 data: 'Bytes'2345 data: 'Bytes'
2279 },2346 },
2280 /**2347 /**
2281 * Lookup284: pallet_ethereum::pallet::Event2348 * Lookup290: pallet_ethereum::pallet::Event
2282 **/2349 **/
2283 PalletEthereumEvent: {2350 PalletEthereumEvent: {
2284 _enum: {2351 _enum: {
2285 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'2352 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'
2286 }2353 }
2287 },2354 },
2288 /**2355 /**
2289 * Lookup285: evm_core::error::ExitReason2356 * Lookup291: evm_core::error::ExitReason
2290 **/2357 **/
2291 EvmCoreErrorExitReason: {2358 EvmCoreErrorExitReason: {
2292 _enum: {2359 _enum: {
2293 Succeed: 'EvmCoreErrorExitSucceed',2360 Succeed: 'EvmCoreErrorExitSucceed',
2296 Fatal: 'EvmCoreErrorExitFatal'2363 Fatal: 'EvmCoreErrorExitFatal'
2297 }2364 }
2298 },2365 },
2299 /**2366 /**
2300 * Lookup286: evm_core::error::ExitSucceed2367 * Lookup292: evm_core::error::ExitSucceed
2301 **/2368 **/
2302 EvmCoreErrorExitSucceed: {2369 EvmCoreErrorExitSucceed: {
2303 _enum: ['Stopped', 'Returned', 'Suicided']2370 _enum: ['Stopped', 'Returned', 'Suicided']
2304 },2371 },
2305 /**2372 /**
2306 * Lookup287: evm_core::error::ExitError2373 * Lookup293: evm_core::error::ExitError
2307 **/2374 **/
2308 EvmCoreErrorExitError: {2375 EvmCoreErrorExitError: {
2309 _enum: {2376 _enum: {
2310 StackUnderflow: 'Null',2377 StackUnderflow: 'Null',
2324 InvalidCode: 'Null'2391 InvalidCode: 'Null'
2325 }2392 }
2326 },2393 },
2327 /**2394 /**
2328 * Lookup290: evm_core::error::ExitRevert2395 * Lookup296: evm_core::error::ExitRevert
2329 **/2396 **/
2330 EvmCoreErrorExitRevert: {2397 EvmCoreErrorExitRevert: {
2331 _enum: ['Reverted']2398 _enum: ['Reverted']
2332 },2399 },
2333 /**2400 /**
2334 * Lookup291: evm_core::error::ExitFatal2401 * Lookup297: evm_core::error::ExitFatal
2335 **/2402 **/
2336 EvmCoreErrorExitFatal: {2403 EvmCoreErrorExitFatal: {
2337 _enum: {2404 _enum: {
2338 NotSupported: 'Null',2405 NotSupported: 'Null',
2341 Other: 'Text'2408 Other: 'Text'
2342 }2409 }
2343 },2410 },
2344 /**2411 /**
2345 * Lookup292: frame_system::Phase2412 * Lookup298: frame_system::Phase
2346 **/2413 **/
2347 FrameSystemPhase: {2414 FrameSystemPhase: {
2348 _enum: {2415 _enum: {
2349 ApplyExtrinsic: 'u32',2416 ApplyExtrinsic: 'u32',
2350 Finalization: 'Null',2417 Finalization: 'Null',
2351 Initialization: 'Null'2418 Initialization: 'Null'
2352 }2419 }
2353 },2420 },
2354 /**2421 /**
2355 * Lookup294: frame_system::LastRuntimeUpgradeInfo2422 * Lookup300: frame_system::LastRuntimeUpgradeInfo
2356 **/2423 **/
2357 FrameSystemLastRuntimeUpgradeInfo: {2424 FrameSystemLastRuntimeUpgradeInfo: {
2358 specVersion: 'Compact<u32>',2425 specVersion: 'Compact<u32>',
2359 specName: 'Text'2426 specName: 'Text'
2360 },2427 },
2361 /**2428 /**
2362 * Lookup295: frame_system::limits::BlockWeights2429 * Lookup301: frame_system::limits::BlockWeights
2363 **/2430 **/
2364 FrameSystemLimitsBlockWeights: {2431 FrameSystemLimitsBlockWeights: {
2365 baseBlock: 'u64',2432 baseBlock: 'u64',
2366 maxBlock: 'u64',2433 maxBlock: 'u64',
2367 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2434 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
2368 },2435 },
2369 /**2436 /**
2370 * Lookup296: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2437 * Lookup302: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
2371 **/2438 **/
2372 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2439 FrameSupportWeightsPerDispatchClassWeightsPerClass: {
2373 normal: 'FrameSystemLimitsWeightsPerClass',2440 normal: 'FrameSystemLimitsWeightsPerClass',
2374 operational: 'FrameSystemLimitsWeightsPerClass',2441 operational: 'FrameSystemLimitsWeightsPerClass',
2375 mandatory: 'FrameSystemLimitsWeightsPerClass'2442 mandatory: 'FrameSystemLimitsWeightsPerClass'
2376 },2443 },
2377 /**2444 /**
2378 * Lookup297: frame_system::limits::WeightsPerClass2445 * Lookup303: frame_system::limits::WeightsPerClass
2379 **/2446 **/
2380 FrameSystemLimitsWeightsPerClass: {2447 FrameSystemLimitsWeightsPerClass: {
2381 baseExtrinsic: 'u64',2448 baseExtrinsic: 'u64',
2382 maxExtrinsic: 'Option<u64>',2449 maxExtrinsic: 'Option<u64>',
2383 maxTotal: 'Option<u64>',2450 maxTotal: 'Option<u64>',
2384 reserved: 'Option<u64>'2451 reserved: 'Option<u64>'
2385 },2452 },
2386 /**2453 /**
2387 * Lookup299: frame_system::limits::BlockLength2454 * Lookup305: frame_system::limits::BlockLength
2388 **/2455 **/
2389 FrameSystemLimitsBlockLength: {2456 FrameSystemLimitsBlockLength: {
2390 max: 'FrameSupportWeightsPerDispatchClassU32'2457 max: 'FrameSupportWeightsPerDispatchClassU32'
2391 },2458 },
2392 /**2459 /**
2393 * Lookup300: frame_support::weights::PerDispatchClass<T>2460 * Lookup306: frame_support::weights::PerDispatchClass<T>
2394 **/2461 **/
2395 FrameSupportWeightsPerDispatchClassU32: {2462 FrameSupportWeightsPerDispatchClassU32: {
2396 normal: 'u32',2463 normal: 'u32',
2397 operational: 'u32',2464 operational: 'u32',
2398 mandatory: 'u32'2465 mandatory: 'u32'
2399 },2466 },
2400 /**2467 /**
2401 * Lookup301: frame_support::weights::RuntimeDbWeight2468 * Lookup307: frame_support::weights::RuntimeDbWeight
2402 **/2469 **/
2403 FrameSupportWeightsRuntimeDbWeight: {2470 FrameSupportWeightsRuntimeDbWeight: {
2404 read: 'u64',2471 read: 'u64',
2405 write: 'u64'2472 write: 'u64'
2406 },2473 },
2407 /**2474 /**
2408 * Lookup302: sp_version::RuntimeVersion2475 * Lookup308: sp_version::RuntimeVersion
2409 **/2476 **/
2410 SpVersionRuntimeVersion: {2477 SpVersionRuntimeVersion: {
2411 specName: 'Text',2478 specName: 'Text',
2412 implName: 'Text',2479 implName: 'Text',
2417 transactionVersion: 'u32',2484 transactionVersion: 'u32',
2418 stateVersion: 'u8'2485 stateVersion: 'u8'
2419 },2486 },
2420 /**2487 /**
2421 * Lookup306: frame_system::pallet::Error<T>2488 * Lookup312: frame_system::pallet::Error<T>
2422 **/2489 **/
2423 FrameSystemError: {2490 FrameSystemError: {
2424 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2491 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
2425 },2492 },
2426 /**2493 /**
2427 * Lookup308: orml_vesting::module::Error<T>2494 * Lookup314: orml_vesting::module::Error<T>
2428 **/2495 **/
2429 OrmlVestingModuleError: {2496 OrmlVestingModuleError: {
2430 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2497 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
2431 },2498 },
2432 /**2499 /**
2433 * Lookup310: cumulus_pallet_xcmp_queue::InboundChannelDetails2500 * Lookup316: cumulus_pallet_xcmp_queue::InboundChannelDetails
2434 **/2501 **/
2435 CumulusPalletXcmpQueueInboundChannelDetails: {2502 CumulusPalletXcmpQueueInboundChannelDetails: {
2436 sender: 'u32',2503 sender: 'u32',
2437 state: 'CumulusPalletXcmpQueueInboundState',2504 state: 'CumulusPalletXcmpQueueInboundState',
2438 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2505 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
2439 },2506 },
2440 /**2507 /**
2441 * Lookup311: cumulus_pallet_xcmp_queue::InboundState2508 * Lookup317: cumulus_pallet_xcmp_queue::InboundState
2442 **/2509 **/
2443 CumulusPalletXcmpQueueInboundState: {2510 CumulusPalletXcmpQueueInboundState: {
2444 _enum: ['Ok', 'Suspended']2511 _enum: ['Ok', 'Suspended']
2445 },2512 },
2446 /**2513 /**
2447 * Lookup314: polkadot_parachain::primitives::XcmpMessageFormat2514 * Lookup320: polkadot_parachain::primitives::XcmpMessageFormat
2448 **/2515 **/
2449 PolkadotParachainPrimitivesXcmpMessageFormat: {2516 PolkadotParachainPrimitivesXcmpMessageFormat: {
2450 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2517 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
2451 },2518 },
2452 /**2519 /**
2453 * Lookup317: cumulus_pallet_xcmp_queue::OutboundChannelDetails2520 * Lookup323: cumulus_pallet_xcmp_queue::OutboundChannelDetails
2454 **/2521 **/
2455 CumulusPalletXcmpQueueOutboundChannelDetails: {2522 CumulusPalletXcmpQueueOutboundChannelDetails: {
2456 recipient: 'u32',2523 recipient: 'u32',
2457 state: 'CumulusPalletXcmpQueueOutboundState',2524 state: 'CumulusPalletXcmpQueueOutboundState',
2458 signalsExist: 'bool',2525 signalsExist: 'bool',
2459 firstIndex: 'u16',2526 firstIndex: 'u16',
2460 lastIndex: 'u16'2527 lastIndex: 'u16'
2461 },2528 },
2462 /**2529 /**
2463 * Lookup318: cumulus_pallet_xcmp_queue::OutboundState2530 * Lookup324: cumulus_pallet_xcmp_queue::OutboundState
2464 **/2531 **/
2465 CumulusPalletXcmpQueueOutboundState: {2532 CumulusPalletXcmpQueueOutboundState: {
2466 _enum: ['Ok', 'Suspended']2533 _enum: ['Ok', 'Suspended']
2467 },2534 },
2468 /**2535 /**
2469 * Lookup320: cumulus_pallet_xcmp_queue::QueueConfigData2536 * Lookup326: cumulus_pallet_xcmp_queue::QueueConfigData
2470 **/2537 **/
2471 CumulusPalletXcmpQueueQueueConfigData: {2538 CumulusPalletXcmpQueueQueueConfigData: {
2472 suspendThreshold: 'u32',2539 suspendThreshold: 'u32',
2473 dropThreshold: 'u32',2540 dropThreshold: 'u32',
2476 weightRestrictDecay: 'u64',2543 weightRestrictDecay: 'u64',
2477 xcmpMaxIndividualWeight: 'u64'2544 xcmpMaxIndividualWeight: 'u64'
2478 },2545 },
2479 /**2546 /**
2480 * Lookup322: cumulus_pallet_xcmp_queue::pallet::Error<T>2547 * Lookup328: cumulus_pallet_xcmp_queue::pallet::Error<T>
2481 **/2548 **/
2482 CumulusPalletXcmpQueueError: {2549 CumulusPalletXcmpQueueError: {
2483 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2550 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
2484 },2551 },
2485 /**2552 /**
2486 * Lookup323: pallet_xcm::pallet::Error<T>2553 * Lookup329: pallet_xcm::pallet::Error<T>
2487 **/2554 **/
2488 PalletXcmError: {2555 PalletXcmError: {
2489 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2556 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
2490 },2557 },
2491 /**2558 /**
2492 * Lookup324: cumulus_pallet_xcm::pallet::Error<T>2559 * Lookup330: cumulus_pallet_xcm::pallet::Error<T>
2493 **/2560 **/
2494 CumulusPalletXcmError: 'Null',2561 CumulusPalletXcmError: 'Null',
2495 /**2562 /**
2496 * Lookup325: cumulus_pallet_dmp_queue::ConfigData2563 * Lookup331: cumulus_pallet_dmp_queue::ConfigData
2497 **/2564 **/
2498 CumulusPalletDmpQueueConfigData: {2565 CumulusPalletDmpQueueConfigData: {
2499 maxIndividual: 'u64'2566 maxIndividual: 'u64'
2500 },2567 },
2501 /**2568 /**
2502 * Lookup326: cumulus_pallet_dmp_queue::PageIndexData2569 * Lookup332: cumulus_pallet_dmp_queue::PageIndexData
2503 **/2570 **/
2504 CumulusPalletDmpQueuePageIndexData: {2571 CumulusPalletDmpQueuePageIndexData: {
2505 beginUsed: 'u32',2572 beginUsed: 'u32',
2506 endUsed: 'u32',2573 endUsed: 'u32',
2507 overweightCount: 'u64'2574 overweightCount: 'u64'
2508 },2575 },
2509 /**2576 /**
2510 * Lookup329: cumulus_pallet_dmp_queue::pallet::Error<T>2577 * Lookup335: cumulus_pallet_dmp_queue::pallet::Error<T>
2511 **/2578 **/
2512 CumulusPalletDmpQueueError: {2579 CumulusPalletDmpQueueError: {
2513 _enum: ['Unknown', 'OverLimit']2580 _enum: ['Unknown', 'OverLimit']
2514 },2581 },
2515 /**2582 /**
2516 * Lookup333: pallet_unique::Error<T>2583 * Lookup339: pallet_unique::Error<T>
2517 **/2584 **/
2518 PalletUniqueError: {2585 PalletUniqueError: {
2519 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2586 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
2520 },2587 },
2588 /**
2589 * Lookup342: pallet_unq_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
2590 **/
2591 PalletUnqSchedulerScheduledV3: {
2592 maybeId: 'Option<[u8;16]>',
2593 priority: 'u8',
2594 call: 'FrameSupportScheduleMaybeHashed',
2595 maybePeriodic: 'Option<(u32,u32)>',
2596 origin: 'OpalRuntimeOriginCaller'
2597 },
2598 /**
2599 * Lookup343: opal_runtime::OriginCaller
2600 **/
2601 OpalRuntimeOriginCaller: {
2602 _enum: {
2603 __Unused0: 'Null',
2604 __Unused1: 'Null',
2605 __Unused2: 'Null',
2606 __Unused3: 'Null',
2607 Void: 'SpCoreVoid',
2608 __Unused5: 'Null',
2609 __Unused6: 'Null',
2610 __Unused7: 'Null',
2611 __Unused8: 'Null',
2612 __Unused9: 'Null',
2613 __Unused10: 'Null',
2614 __Unused11: 'Null',
2615 __Unused12: 'Null',
2616 __Unused13: 'Null',
2617 __Unused14: 'Null',
2618 __Unused15: 'Null',
2619 __Unused16: 'Null',
2620 __Unused17: 'Null',
2621 __Unused18: 'Null',
2622 __Unused19: 'Null',
2623 __Unused20: 'Null',
2624 __Unused21: 'Null',
2625 __Unused22: 'Null',
2626 __Unused23: 'Null',
2627 __Unused24: 'Null',
2628 __Unused25: 'Null',
2629 __Unused26: 'Null',
2630 __Unused27: 'Null',
2631 __Unused28: 'Null',
2632 __Unused29: 'Null',
2633 __Unused30: 'Null',
2634 __Unused31: 'Null',
2635 __Unused32: 'Null',
2636 __Unused33: 'Null',
2637 __Unused34: 'Null',
2638 __Unused35: 'Null',
2639 system: 'FrameSupportDispatchRawOrigin',
2640 __Unused37: 'Null',
2641 __Unused38: 'Null',
2642 __Unused39: 'Null',
2643 __Unused40: 'Null',
2644 __Unused41: 'Null',
2645 __Unused42: 'Null',
2646 __Unused43: 'Null',
2647 __Unused44: 'Null',
2648 __Unused45: 'Null',
2649 __Unused46: 'Null',
2650 __Unused47: 'Null',
2651 __Unused48: 'Null',
2652 __Unused49: 'Null',
2653 __Unused50: 'Null',
2654 PolkadotXcm: 'PalletXcmOrigin',
2655 CumulusXcm: 'CumulusPalletXcmOrigin',
2656 __Unused53: 'Null',
2657 __Unused54: 'Null',
2658 __Unused55: 'Null',
2659 __Unused56: 'Null',
2660 __Unused57: 'Null',
2661 __Unused58: 'Null',
2662 __Unused59: 'Null',
2663 __Unused60: 'Null',
2664 __Unused61: 'Null',
2665 __Unused62: 'Null',
2666 __Unused63: 'Null',
2667 __Unused64: 'Null',
2668 __Unused65: 'Null',
2669 __Unused66: 'Null',
2670 __Unused67: 'Null',
2671 __Unused68: 'Null',
2672 __Unused69: 'Null',
2673 __Unused70: 'Null',
2674 __Unused71: 'Null',
2675 __Unused72: 'Null',
2676 __Unused73: 'Null',
2677 __Unused74: 'Null',
2678 __Unused75: 'Null',
2679 __Unused76: 'Null',
2680 __Unused77: 'Null',
2681 __Unused78: 'Null',
2682 __Unused79: 'Null',
2683 __Unused80: 'Null',
2684 __Unused81: 'Null',
2685 __Unused82: 'Null',
2686 __Unused83: 'Null',
2687 __Unused84: 'Null',
2688 __Unused85: 'Null',
2689 __Unused86: 'Null',
2690 __Unused87: 'Null',
2691 __Unused88: 'Null',
2692 __Unused89: 'Null',
2693 __Unused90: 'Null',
2694 __Unused91: 'Null',
2695 __Unused92: 'Null',
2696 __Unused93: 'Null',
2697 __Unused94: 'Null',
2698 __Unused95: 'Null',
2699 __Unused96: 'Null',
2700 __Unused97: 'Null',
2701 __Unused98: 'Null',
2702 __Unused99: 'Null',
2703 __Unused100: 'Null',
2704 Ethereum: 'PalletEthereumRawOrigin'
2705 }
2706 },
2707 /**
2708 * Lookup344: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
2709 **/
2710 FrameSupportDispatchRawOrigin: {
2711 _enum: {
2712 Root: 'Null',
2713 Signed: 'AccountId32',
2714 None: 'Null'
2715 }
2716 },
2717 /**
2718 * Lookup345: pallet_xcm::pallet::Origin
2719 **/
2720 PalletXcmOrigin: {
2721 _enum: {
2722 Xcm: 'XcmV1MultiLocation',
2723 Response: 'XcmV1MultiLocation'
2724 }
2725 },
2726 /**
2727 * Lookup346: cumulus_pallet_xcm::pallet::Origin
2728 **/
2729 CumulusPalletXcmOrigin: {
2730 _enum: {
2731 Relay: 'Null',
2732 SiblingParachain: 'u32'
2733 }
2734 },
2735 /**
2736 * Lookup347: pallet_ethereum::RawOrigin
2737 **/
2738 PalletEthereumRawOrigin: {
2739 _enum: {
2740 EthereumTransaction: 'H160'
2741 }
2742 },
2743 /**
2744 * Lookup348: sp_core::Void
2745 **/
2746 SpCoreVoid: 'Null',
2747 /**
2748 * Lookup349: pallet_unq_scheduler::pallet::Error<T>
2749 **/
2750 PalletUnqSchedulerError: {
2751 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
2752 },
2521 /**2753 /**
2522 * Lookup334: up_data_structs::Collection<sp_core::crypto::AccountId32>2754 * Lookup350: up_data_structs::Collection<sp_core::crypto::AccountId32>
2523 **/2755 **/
2524 UpDataStructsCollection: {2756 UpDataStructsCollection: {
2525 owner: 'AccountId32',2757 owner: 'AccountId32',
2526 mode: 'UpDataStructsCollectionMode',2758 mode: 'UpDataStructsCollectionMode',
2532 permissions: 'UpDataStructsCollectionPermissions',2764 permissions: 'UpDataStructsCollectionPermissions',
2533 externalCollection: 'bool'2765 externalCollection: 'bool'
2534 },2766 },
2535 /**2767 /**
2536 * Lookup335: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2768 * Lookup351: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
2537 **/2769 **/
2538 UpDataStructsSponsorshipState: {2770 UpDataStructsSponsorshipState: {
2539 _enum: {2771 _enum: {
2540 Disabled: 'Null',2772 Disabled: 'Null',
2541 Unconfirmed: 'AccountId32',2773 Unconfirmed: 'AccountId32',
2542 Confirmed: 'AccountId32'2774 Confirmed: 'AccountId32'
2543 }2775 }
2544 },2776 },
2545 /**2777 /**
2546 * Lookup336: up_data_structs::Properties2778 * Lookup352: up_data_structs::Properties
2547 **/2779 **/
2548 UpDataStructsProperties: {2780 UpDataStructsProperties: {
2549 map: 'UpDataStructsPropertiesMapBoundedVec',2781 map: 'UpDataStructsPropertiesMapBoundedVec',
2550 consumedSpace: 'u32',2782 consumedSpace: 'u32',
2551 spaceLimit: 'u32'2783 spaceLimit: 'u32'
2552 },2784 },
2553 /**2785 /**
2554 * Lookup337: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>2786 * Lookup353: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
2555 **/2787 **/
2556 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',2788 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
2557 /**2789 /**
2558 * Lookup342: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>2790 * Lookup358: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
2559 **/2791 **/
2560 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',2792 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
2561 /**2793 /**
2562 * Lookup349: up_data_structs::CollectionStats2794 * Lookup365: up_data_structs::CollectionStats
2563 **/2795 **/
2564 UpDataStructsCollectionStats: {2796 UpDataStructsCollectionStats: {
2565 created: 'u32',2797 created: 'u32',
2566 destroyed: 'u32',2798 destroyed: 'u32',
2567 alive: 'u32'2799 alive: 'u32'
2568 },2800 },
2569 /**2801 /**
2570 * Lookup323: up_data_structs::TokenChild2802 * Lookup366: up_data_structs::TokenChild
2571 **/2803 **/
2572 UpDataStructsTokenChild: {2804 UpDataStructsTokenChild: {
2573 token: 'u32',2805 token: 'u32',
2574 collection: 'u32'2806 collection: 'u32'
2575 },2807 },
2576 /**2808 /**
2577 * Lookup324: PhantomType::up_data_structs<T>2809 * Lookup367: PhantomType::up_data_structs<T>
2578 **/2810 **/
2579 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',2811 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
2580 /**2812 /**
2581 * Lookup326: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2813 * Lookup369: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2582 **/2814 **/
2583 UpDataStructsTokenData: {2815 UpDataStructsTokenData: {
2584 properties: 'Vec<UpDataStructsProperty>',2816 properties: 'Vec<UpDataStructsProperty>',
2585 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'2817 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
2586 },2818 },
2587 /**2819 /**
2588 * Lookup328: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>2820 * Lookup371: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
2589 **/2821 **/
2590 UpDataStructsRpcCollection: {2822 UpDataStructsRpcCollection: {
2591 owner: 'AccountId32',2823 owner: 'AccountId32',
2592 mode: 'UpDataStructsCollectionMode',2824 mode: 'UpDataStructsCollectionMode',
2600 properties: 'Vec<UpDataStructsProperty>',2832 properties: 'Vec<UpDataStructsProperty>',
2601 readOnly: 'bool'2833 readOnly: 'bool'
2602 },2834 },
2603 /**2835 /**
2604 * Lookup329: up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>2836 * Lookup372: rmrk_traits::collection::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
2605 **/2837 **/
2606 RmrkTraitsCollectionCollectionInfo: {2838 RmrkTraitsCollectionCollectionInfo: {
2607 issuer: 'AccountId32',2839 issuer: 'AccountId32',
2608 metadata: 'Bytes',2840 metadata: 'Bytes',
2609 max: 'Option<u32>',2841 max: 'Option<u32>',
2610 symbol: 'Bytes',2842 symbol: 'Bytes',
2611 nftsCount: 'u32'2843 nftsCount: 'u32'
2612 },2844 },
2613 /**2845 /**
2614 * Lookup332: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>2846 * Lookup373: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2615 **/2847 **/
2616 RmrkTraitsNftNftInfo: {2848 RmrkTraitsNftNftInfo: {
2617 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2849 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
2618 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',2850 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
2619 metadata: 'Bytes',2851 metadata: 'Bytes',
2620 equipped: 'bool',2852 equipped: 'bool',
2621 pending: 'bool'2853 pending: 'bool'
2622 },2854 },
2623 /**
2624 * Lookup333: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
2625 **/
2626 UpDataStructsRmrkAccountIdOrCollectionNftTuple: {
2627 _enum: {
2628 AccountId: 'AccountId32',
2629 CollectionAndNftTuple: '(u32,u32)'
2630 }
2631 },
2632 /**2855 /**
2633 * Lookup335: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>2856 * Lookup375: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
2634 **/2857 **/
2635 RmrkTraitsNftRoyaltyInfo: {2858 RmrkTraitsNftRoyaltyInfo: {
2636 recipient: 'AccountId32',2859 recipient: 'AccountId32',
2637 amount: 'Permill'2860 amount: 'Permill'
2638 },2861 },
2639 /**2862 /**
2640 * Lookup336: up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2863 * Lookup376: rmrk_traits::resource::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2641 **/2864 **/
2642 RmrkTraitsResourceResourceInfo: {2865 RmrkTraitsResourceResourceInfo: {
2643 id: 'u32',2866 id: 'u32',
2644 resource: 'RmrkTraitsResourceResourceTypes',2867 resource: 'RmrkTraitsResourceResourceTypes',
2645 pending: 'bool',2868 pending: 'bool',
2646 pendingRemoval: 'bool'2869 pendingRemoval: 'bool'
2647 },2870 },
2648 /**2871 /**
2649 * Lookup339: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2872 * Lookup377: rmrk_traits::resource::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2650 **/2873 **/
2651 RmrkTraitsResourceResourceTypes: {2874 RmrkTraitsResourceResourceTypes: {
2652 _enum: {2875 _enum: {
2653 Basic: 'RmrkTraitsResourceBasicResource',2876 Basic: 'RmrkTraitsResourceBasicResource',
2654 Composable: 'RmrkTraitsResourceComposableResource',2877 Composable: 'RmrkTraitsResourceComposableResource',
2655 Slot: 'RmrkTraitsResourceSlotResource'2878 Slot: 'RmrkTraitsResourceSlotResource'
2656 }2879 }
2657 },2880 },
2658 /**
2659 * Lookup340: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
2660 **/
2661 UpDataStructsRmrkBasicResource: {
2662 src: 'Option<Bytes>',
2663 metadata: 'Option<Bytes>',
2664 license: 'Option<Bytes>',
2665 thumb: 'Option<Bytes>'
2666 },
2667 /**
2668 * Lookup342: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2669 **/
2670 UpDataStructsRmrkComposableResource: {
2671 parts: 'Vec<u32>',
2672 base: 'u32',
2673 src: 'Option<Bytes>',
2674 metadata: 'Option<Bytes>',
2675 license: 'Option<Bytes>',
2676 thumb: 'Option<Bytes>'
2677 },
2678 /**
2679 * Lookup343: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
2680 **/
2681 UpDataStructsRmrkSlotResource: {
2682 base: 'u32',
2683 src: 'Option<Bytes>',
2684 metadata: 'Option<Bytes>',
2685 slot: 'u32',
2686 license: 'Option<Bytes>',
2687 thumb: 'Option<Bytes>'
2688 },
2689 /**2881 /**
2690 * Lookup344: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2882 * Lookup378: rmrk_traits::property::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2691 **/2883 **/
2692 RmrkTraitsPropertyPropertyInfo: {2884 RmrkTraitsPropertyPropertyInfo: {
2693 key: 'Bytes',2885 key: 'Bytes',
2694 value: 'Bytes'2886 value: 'Bytes'
2695 },2887 },
2696 /**2888 /**
2697 * Lookup347: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>2889 * Lookup379: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2698 **/2890 **/
2699 RmrkTraitsBaseBaseInfo: {2891 RmrkTraitsBaseBaseInfo: {
2700 issuer: 'AccountId32',2892 issuer: 'AccountId32',
2701 baseType: 'Bytes',2893 baseType: 'Bytes',
2702 symbol: 'Bytes'2894 symbol: 'Bytes'
2703 },2895 },
2704 /**
2705 * Lookup348: up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2706 **/
2707 UpDataStructsRmrkPartType: {
2708 _enum: {
2709 FixedPart: 'UpDataStructsRmrkFixedPart',
2710 SlotPart: 'UpDataStructsRmrkSlotPart'
2711 }
2712 },
2713 /**
2714 * Lookup350: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
2715 **/
2716 UpDataStructsRmrkFixedPart: {
2717 id: 'u32',
2718 z: 'u32',
2719 src: 'Bytes'
2720 },
2721 /**
2722 * Lookup351: up_data_structs::rmrk::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2723 **/
2724 UpDataStructsRmrkSlotPart: {
2725 id: 'u32',
2726 equippable: 'UpDataStructsRmrkEquippableList',
2727 src: 'Bytes',
2728 z: 'u32'
2729 },
2730 /**
2731 * Lookup352: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
2732 **/
2733 UpDataStructsRmrkEquippableList: {
2734 _enum: {
2735 All: 'Null',
2736 Empty: 'Null',
2737 Custom: 'Vec<u32>'
2738 }
2739 },
2740 /**
2741 * Lookup353: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
2742 **/
2743 UpDataStructsRmrkTheme: {
2744 name: 'Bytes',
2745 properties: 'Vec<UpDataStructsRmrkThemeProperty>',
2746 inherit: 'bool'
2747 },
2748 /**
2749 * Lookup355: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
2750 **/
2751 UpDataStructsRmrkThemeProperty: {
2752 key: 'Bytes',
2753 value: 'Bytes'
2754 },
2755 /**2896 /**
2756 * Lookup356: up_data_structs::rmrk::NftChild2897 * Lookup380: rmrk_traits::nft::NftChild
2757 **/2898 **/
2758 RmrkTraitsNftNftChild: {2899 RmrkTraitsNftNftChild: {
2759 collectionId: 'u32',2900 collectionId: 'u32',
2760 nftId: 'u32'2901 nftId: 'u32'
2761 },2902 },
2762 /**2903 /**
2763 * Lookup358: pallet_common::pallet::Error<T>2904 * Lookup382: pallet_common::pallet::Error<T>
2764 **/2905 **/
2765 PalletCommonError: {2906 PalletCommonError: {
2766 _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', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']2907 _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', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
2767 },2908 },
2768 /**2909 /**
2769 * Lookup360: pallet_fungible::pallet::Error<T>2910 * Lookup384: pallet_fungible::pallet::Error<T>
2770 **/2911 **/
2771 PalletFungibleError: {2912 PalletFungibleError: {
2772 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2913 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
2773 },2914 },
2774 /**2915 /**
2775 * Lookup361: pallet_refungible::ItemData2916 * Lookup385: pallet_refungible::ItemData
2776 **/2917 **/
2777 PalletRefungibleItemData: {2918 PalletRefungibleItemData: {
2778 constData: 'Bytes'2919 constData: 'Bytes'
2779 },2920 },
2780 /**2921 /**
2781 * Lookup365: pallet_refungible::pallet::Error<T>2922 * Lookup389: pallet_refungible::pallet::Error<T>
2782 **/2923 **/
2783 PalletRefungibleError: {2924 PalletRefungibleError: {
2784 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']2925 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
2785 },2926 },
2786 /**2927 /**
2787 * Lookup366: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2928 * Lookup390: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2788 **/2929 **/
2789 PalletNonfungibleItemData: {2930 PalletNonfungibleItemData: {
2790 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2931 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2791 },2932 },
2792 /**2933 /**
2793 * Lookup368: pallet_nonfungible::pallet::Error<T>2934 * Lookup392: pallet_nonfungible::pallet::Error<T>
2794 **/2935 **/
2795 PalletNonfungibleError: {2936 PalletNonfungibleError: {
2796 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']2937 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
2797 },2938 },
2798 /**2939 /**
2799 * Lookup369: pallet_structure::pallet::Error<T>2940 * Lookup393: pallet_structure::pallet::Error<T>
2800 **/2941 **/
2801 PalletStructureError: {2942 PalletStructureError: {
2802 _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']2943 _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
2803 },2944 },
2945 /**
2946 * Lookup394: pallet_rmrk_core::pallet::Error<T>
2947 **/
2948 PalletRmrkCoreError: {
2949 _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'ResourceNotPending']
2950 },
2951 /**
2952 * Lookup396: pallet_rmrk_equip::pallet::Error<T>
2953 **/
2954 PalletRmrkEquipError: {
2955 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst']
2956 },
2804 /**2957 /**
2805 * Lookup372: pallet_evm::pallet::Error<T>2958 * Lookup399: pallet_evm::pallet::Error<T>
2806 **/2959 **/
2807 PalletEvmError: {2960 PalletEvmError: {
2808 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2961 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
2809 },2962 },
2810 /**2963 /**
2811 * Lookup375: fp_rpc::TransactionStatus2964 * Lookup402: fp_rpc::TransactionStatus
2812 **/2965 **/
2813 FpRpcTransactionStatus: {2966 FpRpcTransactionStatus: {
2814 transactionHash: 'H256',2967 transactionHash: 'H256',
2815 transactionIndex: 'u32',2968 transactionIndex: 'u32',
2819 logs: 'Vec<EthereumLog>',2972 logs: 'Vec<EthereumLog>',
2820 logsBloom: 'EthbloomBloom'2973 logsBloom: 'EthbloomBloom'
2821 },2974 },
2822 /**2975 /**
2823 * Lookup377: ethbloom::Bloom2976 * Lookup404: ethbloom::Bloom
2824 **/2977 **/
2825 EthbloomBloom: '[u8;256]',2978 EthbloomBloom: '[u8;256]',
2826 /**2979 /**
2827 * Lookup379: ethereum::receipt::ReceiptV32980 * Lookup406: ethereum::receipt::ReceiptV3
2828 **/2981 **/
2829 EthereumReceiptReceiptV3: {2982 EthereumReceiptReceiptV3: {
2830 _enum: {2983 _enum: {
2831 Legacy: 'EthereumReceiptEip658ReceiptData',2984 Legacy: 'EthereumReceiptEip658ReceiptData',
2832 EIP2930: 'EthereumReceiptEip658ReceiptData',2985 EIP2930: 'EthereumReceiptEip658ReceiptData',
2833 EIP1559: 'EthereumReceiptEip658ReceiptData'2986 EIP1559: 'EthereumReceiptEip658ReceiptData'
2834 }2987 }
2835 },2988 },
2836 /**2989 /**
2837 * Lookup380: ethereum::receipt::EIP658ReceiptData2990 * Lookup407: ethereum::receipt::EIP658ReceiptData
2838 **/2991 **/
2839 EthereumReceiptEip658ReceiptData: {2992 EthereumReceiptEip658ReceiptData: {
2840 statusCode: 'u8',2993 statusCode: 'u8',
2841 usedGas: 'U256',2994 usedGas: 'U256',
2842 logsBloom: 'EthbloomBloom',2995 logsBloom: 'EthbloomBloom',
2843 logs: 'Vec<EthereumLog>'2996 logs: 'Vec<EthereumLog>'
2844 },2997 },
2845 /**2998 /**
2846 * Lookup381: ethereum::block::Block<ethereum::transaction::TransactionV2>2999 * Lookup408: ethereum::block::Block<ethereum::transaction::TransactionV2>
2847 **/3000 **/
2848 EthereumBlock: {3001 EthereumBlock: {
2849 header: 'EthereumHeader',3002 header: 'EthereumHeader',
2850 transactions: 'Vec<EthereumTransactionTransactionV2>',3003 transactions: 'Vec<EthereumTransactionTransactionV2>',
2851 ommers: 'Vec<EthereumHeader>'3004 ommers: 'Vec<EthereumHeader>'
2852 },3005 },
2853 /**3006 /**
2854 * Lookup382: ethereum::header::Header3007 * Lookup409: ethereum::header::Header
2855 **/3008 **/
2856 EthereumHeader: {3009 EthereumHeader: {
2857 parentHash: 'H256',3010 parentHash: 'H256',
2858 ommersHash: 'H256',3011 ommersHash: 'H256',
2870 mixHash: 'H256',3023 mixHash: 'H256',
2871 nonce: 'EthereumTypesHashH64'3024 nonce: 'EthereumTypesHashH64'
2872 },3025 },
2873 /**3026 /**
2874 * Lookup383: ethereum_types::hash::H643027 * Lookup410: ethereum_types::hash::H64
2875 **/3028 **/
2876 EthereumTypesHashH64: '[u8;8]',3029 EthereumTypesHashH64: '[u8;8]',
2877 /**3030 /**
2878 * Lookup388: pallet_ethereum::pallet::Error<T>3031 * Lookup415: pallet_ethereum::pallet::Error<T>
2879 **/3032 **/
2880 PalletEthereumError: {3033 PalletEthereumError: {
2881 _enum: ['InvalidSignature', 'PreLogExists']3034 _enum: ['InvalidSignature', 'PreLogExists']
2882 },3035 },
2883 /**3036 /**
2884 * Lookup389: pallet_evm_coder_substrate::pallet::Error<T>3037 * Lookup416: pallet_evm_coder_substrate::pallet::Error<T>
2885 **/3038 **/
2886 PalletEvmCoderSubstrateError: {3039 PalletEvmCoderSubstrateError: {
2887 _enum: ['OutOfGas', 'OutOfFund']3040 _enum: ['OutOfGas', 'OutOfFund']
2888 },3041 },
2889 /**3042 /**
2890 * Lookup390: pallet_evm_contract_helpers::SponsoringModeT3043 * Lookup417: pallet_evm_contract_helpers::SponsoringModeT
2891 **/3044 **/
2892 PalletEvmContractHelpersSponsoringModeT: {3045 PalletEvmContractHelpersSponsoringModeT: {
2893 _enum: ['Disabled', 'Allowlisted', 'Generous']3046 _enum: ['Disabled', 'Allowlisted', 'Generous']
2894 },3047 },
2895 /**3048 /**
2896 * Lookup392: pallet_evm_contract_helpers::pallet::Error<T>3049 * Lookup419: pallet_evm_contract_helpers::pallet::Error<T>
2897 **/3050 **/
2898 PalletEvmContractHelpersError: {3051 PalletEvmContractHelpersError: {
2899 _enum: ['NoPermission']3052 _enum: ['NoPermission']
2900 },3053 },
2901 /**3054 /**
2902 * Lookup393: pallet_evm_migration::pallet::Error<T>3055 * Lookup420: pallet_evm_migration::pallet::Error<T>
2903 **/3056 **/
2904 PalletEvmMigrationError: {3057 PalletEvmMigrationError: {
2905 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3058 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
2906 },3059 },
2907 /**3060 /**
2908 * Lookup395: sp_runtime::MultiSignature3061 * Lookup422: sp_runtime::MultiSignature
2909 **/3062 **/
2910 SpRuntimeMultiSignature: {3063 SpRuntimeMultiSignature: {
2911 _enum: {3064 _enum: {
2912 Ed25519: 'SpCoreEd25519Signature',3065 Ed25519: 'SpCoreEd25519Signature',
2913 Sr25519: 'SpCoreSr25519Signature',3066 Sr25519: 'SpCoreSr25519Signature',
2914 Ecdsa: 'SpCoreEcdsaSignature'3067 Ecdsa: 'SpCoreEcdsaSignature'
2915 }3068 }
2916 },3069 },
2917 /**3070 /**
2918 * Lookup396: sp_core::ed25519::Signature3071 * Lookup423: sp_core::ed25519::Signature
2919 **/3072 **/
2920 SpCoreEd25519Signature: '[u8;64]',3073 SpCoreEd25519Signature: '[u8;64]',
2921 /**3074 /**
2922 * Lookup398: sp_core::sr25519::Signature3075 * Lookup425: sp_core::sr25519::Signature
2923 **/3076 **/
2924 SpCoreSr25519Signature: '[u8;64]',3077 SpCoreSr25519Signature: '[u8;64]',
2925 /**3078 /**
2926 * Lookup399: sp_core::ecdsa::Signature3079 * Lookup426: sp_core::ecdsa::Signature
2927 **/3080 **/
2928 SpCoreEcdsaSignature: '[u8;65]',3081 SpCoreEcdsaSignature: '[u8;65]',
2929 /**3082 /**
2930 * Lookup402: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3083 * Lookup429: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
2931 **/3084 **/
2932 FrameSystemExtensionsCheckSpecVersion: 'Null',3085 FrameSystemExtensionsCheckSpecVersion: 'Null',
2933 /**3086 /**
2934 * Lookup403: frame_system::extensions::check_genesis::CheckGenesis<T>3087 * Lookup430: frame_system::extensions::check_genesis::CheckGenesis<T>
2935 **/3088 **/
2936 FrameSystemExtensionsCheckGenesis: 'Null',3089 FrameSystemExtensionsCheckGenesis: 'Null',
2937 /**3090 /**
2938 * Lookup406: frame_system::extensions::check_nonce::CheckNonce<T>3091 * Lookup433: frame_system::extensions::check_nonce::CheckNonce<T>
2939 **/3092 **/
2940 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3093 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
2941 /**3094 /**
2942 * Lookup407: frame_system::extensions::check_weight::CheckWeight<T>3095 * Lookup434: frame_system::extensions::check_weight::CheckWeight<T>
2943 **/3096 **/
2944 FrameSystemExtensionsCheckWeight: 'Null',3097 FrameSystemExtensionsCheckWeight: 'Null',
2945 /**3098 /**
2946 * Lookup408: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3099 * Lookup435: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
2947 **/3100 **/
2948 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3101 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
2949 /**3102 /**
2950 * Lookup409: opal_runtime::Runtime3103 * Lookup436: opal_runtime::Runtime
2951 **/3104 **/
2952 OpalRuntimeRuntime: 'Null',3105 OpalRuntimeRuntime: 'Null',
2953 /**3106 /**
2954 * Lookup410: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3107 * Lookup437: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
2955 **/3108 **/
2956 PalletEthereumFakeTransactionFinalizer: 'Null'3109 PalletEthereumFakeTransactionFinalizer: 'Null'
2957};3110};
29583111
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4import 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, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';4import 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, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUnqSchedulerCall, PalletUnqSchedulerError, PalletUnqSchedulerEvent, PalletUnqSchedulerScheduledV3, 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, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
55
6declare module '@polkadot/types/types/registry' {6declare module '@polkadot/types/types/registry' {
7 export interface InterfaceTypes {7 export interface InterfaceTypes {
17 CumulusPalletXcmCall: CumulusPalletXcmCall;17 CumulusPalletXcmCall: CumulusPalletXcmCall;
18 CumulusPalletXcmError: CumulusPalletXcmError;18 CumulusPalletXcmError: CumulusPalletXcmError;
19 CumulusPalletXcmEvent: CumulusPalletXcmEvent;19 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
20 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
20 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;21 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
21 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;22 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
22 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;23 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
46 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;47 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;
47 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;48 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
48 FpRpcTransactionStatus: FpRpcTransactionStatus;49 FpRpcTransactionStatus: FpRpcTransactionStatus;
50 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
49 FrameSupportPalletId: FrameSupportPalletId;51 FrameSupportPalletId: FrameSupportPalletId;
52 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
53 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
50 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;54 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
51 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;55 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
52 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;56 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
70 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;74 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
71 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;75 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
72 FrameSystemPhase: FrameSystemPhase;76 FrameSystemPhase: FrameSystemPhase;
77 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
73 OpalRuntimeRuntime: OpalRuntimeRuntime;78 OpalRuntimeRuntime: OpalRuntimeRuntime;
74 OrmlVestingModuleCall: OrmlVestingModuleCall;79 OrmlVestingModuleCall: OrmlVestingModuleCall;
75 OrmlVestingModuleError: OrmlVestingModuleError;80 OrmlVestingModuleError: OrmlVestingModuleError;
89 PalletEthereumError: PalletEthereumError;94 PalletEthereumError: PalletEthereumError;
90 PalletEthereumEvent: PalletEthereumEvent;95 PalletEthereumEvent: PalletEthereumEvent;
91 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;96 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
97 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
92 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;98 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
93 PalletEvmCall: PalletEvmCall;99 PalletEvmCall: PalletEvmCall;
94 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;100 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
127 PalletUniqueCall: PalletUniqueCall;133 PalletUniqueCall: PalletUniqueCall;
128 PalletUniqueError: PalletUniqueError;134 PalletUniqueError: PalletUniqueError;
129 PalletUniqueRawEvent: PalletUniqueRawEvent;135 PalletUniqueRawEvent: PalletUniqueRawEvent;
136 PalletUnqSchedulerCall: PalletUnqSchedulerCall;
137 PalletUnqSchedulerError: PalletUnqSchedulerError;
138 PalletUnqSchedulerEvent: PalletUnqSchedulerEvent;
139 PalletUnqSchedulerScheduledV3: PalletUnqSchedulerScheduledV3;
130 PalletXcmCall: PalletXcmCall;140 PalletXcmCall: PalletXcmCall;
131 PalletXcmError: PalletXcmError;141 PalletXcmError: PalletXcmError;
132 PalletXcmEvent: PalletXcmEvent;142 PalletXcmEvent: PalletXcmEvent;
143 PalletXcmOrigin: PalletXcmOrigin;
133 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;144 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
134 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;145 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
135 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;146 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
160 SpCoreEcdsaSignature: SpCoreEcdsaSignature;171 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
161 SpCoreEd25519Signature: SpCoreEd25519Signature;172 SpCoreEd25519Signature: SpCoreEd25519Signature;
162 SpCoreSr25519Signature: SpCoreSr25519Signature;173 SpCoreSr25519Signature: SpCoreSr25519Signature;
174 SpCoreVoid: SpCoreVoid;
163 SpRuntimeArithmeticError: SpRuntimeArithmeticError;175 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
164 SpRuntimeDigest: SpRuntimeDigest;176 SpRuntimeDigest: SpRuntimeDigest;
165 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;177 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
161 readonly amount: u128;161 readonly amount: u128;
162 }162 }
163163
164 /** @name PalletBalancesReleases (50) */164 /** @name PalletBalancesReleases (51) */
165 export interface PalletBalancesReleases extends Enum {165 export interface PalletBalancesReleases extends Enum {
166 readonly isV100: boolean;166 readonly isV100: boolean;
167 readonly isV200: boolean;167 readonly isV200: boolean;
168 readonly type: 'V100' | 'V200';168 readonly type: 'V100' | 'V200';
169 }169 }
170170
171 /** @name PalletBalancesCall (51) */171 /** @name PalletBalancesCall (52) */
172 export interface PalletBalancesCall extends Enum {172 export interface PalletBalancesCall extends Enum {
173 readonly isTransfer: boolean;173 readonly isTransfer: boolean;
174 readonly asTransfer: {174 readonly asTransfer: {
205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
206 }206 }
207207
208 /** @name PalletBalancesEvent (57) */208 /** @name PalletBalancesEvent (58) */
209 export interface PalletBalancesEvent extends Enum {209 export interface PalletBalancesEvent extends Enum {
210 readonly isEndowed: boolean;210 readonly isEndowed: boolean;
211 readonly asEndowed: {211 readonly asEndowed: {
264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
265 }265 }
266266
267 /** @name FrameSupportTokensMiscBalanceStatus (58) */267 /** @name FrameSupportTokensMiscBalanceStatus (59) */
268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {
269 readonly isFree: boolean;269 readonly isFree: boolean;
270 readonly isReserved: boolean;270 readonly isReserved: boolean;
271 readonly type: 'Free' | 'Reserved';271 readonly type: 'Free' | 'Reserved';
272 }272 }
273273
274 /** @name PalletBalancesError (59) */274 /** @name PalletBalancesError (60) */
275 export interface PalletBalancesError extends Enum {275 export interface PalletBalancesError extends Enum {
276 readonly isVestingBalance: boolean;276 readonly isVestingBalance: boolean;
277 readonly isLiquidityRestrictions: boolean;277 readonly isLiquidityRestrictions: boolean;
284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
285 }285 }
286286
287 /** @name PalletTimestampCall (62) */287 /** @name PalletTimestampCall (63) */
288 export interface PalletTimestampCall extends Enum {288 export interface PalletTimestampCall extends Enum {
289 readonly isSet: boolean;289 readonly isSet: boolean;
290 readonly asSet: {290 readonly asSet: {
293 readonly type: 'Set';293 readonly type: 'Set';
294 }294 }
295295
296 /** @name PalletTransactionPaymentReleases (65) */296 /** @name PalletTransactionPaymentReleases (66) */
297 export interface PalletTransactionPaymentReleases extends Enum {297 export interface PalletTransactionPaymentReleases extends Enum {
298 readonly isV1Ancient: boolean;298 readonly isV1Ancient: boolean;
299 readonly isV2: boolean;299 readonly isV2: boolean;
300 readonly type: 'V1Ancient' | 'V2';300 readonly type: 'V1Ancient' | 'V2';
301 }301 }
302302
303 /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */303 /** @name FrameSupportWeightsWeightToFeeCoefficient (68) */
304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {
305 readonly coeffInteger: u128;305 readonly coeffInteger: u128;
306 readonly coeffFrac: Perbill;306 readonly coeffFrac: Perbill;
307 readonly negative: bool;307 readonly negative: bool;
308 readonly degree: u8;308 readonly degree: u8;
309 }309 }
310310
311 /** @name PalletTreasuryProposal (69) */311 /** @name PalletTreasuryProposal (70) */
312 export interface PalletTreasuryProposal extends Struct {312 export interface PalletTreasuryProposal extends Struct {
313 readonly proposer: AccountId32;313 readonly proposer: AccountId32;
314 readonly value: u128;314 readonly value: u128;
315 readonly beneficiary: AccountId32;315 readonly beneficiary: AccountId32;
316 readonly bond: u128;316 readonly bond: u128;
317 }317 }
318318
319 /** @name PalletTreasuryCall (72) */319 /** @name PalletTreasuryCall (73) */
320 export interface PalletTreasuryCall extends Enum {320 export interface PalletTreasuryCall extends Enum {
321 readonly isProposeSpend: boolean;321 readonly isProposeSpend: boolean;
322 readonly asProposeSpend: {322 readonly asProposeSpend: {
331 readonly asApproveProposal: {331 readonly asApproveProposal: {
332 readonly proposalId: Compact<u32>;332 readonly proposalId: Compact<u32>;
333 } & Struct;333 } & Struct;
334 readonly isRemoveApproval: boolean;
335 readonly asRemoveApproval: {
336 readonly proposalId: Compact<u32>;
337 } & Struct;
334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';338 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';
335 }339 }
336340
337 /** @name PalletTreasuryEvent (74) */341 /** @name PalletTreasuryEvent (75) */
338 export interface PalletTreasuryEvent extends Enum {342 export interface PalletTreasuryEvent extends Enum {
339 readonly isProposed: boolean;343 readonly isProposed: boolean;
340 readonly asProposed: {344 readonly asProposed: {
370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';374 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';
371 }375 }
372376
373 /** @name FrameSupportPalletId (77) */377 /** @name FrameSupportPalletId (78) */
374 export interface FrameSupportPalletId extends U8aFixed {}378 export interface FrameSupportPalletId extends U8aFixed {}
375379
376 /** @name PalletTreasuryError (78) */380 /** @name PalletTreasuryError (79) */
377 export interface PalletTreasuryError extends Enum {381 export interface PalletTreasuryError extends Enum {
378 readonly isInsufficientProposersBalance: boolean;382 readonly isInsufficientProposersBalance: boolean;
379 readonly isInvalidIndex: boolean;383 readonly isInvalidIndex: boolean;
380 readonly isTooManyApprovals: boolean;384 readonly isTooManyApprovals: boolean;
385 readonly isProposalNotApproved: boolean;
381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';386 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';
382 }387 }
383388
384 /** @name PalletSudoCall (79) */389 /** @name PalletSudoCall (80) */
385 export interface PalletSudoCall extends Enum {390 export interface PalletSudoCall extends Enum {
386 readonly isSudo: boolean;391 readonly isSudo: boolean;
387 readonly asSudo: {392 readonly asSudo: {
404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';409 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
405 }410 }
406411
407 /** @name FrameSystemCall (81) */412 /** @name FrameSystemCall (82) */
408 export interface FrameSystemCall extends Enum {413 export interface FrameSystemCall extends Enum {
409 readonly isFillBlock: boolean;414 readonly isFillBlock: boolean;
410 readonly asFillBlock: {415 readonly asFillBlock: {
446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';451 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
447 }452 }
448453
449 /** @name OrmlVestingModuleCall (84) */454 /** @name OrmlVestingModuleCall (85) */
450 export interface OrmlVestingModuleCall extends Enum {455 export interface OrmlVestingModuleCall extends Enum {
451 readonly isClaim: boolean;456 readonly isClaim: boolean;
452 readonly isVestedTransfer: boolean;457 readonly isVestedTransfer: boolean;
466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';471 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
467 }472 }
468473
469 /** @name OrmlVestingVestingSchedule (85) */474 /** @name OrmlVestingVestingSchedule (86) */
470 export interface OrmlVestingVestingSchedule extends Struct {475 export interface OrmlVestingVestingSchedule extends Struct {
471 readonly start: u32;476 readonly start: u32;
472 readonly period: u32;477 readonly period: u32;
473 readonly periodCount: u32;478 readonly periodCount: u32;
474 readonly perPeriod: Compact<u128>;479 readonly perPeriod: Compact<u128>;
475 }480 }
476481
477 /** @name CumulusPalletXcmpQueueCall (87) */482 /** @name CumulusPalletXcmpQueueCall (88) */
478 export interface CumulusPalletXcmpQueueCall extends Enum {483 export interface CumulusPalletXcmpQueueCall extends Enum {
479 readonly isServiceOverweight: boolean;484 readonly isServiceOverweight: boolean;
480 readonly asServiceOverweight: {485 readonly asServiceOverweight: {
510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';515 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
511 }516 }
512517
513 /** @name PalletXcmCall (88) */518 /** @name PalletXcmCall (89) */
514 export interface PalletXcmCall extends Enum {519 export interface PalletXcmCall extends Enum {
515 readonly isSend: boolean;520 readonly isSend: boolean;
516 readonly asSend: {521 readonly asSend: {
572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';577 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
573 }578 }
574579
575 /** @name XcmVersionedMultiLocation (89) */580 /** @name XcmVersionedMultiLocation (90) */
576 export interface XcmVersionedMultiLocation extends Enum {581 export interface XcmVersionedMultiLocation extends Enum {
577 readonly isV0: boolean;582 readonly isV0: boolean;
578 readonly asV0: XcmV0MultiLocation;583 readonly asV0: XcmV0MultiLocation;
581 readonly type: 'V0' | 'V1';586 readonly type: 'V0' | 'V1';
582 }587 }
583588
584 /** @name XcmV0MultiLocation (90) */589 /** @name XcmV0MultiLocation (91) */
585 export interface XcmV0MultiLocation extends Enum {590 export interface XcmV0MultiLocation extends Enum {
586 readonly isNull: boolean;591 readonly isNull: boolean;
587 readonly isX1: boolean;592 readonly isX1: boolean;
603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';608 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
604 }609 }
605610
606 /** @name XcmV0Junction (91) */611 /** @name XcmV0Junction (92) */
607 export interface XcmV0Junction extends Enum {612 export interface XcmV0Junction extends Enum {
608 readonly isParent: boolean;613 readonly isParent: boolean;
609 readonly isParachain: boolean;614 readonly isParachain: boolean;
638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';643 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
639 }644 }
640645
641 /** @name XcmV0JunctionNetworkId (92) */646 /** @name XcmV0JunctionNetworkId (93) */
642 export interface XcmV0JunctionNetworkId extends Enum {647 export interface XcmV0JunctionNetworkId extends Enum {
643 readonly isAny: boolean;648 readonly isAny: boolean;
644 readonly isNamed: boolean;649 readonly isNamed: boolean;
648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';653 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
649 }654 }
650655
651 /** @name XcmV0JunctionBodyId (93) */656 /** @name XcmV0JunctionBodyId (94) */
652 export interface XcmV0JunctionBodyId extends Enum {657 export interface XcmV0JunctionBodyId extends Enum {
653 readonly isUnit: boolean;658 readonly isUnit: boolean;
654 readonly isNamed: boolean;659 readonly isNamed: boolean;
662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';667 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
663 }668 }
664669
665 /** @name XcmV0JunctionBodyPart (94) */670 /** @name XcmV0JunctionBodyPart (95) */
666 export interface XcmV0JunctionBodyPart extends Enum {671 export interface XcmV0JunctionBodyPart extends Enum {
667 readonly isVoice: boolean;672 readonly isVoice: boolean;
668 readonly isMembers: boolean;673 readonly isMembers: boolean;
687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';692 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
688 }693 }
689694
690 /** @name XcmV1MultiLocation (95) */695 /** @name XcmV1MultiLocation (96) */
691 export interface XcmV1MultiLocation extends Struct {696 export interface XcmV1MultiLocation extends Struct {
692 readonly parents: u8;697 readonly parents: u8;
693 readonly interior: XcmV1MultilocationJunctions;698 readonly interior: XcmV1MultilocationJunctions;
694 }699 }
695700
696 /** @name XcmV1MultilocationJunctions (96) */701 /** @name XcmV1MultilocationJunctions (97) */
697 export interface XcmV1MultilocationJunctions extends Enum {702 export interface XcmV1MultilocationJunctions extends Enum {
698 readonly isHere: boolean;703 readonly isHere: boolean;
699 readonly isX1: boolean;704 readonly isX1: boolean;
715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';720 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
716 }721 }
717722
718 /** @name XcmV1Junction (97) */723 /** @name XcmV1Junction (98) */
719 export interface XcmV1Junction extends Enum {724 export interface XcmV1Junction extends Enum {
720 readonly isParachain: boolean;725 readonly isParachain: boolean;
721 readonly asParachain: Compact<u32>;726 readonly asParachain: Compact<u32>;
749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';754 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
750 }755 }
751756
752 /** @name XcmVersionedXcm (98) */757 /** @name XcmVersionedXcm (99) */
753 export interface XcmVersionedXcm extends Enum {758 export interface XcmVersionedXcm extends Enum {
754 readonly isV0: boolean;759 readonly isV0: boolean;
755 readonly asV0: XcmV0Xcm;760 readonly asV0: XcmV0Xcm;
760 readonly type: 'V0' | 'V1' | 'V2';765 readonly type: 'V0' | 'V1' | 'V2';
761 }766 }
762767
763 /** @name XcmV0Xcm (99) */768 /** @name XcmV0Xcm (100) */
764 export interface XcmV0Xcm extends Enum {769 export interface XcmV0Xcm extends Enum {
765 readonly isWithdrawAsset: boolean;770 readonly isWithdrawAsset: boolean;
766 readonly asWithdrawAsset: {771 readonly asWithdrawAsset: {
823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';828 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
824 }829 }
825830
826 /** @name XcmV0MultiAsset (101) */831 /** @name XcmV0MultiAsset (102) */
827 export interface XcmV0MultiAsset extends Enum {832 export interface XcmV0MultiAsset extends Enum {
828 readonly isNone: boolean;833 readonly isNone: boolean;
829 readonly isAll: boolean;834 readonly isAll: boolean;
868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';873 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
869 }874 }
870875
871 /** @name XcmV1MultiassetAssetInstance (102) */876 /** @name XcmV1MultiassetAssetInstance (103) */
872 export interface XcmV1MultiassetAssetInstance extends Enum {877 export interface XcmV1MultiassetAssetInstance extends Enum {
873 readonly isUndefined: boolean;878 readonly isUndefined: boolean;
874 readonly isIndex: boolean;879 readonly isIndex: boolean;
1643 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1648 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
1644 }1649 }
1650
1651 /** @name PalletUnqSchedulerCall (204) */
1652 export interface PalletUnqSchedulerCall extends Enum {
1653 readonly isScheduleNamed: boolean;
1654 readonly asScheduleNamed: {
1655 readonly id: U8aFixed;
1656 readonly when: u32;
1657 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
1658 readonly priority: u8;
1659 readonly call: FrameSupportScheduleMaybeHashed;
1660 } & Struct;
1661 readonly isCancelNamed: boolean;
1662 readonly asCancelNamed: {
1663 readonly id: U8aFixed;
1664 } & Struct;
1665 readonly isScheduleNamedAfter: boolean;
1666 readonly asScheduleNamedAfter: {
1667 readonly id: U8aFixed;
1668 readonly after: u32;
1669 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
1670 readonly priority: u8;
1671 readonly call: FrameSupportScheduleMaybeHashed;
1672 } & Struct;
1673 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
1674 }
1675
1676 /** @name FrameSupportScheduleMaybeHashed (206) */
1677 export interface FrameSupportScheduleMaybeHashed extends Enum {
1678 readonly isValue: boolean;
1679 readonly asValue: Call;
1680 readonly isHash: boolean;
1681 readonly asHash: H256;
1682 readonly type: 'Value' | 'Hash';
1683 }
16451684
1646 /** @name PalletTemplateTransactionPaymentCall (204) */1685 /** @name PalletTemplateTransactionPaymentCall (207) */
1647 export type PalletTemplateTransactionPaymentCall = Null;1686 export type PalletTemplateTransactionPaymentCall = Null;
16481687
1649 /** @name PalletStructureCall (205) */1688 /** @name PalletStructureCall (208) */
1650 export type PalletStructureCall = Null;1689 export type PalletStructureCall = Null;
16511690
1652 /** @name PalletRmrkCoreCall (206) */1691 /** @name PalletRmrkCoreCall (209) */
1653 export interface PalletRmrkCoreCall extends Enum {1692 export interface PalletRmrkCoreCall extends Enum {
1654 readonly isCreateCollection: boolean;1693 readonly isCreateCollection: boolean;
1655 readonly asCreateCollection: {1694 readonly asCreateCollection: {
1754 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1793 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
1755 }1794 }
17561795
1757 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (210) */1796 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (213) */
1758 export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1797 export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
1759 readonly isAccountId: boolean;1798 readonly isAccountId: boolean;
1760 readonly asAccountId: AccountId32;1799 readonly asAccountId: AccountId32;
1763 readonly type: 'AccountId' | 'CollectionAndNftTuple';1802 readonly type: 'AccountId' | 'CollectionAndNftTuple';
1764 }1803 }
17651804
1766 /** @name RmrkTraitsResourceBasicResource (214) */1805 /** @name RmrkTraitsResourceBasicResource (217) */
1767 export interface RmrkTraitsResourceBasicResource extends Struct {1806 export interface RmrkTraitsResourceBasicResource extends Struct {
1768 readonly src: Option<Bytes>;1807 readonly src: Option<Bytes>;
1769 readonly metadata: Option<Bytes>;1808 readonly metadata: Option<Bytes>;
1770 readonly license: Option<Bytes>;1809 readonly license: Option<Bytes>;
1771 readonly thumb: Option<Bytes>;1810 readonly thumb: Option<Bytes>;
1772 }1811 }
17731812
1774 /** @name RmrkTraitsResourceComposableResource (217) */1813 /** @name RmrkTraitsResourceComposableResource (220) */
1775 export interface RmrkTraitsResourceComposableResource extends Struct {1814 export interface RmrkTraitsResourceComposableResource extends Struct {
1776 readonly parts: Vec<u32>;1815 readonly parts: Vec<u32>;
1777 readonly base: u32;1816 readonly base: u32;
1781 readonly thumb: Option<Bytes>;1820 readonly thumb: Option<Bytes>;
1782 }1821 }
17831822
1784 /** @name RmrkTraitsResourceSlotResource (219) */1823 /** @name RmrkTraitsResourceSlotResource (222) */
1785 export interface RmrkTraitsResourceSlotResource extends Struct {1824 export interface RmrkTraitsResourceSlotResource extends Struct {
1786 readonly base: u32;1825 readonly base: u32;
1787 readonly src: Option<Bytes>;1826 readonly src: Option<Bytes>;
1791 readonly thumb: Option<Bytes>;1830 readonly thumb: Option<Bytes>;
1792 }1831 }
17931832
1794 /** @name PalletRmrkEquipCall (220) */1833 /** @name PalletRmrkEquipCall (223) */
1795 export interface PalletRmrkEquipCall extends Enum {1834 export interface PalletRmrkEquipCall extends Enum {
1796 readonly isCreateBase: boolean;1835 readonly isCreateBase: boolean;
1797 readonly asCreateBase: {1836 readonly asCreateBase: {
1807 readonly type: 'CreateBase' | 'ThemeAdd';1846 readonly type: 'CreateBase' | 'ThemeAdd';
1808 }1847 }
18091848
1810 /** @name RmrkTraitsPartPartType (222) */1849 /** @name RmrkTraitsPartPartType (225) */
1811 export interface RmrkTraitsPartPartType extends Enum {1850 export interface RmrkTraitsPartPartType extends Enum {
1812 readonly isFixedPart: boolean;1851 readonly isFixedPart: boolean;
1813 readonly asFixedPart: RmrkTraitsPartFixedPart;1852 readonly asFixedPart: RmrkTraitsPartFixedPart;
1816 readonly type: 'FixedPart' | 'SlotPart';1855 readonly type: 'FixedPart' | 'SlotPart';
1817 }1856 }
18181857
1819 /** @name RmrkTraitsPartFixedPart (224) */1858 /** @name RmrkTraitsPartFixedPart (227) */
1820 export interface RmrkTraitsPartFixedPart extends Struct {1859 export interface RmrkTraitsPartFixedPart extends Struct {
1821 readonly id: u32;1860 readonly id: u32;
1822 readonly z: u32;1861 readonly z: u32;
1823 readonly src: Bytes;1862 readonly src: Bytes;
1824 }1863 }
18251864
1826 /** @name RmrkTraitsPartSlotPart (225) */1865 /** @name RmrkTraitsPartSlotPart (228) */
1827 export interface RmrkTraitsPartSlotPart extends Struct {1866 export interface RmrkTraitsPartSlotPart extends Struct {
1828 readonly id: u32;1867 readonly id: u32;
1829 readonly equippable: RmrkTraitsPartEquippableList;1868 readonly equippable: RmrkTraitsPartEquippableList;
1830 readonly src: Bytes;1869 readonly src: Bytes;
1831 readonly z: u32;1870 readonly z: u32;
1832 }1871 }
18331872
1834 /** @name RmrkTraitsPartEquippableList (226) */1873 /** @name RmrkTraitsPartEquippableList (229) */
1835 export interface RmrkTraitsPartEquippableList extends Enum {1874 export interface RmrkTraitsPartEquippableList extends Enum {
1836 readonly isAll: boolean;1875 readonly isAll: boolean;
1837 readonly isEmpty: boolean;1876 readonly isEmpty: boolean;
1840 readonly type: 'All' | 'Empty' | 'Custom';1879 readonly type: 'All' | 'Empty' | 'Custom';
1841 }1880 }
18421881
1843 /** @name RmrkTraitsTheme (228) */1882 /** @name RmrkTraitsTheme (231) */
1844 export interface RmrkTraitsTheme extends Struct {1883 export interface RmrkTraitsTheme extends Struct {
1845 readonly name: Bytes;1884 readonly name: Bytes;
1846 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;1885 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
1847 readonly inherit: bool;1886 readonly inherit: bool;
1848 }1887 }
18491888
1850 /** @name RmrkTraitsThemeThemeProperty (230) */1889 /** @name RmrkTraitsThemeThemeProperty (233) */
1851 export interface RmrkTraitsThemeThemeProperty extends Struct {1890 export interface RmrkTraitsThemeThemeProperty extends Struct {
1852 readonly key: Bytes;1891 readonly key: Bytes;
1853 readonly value: Bytes;1892 readonly value: Bytes;
1854 }1893 }
18551894
1856 /** @name PalletEvmCall (231) */1895 /** @name PalletEvmCall (234) */
1857 export interface PalletEvmCall extends Enum {1896 export interface PalletEvmCall extends Enum {
1858 readonly isWithdraw: boolean;1897 readonly isWithdraw: boolean;
1859 readonly asWithdraw: {1898 readonly asWithdraw: {
1898 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1937 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
1899 }1938 }
19001939
1901 /** @name PalletEthereumCall (237) */1940 /** @name PalletEthereumCall (240) */
1902 export interface PalletEthereumCall extends Enum {1941 export interface PalletEthereumCall extends Enum {
1903 readonly isTransact: boolean;1942 readonly isTransact: boolean;
1904 readonly asTransact: {1943 readonly asTransact: {
1907 readonly type: 'Transact';1946 readonly type: 'Transact';
1908 }1947 }
19091948
1910 /** @name EthereumTransactionTransactionV2 (238) */1949 /** @name EthereumTransactionTransactionV2 (241) */
1911 export interface EthereumTransactionTransactionV2 extends Enum {1950 export interface EthereumTransactionTransactionV2 extends Enum {
1912 readonly isLegacy: boolean;1951 readonly isLegacy: boolean;
1913 readonly asLegacy: EthereumTransactionLegacyTransaction;1952 readonly asLegacy: EthereumTransactionLegacyTransaction;
1918 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1957 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
1919 }1958 }
19201959
1921 /** @name EthereumTransactionLegacyTransaction (239) */1960 /** @name EthereumTransactionLegacyTransaction (242) */
1922 export interface EthereumTransactionLegacyTransaction extends Struct {1961 export interface EthereumTransactionLegacyTransaction extends Struct {
1923 readonly nonce: U256;1962 readonly nonce: U256;
1924 readonly gasPrice: U256;1963 readonly gasPrice: U256;
1929 readonly signature: EthereumTransactionTransactionSignature;1968 readonly signature: EthereumTransactionTransactionSignature;
1930 }1969 }
19311970
1932 /** @name EthereumTransactionTransactionAction (240) */1971 /** @name EthereumTransactionTransactionAction (243) */
1933 export interface EthereumTransactionTransactionAction extends Enum {1972 export interface EthereumTransactionTransactionAction extends Enum {
1934 readonly isCall: boolean;1973 readonly isCall: boolean;
1935 readonly asCall: H160;1974 readonly asCall: H160;
1936 readonly isCreate: boolean;1975 readonly isCreate: boolean;
1937 readonly type: 'Call' | 'Create';1976 readonly type: 'Call' | 'Create';
1938 }1977 }
19391978
1940 /** @name EthereumTransactionTransactionSignature (241) */1979 /** @name EthereumTransactionTransactionSignature (244) */
1941 export interface EthereumTransactionTransactionSignature extends Struct {1980 export interface EthereumTransactionTransactionSignature extends Struct {
1942 readonly v: u64;1981 readonly v: u64;
1943 readonly r: H256;1982 readonly r: H256;
1944 readonly s: H256;1983 readonly s: H256;
1945 }1984 }
19461985
1947 /** @name EthereumTransactionEip2930Transaction (243) */1986 /** @name EthereumTransactionEip2930Transaction (246) */
1948 export interface EthereumTransactionEip2930Transaction extends Struct {1987 export interface EthereumTransactionEip2930Transaction extends Struct {
1949 readonly chainId: u64;1988 readonly chainId: u64;
1950 readonly nonce: U256;1989 readonly nonce: U256;
1959 readonly s: H256;1998 readonly s: H256;
1960 }1999 }
19612000
1962 /** @name EthereumTransactionAccessListItem (245) */2001 /** @name EthereumTransactionAccessListItem (248) */
1963 export interface EthereumTransactionAccessListItem extends Struct {2002 export interface EthereumTransactionAccessListItem extends Struct {
1964 readonly address: H160;2003 readonly address: H160;
1965 readonly storageKeys: Vec<H256>;2004 readonly storageKeys: Vec<H256>;
1966 }2005 }
19672006
1968 /** @name EthereumTransactionEip1559Transaction (246) */2007 /** @name EthereumTransactionEip1559Transaction (249) */
1969 export interface EthereumTransactionEip1559Transaction extends Struct {2008 export interface EthereumTransactionEip1559Transaction extends Struct {
1970 readonly chainId: u64;2009 readonly chainId: u64;
1971 readonly nonce: U256;2010 readonly nonce: U256;
1981 readonly s: H256;2020 readonly s: H256;
1982 }2021 }
19832022
1984 /** @name PalletEvmMigrationCall (247) */2023 /** @name PalletEvmMigrationCall (250) */
1985 export interface PalletEvmMigrationCall extends Enum {2024 export interface PalletEvmMigrationCall extends Enum {
1986 readonly isBegin: boolean;2025 readonly isBegin: boolean;
1987 readonly asBegin: {2026 readonly asBegin: {
2000 readonly type: 'Begin' | 'SetData' | 'Finish';2039 readonly type: 'Begin' | 'SetData' | 'Finish';
2001 }2040 }
20022041
2003 /** @name PalletSudoEvent (250) */2042 /** @name PalletSudoEvent (253) */
2004 export interface PalletSudoEvent extends Enum {2043 export interface PalletSudoEvent extends Enum {
2005 readonly isSudid: boolean;2044 readonly isSudid: boolean;
2006 readonly asSudid: {2045 readonly asSudid: {
2017 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2056 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
2018 }2057 }
20192058
2020 /** @name SpRuntimeDispatchError (252) */2059 /** @name SpRuntimeDispatchError (255) */
2021 export interface SpRuntimeDispatchError extends Enum {2060 export interface SpRuntimeDispatchError extends Enum {
2022 readonly isOther: boolean;2061 readonly isOther: boolean;
2023 readonly isCannotLookup: boolean;2062 readonly isCannotLookup: boolean;
2036 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2075 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
2037 }2076 }
20382077
2039 /** @name SpRuntimeModuleError (253) */2078 /** @name SpRuntimeModuleError (256) */
2040 export interface SpRuntimeModuleError extends Struct {2079 export interface SpRuntimeModuleError extends Struct {
2041 readonly index: u8;2080 readonly index: u8;
2042 readonly error: U8aFixed;2081 readonly error: U8aFixed;
2043 }2082 }
20442083
2045 /** @name SpRuntimeTokenError (254) */2084 /** @name SpRuntimeTokenError (257) */
2046 export interface SpRuntimeTokenError extends Enum {2085 export interface SpRuntimeTokenError extends Enum {
2047 readonly isNoFunds: boolean;2086 readonly isNoFunds: boolean;
2048 readonly isWouldDie: boolean;2087 readonly isWouldDie: boolean;
2054 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2093 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
2055 }2094 }
20562095
2057 /** @name SpRuntimeArithmeticError (255) */2096 /** @name SpRuntimeArithmeticError (258) */
2058 export interface SpRuntimeArithmeticError extends Enum {2097 export interface SpRuntimeArithmeticError extends Enum {
2059 readonly isUnderflow: boolean;2098 readonly isUnderflow: boolean;
2060 readonly isOverflow: boolean;2099 readonly isOverflow: boolean;
2061 readonly isDivisionByZero: boolean;2100 readonly isDivisionByZero: boolean;
2062 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2101 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
2063 }2102 }
20642103
2065 /** @name SpRuntimeTransactionalError (256) */2104 /** @name SpRuntimeTransactionalError (259) */
2066 export interface SpRuntimeTransactionalError extends Enum {2105 export interface SpRuntimeTransactionalError extends Enum {
2067 readonly isLimitReached: boolean;2106 readonly isLimitReached: boolean;
2068 readonly isNoLayer: boolean;2107 readonly isNoLayer: boolean;
2069 readonly type: 'LimitReached' | 'NoLayer';2108 readonly type: 'LimitReached' | 'NoLayer';
2070 }2109 }
20712110
2072 /** @name PalletSudoError (257) */2111 /** @name PalletSudoError (260) */
2073 export interface PalletSudoError extends Enum {2112 export interface PalletSudoError extends Enum {
2074 readonly isRequireSudo: boolean;2113 readonly isRequireSudo: boolean;
2075 readonly type: 'RequireSudo';2114 readonly type: 'RequireSudo';
2076 }2115 }
20772116
2078 /** @name FrameSystemAccountInfo (258) */2117 /** @name FrameSystemAccountInfo (261) */
2079 export interface FrameSystemAccountInfo extends Struct {2118 export interface FrameSystemAccountInfo extends Struct {
2080 readonly nonce: u32;2119 readonly nonce: u32;
2081 readonly consumers: u32;2120 readonly consumers: u32;
2084 readonly data: PalletBalancesAccountData;2123 readonly data: PalletBalancesAccountData;
2085 }2124 }
20862125
2087 /** @name FrameSupportWeightsPerDispatchClassU64 (259) */2126 /** @name FrameSupportWeightsPerDispatchClassU64 (262) */
2088 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2127 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
2089 readonly normal: u64;2128 readonly normal: u64;
2090 readonly operational: u64;2129 readonly operational: u64;
2091 readonly mandatory: u64;2130 readonly mandatory: u64;
2092 }2131 }
20932132
2094 /** @name SpRuntimeDigest (260) */2133 /** @name SpRuntimeDigest (263) */
2095 export interface SpRuntimeDigest extends Struct {2134 export interface SpRuntimeDigest extends Struct {
2096 readonly logs: Vec<SpRuntimeDigestDigestItem>;2135 readonly logs: Vec<SpRuntimeDigestDigestItem>;
2097 }2136 }
20982137
2099 /** @name SpRuntimeDigestDigestItem (262) */2138 /** @name SpRuntimeDigestDigestItem (265) */
2100 export interface SpRuntimeDigestDigestItem extends Enum {2139 export interface SpRuntimeDigestDigestItem extends Enum {
2101 readonly isOther: boolean;2140 readonly isOther: boolean;
2102 readonly asOther: Bytes;2141 readonly asOther: Bytes;
2110 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2149 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
2111 }2150 }
21122151
2113 /** @name FrameSystemEventRecord (264) */2152 /** @name FrameSystemEventRecord (267) */
2114 export interface FrameSystemEventRecord extends Struct {2153 export interface FrameSystemEventRecord extends Struct {
2115 readonly phase: FrameSystemPhase;2154 readonly phase: FrameSystemPhase;
2116 readonly event: Event;2155 readonly event: Event;
2117 readonly topics: Vec<H256>;2156 readonly topics: Vec<H256>;
2118 }2157 }
21192158
2120 /** @name FrameSystemEvent (266) */2159 /** @name FrameSystemEvent (269) */
2121 export interface FrameSystemEvent extends Enum {2160 export interface FrameSystemEvent extends Enum {
2122 readonly isExtrinsicSuccess: boolean;2161 readonly isExtrinsicSuccess: boolean;
2123 readonly asExtrinsicSuccess: {2162 readonly asExtrinsicSuccess: {
2145 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2184 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
2146 }2185 }
21472186
2148 /** @name FrameSupportWeightsDispatchInfo (267) */2187 /** @name FrameSupportWeightsDispatchInfo (270) */
2149 export interface FrameSupportWeightsDispatchInfo extends Struct {2188 export interface FrameSupportWeightsDispatchInfo extends Struct {
2150 readonly weight: u64;2189 readonly weight: u64;
2151 readonly class: FrameSupportWeightsDispatchClass;2190 readonly class: FrameSupportWeightsDispatchClass;
2152 readonly paysFee: FrameSupportWeightsPays;2191 readonly paysFee: FrameSupportWeightsPays;
2153 }2192 }
21542193
2155 /** @name FrameSupportWeightsDispatchClass (268) */2194 /** @name FrameSupportWeightsDispatchClass (271) */
2156 export interface FrameSupportWeightsDispatchClass extends Enum {2195 export interface FrameSupportWeightsDispatchClass extends Enum {
2157 readonly isNormal: boolean;2196 readonly isNormal: boolean;
2158 readonly isOperational: boolean;2197 readonly isOperational: boolean;
2159 readonly isMandatory: boolean;2198 readonly isMandatory: boolean;
2160 readonly type: 'Normal' | 'Operational' | 'Mandatory';2199 readonly type: 'Normal' | 'Operational' | 'Mandatory';
2161 }2200 }
21622201
2163 /** @name FrameSupportWeightsPays (269) */2202 /** @name FrameSupportWeightsPays (272) */
2164 export interface FrameSupportWeightsPays extends Enum {2203 export interface FrameSupportWeightsPays extends Enum {
2165 readonly isYes: boolean;2204 readonly isYes: boolean;
2166 readonly isNo: boolean;2205 readonly isNo: boolean;
2167 readonly type: 'Yes' | 'No';2206 readonly type: 'Yes' | 'No';
2168 }2207 }
21692208
2170 /** @name OrmlVestingModuleEvent (270) */2209 /** @name OrmlVestingModuleEvent (273) */
2171 export interface OrmlVestingModuleEvent extends Enum {2210 export interface OrmlVestingModuleEvent extends Enum {
2172 readonly isVestingScheduleAdded: boolean;2211 readonly isVestingScheduleAdded: boolean;
2173 readonly asVestingScheduleAdded: {2212 readonly asVestingScheduleAdded: {
2187 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2226 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
2188 }2227 }
21892228
2190 /** @name CumulusPalletXcmpQueueEvent (271) */2229 /** @name CumulusPalletXcmpQueueEvent (274) */
2191 export interface CumulusPalletXcmpQueueEvent extends Enum {2230 export interface CumulusPalletXcmpQueueEvent extends Enum {
2192 readonly isSuccess: boolean;2231 readonly isSuccess: boolean;
2193 readonly asSuccess: Option<H256>;2232 readonly asSuccess: Option<H256>;
2208 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2247 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
2209 }2248 }
22102249
2211 /** @name PalletXcmEvent (272) */2250 /** @name PalletXcmEvent (275) */
2212 export interface PalletXcmEvent extends Enum {2251 export interface PalletXcmEvent extends Enum {
2213 readonly isAttempted: boolean;2252 readonly isAttempted: boolean;
2214 readonly asAttempted: XcmV2TraitsOutcome;2253 readonly asAttempted: XcmV2TraitsOutcome;
2245 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2284 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
2246 }2285 }
22472286
2248 /** @name XcmV2TraitsOutcome (273) */2287 /** @name XcmV2TraitsOutcome (276) */
2249 export interface XcmV2TraitsOutcome extends Enum {2288 export interface XcmV2TraitsOutcome extends Enum {
2250 readonly isComplete: boolean;2289 readonly isComplete: boolean;
2251 readonly asComplete: u64;2290 readonly asComplete: u64;
2256 readonly type: 'Complete' | 'Incomplete' | 'Error';2295 readonly type: 'Complete' | 'Incomplete' | 'Error';
2257 }2296 }
22582297
2259 /** @name CumulusPalletXcmEvent (275) */2298 /** @name CumulusPalletXcmEvent (278) */
2260 export interface CumulusPalletXcmEvent extends Enum {2299 export interface CumulusPalletXcmEvent extends Enum {
2261 readonly isInvalidFormat: boolean;2300 readonly isInvalidFormat: boolean;
2262 readonly asInvalidFormat: U8aFixed;2301 readonly asInvalidFormat: U8aFixed;
2267 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2306 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
2268 }2307 }
22692308
2270 /** @name CumulusPalletDmpQueueEvent (276) */2309 /** @name CumulusPalletDmpQueueEvent (279) */
2271 export interface CumulusPalletDmpQueueEvent extends Enum {2310 export interface CumulusPalletDmpQueueEvent extends Enum {
2272 readonly isInvalidFormat: boolean;2311 readonly isInvalidFormat: boolean;
2273 readonly asInvalidFormat: U8aFixed;2312 readonly asInvalidFormat: U8aFixed;
2284 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2323 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
2285 }2324 }
22862325
2287 /** @name PalletUniqueRawEvent (277) */2326 /** @name PalletUniqueRawEvent (280) */
2288 export interface PalletUniqueRawEvent extends Enum {2327 export interface PalletUniqueRawEvent extends Enum {
2289 readonly isCollectionSponsorRemoved: boolean;2328 readonly isCollectionSponsorRemoved: boolean;
2290 readonly asCollectionSponsorRemoved: u32;2329 readonly asCollectionSponsorRemoved: u32;
2309 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2348 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
2310 }2349 }
2350
2351 /** @name PalletUnqSchedulerEvent (281) */
2352 export interface PalletUnqSchedulerEvent extends Enum {
2353 readonly isScheduled: boolean;
2354 readonly asScheduled: {
2355 readonly when: u32;
2356 readonly index: u32;
2357 } & Struct;
2358 readonly isCanceled: boolean;
2359 readonly asCanceled: {
2360 readonly when: u32;
2361 readonly index: u32;
2362 } & Struct;
2363 readonly isDispatched: boolean;
2364 readonly asDispatched: {
2365 readonly task: ITuple<[u32, u32]>;
2366 readonly id: Option<U8aFixed>;
2367 readonly result: Result<Null, SpRuntimeDispatchError>;
2368 } & Struct;
2369 readonly isCallLookupFailed: boolean;
2370 readonly asCallLookupFailed: {
2371 readonly task: ITuple<[u32, u32]>;
2372 readonly id: Option<U8aFixed>;
2373 readonly error: FrameSupportScheduleLookupError;
2374 } & Struct;
2375 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
2376 }
2377
2378 /** @name FrameSupportScheduleLookupError (283) */
2379 export interface FrameSupportScheduleLookupError extends Enum {
2380 readonly isUnknown: boolean;
2381 readonly isBadFormat: boolean;
2382 readonly type: 'Unknown' | 'BadFormat';
2383 }
23112384
2312 /** @name PalletCommonEvent (278) */2385 /** @name PalletCommonEvent (284) */
2313 export interface PalletCommonEvent extends Enum {2386 export interface PalletCommonEvent extends Enum {
2314 readonly isCollectionCreated: boolean;2387 readonly isCollectionCreated: boolean;
2315 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2388 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
2336 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2409 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
2337 }2410 }
23382411
2339 /** @name PalletStructureEvent (279) */2412 /** @name PalletStructureEvent (285) */
2340 export interface PalletStructureEvent extends Enum {2413 export interface PalletStructureEvent extends Enum {
2341 readonly isExecuted: boolean;2414 readonly isExecuted: boolean;
2342 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2415 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
2343 readonly type: 'Executed';2416 readonly type: 'Executed';
2344 }2417 }
23452418
2346 /** @name PalletRmrkCoreEvent (280) */2419 /** @name PalletRmrkCoreEvent (286) */
2347 export interface PalletRmrkCoreEvent extends Enum {2420 export interface PalletRmrkCoreEvent extends Enum {
2348 readonly isCollectionCreated: boolean;2421 readonly isCollectionCreated: boolean;
2349 readonly asCollectionCreated: {2422 readonly asCollectionCreated: {
2433 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';2506 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
2434 }2507 }
24352508
2436 /** @name PalletRmrkEquipEvent (281) */2509 /** @name PalletRmrkEquipEvent (287) */
2437 export interface PalletRmrkEquipEvent extends Enum {2510 export interface PalletRmrkEquipEvent extends Enum {
2438 readonly isBaseCreated: boolean;2511 readonly isBaseCreated: boolean;
2439 readonly asBaseCreated: {2512 readonly asBaseCreated: {
2443 readonly type: 'BaseCreated';2516 readonly type: 'BaseCreated';
2444 }2517 }
24452518
2446 /** @name PalletEvmEvent (282) */2519 /** @name PalletEvmEvent (288) */
2447 export interface PalletEvmEvent extends Enum {2520 export interface PalletEvmEvent extends Enum {
2448 readonly isLog: boolean;2521 readonly isLog: boolean;
2449 readonly asLog: EthereumLog;2522 readonly asLog: EthereumLog;
2462 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2535 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
2463 }2536 }
24642537
2465 /** @name EthereumLog (283) */2538 /** @name EthereumLog (289) */
2466 export interface EthereumLog extends Struct {2539 export interface EthereumLog extends Struct {
2467 readonly address: H160;2540 readonly address: H160;
2468 readonly topics: Vec<H256>;2541 readonly topics: Vec<H256>;
2469 readonly data: Bytes;2542 readonly data: Bytes;
2470 }2543 }
24712544
2472 /** @name PalletEthereumEvent (284) */2545 /** @name PalletEthereumEvent (290) */
2473 export interface PalletEthereumEvent extends Enum {2546 export interface PalletEthereumEvent extends Enum {
2474 readonly isExecuted: boolean;2547 readonly isExecuted: boolean;
2475 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2548 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
2476 readonly type: 'Executed';2549 readonly type: 'Executed';
2477 }2550 }
24782551
2479 /** @name EvmCoreErrorExitReason (285) */2552 /** @name EvmCoreErrorExitReason (291) */
2480 export interface EvmCoreErrorExitReason extends Enum {2553 export interface EvmCoreErrorExitReason extends Enum {
2481 readonly isSucceed: boolean;2554 readonly isSucceed: boolean;
2482 readonly asSucceed: EvmCoreErrorExitSucceed;2555 readonly asSucceed: EvmCoreErrorExitSucceed;
2489 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2562 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
2490 }2563 }
24912564
2492 /** @name EvmCoreErrorExitSucceed (286) */2565 /** @name EvmCoreErrorExitSucceed (292) */
2493 export interface EvmCoreErrorExitSucceed extends Enum {2566 export interface EvmCoreErrorExitSucceed extends Enum {
2494 readonly isStopped: boolean;2567 readonly isStopped: boolean;
2495 readonly isReturned: boolean;2568 readonly isReturned: boolean;
2496 readonly isSuicided: boolean;2569 readonly isSuicided: boolean;
2497 readonly type: 'Stopped' | 'Returned' | 'Suicided';2570 readonly type: 'Stopped' | 'Returned' | 'Suicided';
2498 }2571 }
24992572
2500 /** @name EvmCoreErrorExitError (287) */2573 /** @name EvmCoreErrorExitError (293) */
2501 export interface EvmCoreErrorExitError extends Enum {2574 export interface EvmCoreErrorExitError extends Enum {
2502 readonly isStackUnderflow: boolean;2575 readonly isStackUnderflow: boolean;
2503 readonly isStackOverflow: boolean;2576 readonly isStackOverflow: boolean;
2518 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2591 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
2519 }2592 }
25202593
2521 /** @name EvmCoreErrorExitRevert (290) */2594 /** @name EvmCoreErrorExitRevert (296) */
2522 export interface EvmCoreErrorExitRevert extends Enum {2595 export interface EvmCoreErrorExitRevert extends Enum {
2523 readonly isReverted: boolean;2596 readonly isReverted: boolean;
2524 readonly type: 'Reverted';2597 readonly type: 'Reverted';
2525 }2598 }
25262599
2527 /** @name EvmCoreErrorExitFatal (291) */2600 /** @name EvmCoreErrorExitFatal (297) */
2528 export interface EvmCoreErrorExitFatal extends Enum {2601 export interface EvmCoreErrorExitFatal extends Enum {
2529 readonly isNotSupported: boolean;2602 readonly isNotSupported: boolean;
2530 readonly isUnhandledInterrupt: boolean;2603 readonly isUnhandledInterrupt: boolean;
2535 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2608 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
2536 }2609 }
25372610
2538 /** @name FrameSystemPhase (292) */2611 /** @name FrameSystemPhase (298) */
2539 export interface FrameSystemPhase extends Enum {2612 export interface FrameSystemPhase extends Enum {
2540 readonly isApplyExtrinsic: boolean;2613 readonly isApplyExtrinsic: boolean;
2541 readonly asApplyExtrinsic: u32;2614 readonly asApplyExtrinsic: u32;
2544 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2617 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
2545 }2618 }
25462619
2547 /** @name FrameSystemLastRuntimeUpgradeInfo (294) */2620 /** @name FrameSystemLastRuntimeUpgradeInfo (300) */
2548 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2621 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
2549 readonly specVersion: Compact<u32>;2622 readonly specVersion: Compact<u32>;
2550 readonly specName: Text;2623 readonly specName: Text;
2551 }2624 }
25522625
2553 /** @name FrameSystemLimitsBlockWeights (295) */2626 /** @name FrameSystemLimitsBlockWeights (301) */
2554 export interface FrameSystemLimitsBlockWeights extends Struct {2627 export interface FrameSystemLimitsBlockWeights extends Struct {
2555 readonly baseBlock: u64;2628 readonly baseBlock: u64;
2556 readonly maxBlock: u64;2629 readonly maxBlock: u64;
2557 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2630 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
2558 }2631 }
25592632
2560 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (296) */2633 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (302) */
2561 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2634 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
2562 readonly normal: FrameSystemLimitsWeightsPerClass;2635 readonly normal: FrameSystemLimitsWeightsPerClass;
2563 readonly operational: FrameSystemLimitsWeightsPerClass;2636 readonly operational: FrameSystemLimitsWeightsPerClass;
2564 readonly mandatory: FrameSystemLimitsWeightsPerClass;2637 readonly mandatory: FrameSystemLimitsWeightsPerClass;
2565 }2638 }
25662639
2567 /** @name FrameSystemLimitsWeightsPerClass (297) */2640 /** @name FrameSystemLimitsWeightsPerClass (303) */
2568 export interface FrameSystemLimitsWeightsPerClass extends Struct {2641 export interface FrameSystemLimitsWeightsPerClass extends Struct {
2569 readonly baseExtrinsic: u64;2642 readonly baseExtrinsic: u64;
2570 readonly maxExtrinsic: Option<u64>;2643 readonly maxExtrinsic: Option<u64>;
2571 readonly maxTotal: Option<u64>;2644 readonly maxTotal: Option<u64>;
2572 readonly reserved: Option<u64>;2645 readonly reserved: Option<u64>;
2573 }2646 }
25742647
2575 /** @name FrameSystemLimitsBlockLength (299) */2648 /** @name FrameSystemLimitsBlockLength (305) */
2576 export interface FrameSystemLimitsBlockLength extends Struct {2649 export interface FrameSystemLimitsBlockLength extends Struct {
2577 readonly max: FrameSupportWeightsPerDispatchClassU32;2650 readonly max: FrameSupportWeightsPerDispatchClassU32;
2578 }2651 }
25792652
2580 /** @name FrameSupportWeightsPerDispatchClassU32 (300) */2653 /** @name FrameSupportWeightsPerDispatchClassU32 (306) */
2581 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2654 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
2582 readonly normal: u32;2655 readonly normal: u32;
2583 readonly operational: u32;2656 readonly operational: u32;
2584 readonly mandatory: u32;2657 readonly mandatory: u32;
2585 }2658 }
25862659
2587 /** @name FrameSupportWeightsRuntimeDbWeight (301) */2660 /** @name FrameSupportWeightsRuntimeDbWeight (307) */
2588 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2661 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
2589 readonly read: u64;2662 readonly read: u64;
2590 readonly write: u64;2663 readonly write: u64;
2591 }2664 }
25922665
2593 /** @name SpVersionRuntimeVersion (302) */2666 /** @name SpVersionRuntimeVersion (308) */
2594 export interface SpVersionRuntimeVersion extends Struct {2667 export interface SpVersionRuntimeVersion extends Struct {
2595 readonly specName: Text;2668 readonly specName: Text;
2596 readonly implName: Text;2669 readonly implName: Text;
2602 readonly stateVersion: u8;2675 readonly stateVersion: u8;
2603 }2676 }
26042677
2605 /** @name FrameSystemError (306) */2678 /** @name FrameSystemError (312) */
2606 export interface FrameSystemError extends Enum {2679 export interface FrameSystemError extends Enum {
2607 readonly isInvalidSpecName: boolean;2680 readonly isInvalidSpecName: boolean;
2608 readonly isSpecVersionNeedsToIncrease: boolean;2681 readonly isSpecVersionNeedsToIncrease: boolean;
2613 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2686 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
2614 }2687 }
26152688
2616 /** @name OrmlVestingModuleError (308) */2689 /** @name OrmlVestingModuleError (314) */
2617 export interface OrmlVestingModuleError extends Enum {2690 export interface OrmlVestingModuleError extends Enum {
2618 readonly isZeroVestingPeriod: boolean;2691 readonly isZeroVestingPeriod: boolean;
2619 readonly isZeroVestingPeriodCount: boolean;2692 readonly isZeroVestingPeriodCount: boolean;
2624 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2697 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
2625 }2698 }
26262699
2627 /** @name CumulusPalletXcmpQueueInboundChannelDetails (310) */2700 /** @name CumulusPalletXcmpQueueInboundChannelDetails (316) */
2628 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2701 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
2629 readonly sender: u32;2702 readonly sender: u32;
2630 readonly state: CumulusPalletXcmpQueueInboundState;2703 readonly state: CumulusPalletXcmpQueueInboundState;
2631 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2704 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
2632 }2705 }
26332706
2634 /** @name CumulusPalletXcmpQueueInboundState (311) */2707 /** @name CumulusPalletXcmpQueueInboundState (317) */
2635 export interface CumulusPalletXcmpQueueInboundState extends Enum {2708 export interface CumulusPalletXcmpQueueInboundState extends Enum {
2636 readonly isOk: boolean;2709 readonly isOk: boolean;
2637 readonly isSuspended: boolean;2710 readonly isSuspended: boolean;
2638 readonly type: 'Ok' | 'Suspended';2711 readonly type: 'Ok' | 'Suspended';
2639 }2712 }
26402713
2641 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (314) */2714 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (320) */
2642 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2715 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
2643 readonly isConcatenatedVersionedXcm: boolean;2716 readonly isConcatenatedVersionedXcm: boolean;
2644 readonly isConcatenatedEncodedBlob: boolean;2717 readonly isConcatenatedEncodedBlob: boolean;
2645 readonly isSignals: boolean;2718 readonly isSignals: boolean;
2646 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2719 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
2647 }2720 }
26482721
2649 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (317) */2722 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (323) */
2650 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2723 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
2651 readonly recipient: u32;2724 readonly recipient: u32;
2652 readonly state: CumulusPalletXcmpQueueOutboundState;2725 readonly state: CumulusPalletXcmpQueueOutboundState;
2655 readonly lastIndex: u16;2728 readonly lastIndex: u16;
2656 }2729 }
26572730
2658 /** @name CumulusPalletXcmpQueueOutboundState (318) */2731 /** @name CumulusPalletXcmpQueueOutboundState (324) */
2659 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2732 export interface CumulusPalletXcmpQueueOutboundState extends Enum {
2660 readonly isOk: boolean;2733 readonly isOk: boolean;
2661 readonly isSuspended: boolean;2734 readonly isSuspended: boolean;
2662 readonly type: 'Ok' | 'Suspended';2735 readonly type: 'Ok' | 'Suspended';
2663 }2736 }
26642737
2665 /** @name CumulusPalletXcmpQueueQueueConfigData (320) */2738 /** @name CumulusPalletXcmpQueueQueueConfigData (326) */
2666 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2739 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
2667 readonly suspendThreshold: u32;2740 readonly suspendThreshold: u32;
2668 readonly dropThreshold: u32;2741 readonly dropThreshold: u32;
2672 readonly xcmpMaxIndividualWeight: u64;2745 readonly xcmpMaxIndividualWeight: u64;
2673 }2746 }
26742747
2675 /** @name CumulusPalletXcmpQueueError (322) */2748 /** @name CumulusPalletXcmpQueueError (328) */
2676 export interface CumulusPalletXcmpQueueError extends Enum {2749 export interface CumulusPalletXcmpQueueError extends Enum {
2677 readonly isFailedToSend: boolean;2750 readonly isFailedToSend: boolean;
2678 readonly isBadXcmOrigin: boolean;2751 readonly isBadXcmOrigin: boolean;
2682 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2755 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
2683 }2756 }
26842757
2685 /** @name PalletXcmError (323) */2758 /** @name PalletXcmError (329) */
2686 export interface PalletXcmError extends Enum {2759 export interface PalletXcmError extends Enum {
2687 readonly isUnreachable: boolean;2760 readonly isUnreachable: boolean;
2688 readonly isSendFailure: boolean;2761 readonly isSendFailure: boolean;
2700 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2773 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
2701 }2774 }
27022775
2703 /** @name CumulusPalletXcmError (324) */2776 /** @name CumulusPalletXcmError (330) */
2704 export type CumulusPalletXcmError = Null;2777 export type CumulusPalletXcmError = Null;
27052778
2706 /** @name CumulusPalletDmpQueueConfigData (325) */2779 /** @name CumulusPalletDmpQueueConfigData (331) */
2707 export interface CumulusPalletDmpQueueConfigData extends Struct {2780 export interface CumulusPalletDmpQueueConfigData extends Struct {
2708 readonly maxIndividual: u64;2781 readonly maxIndividual: u64;
2709 }2782 }
27102783
2711 /** @name CumulusPalletDmpQueuePageIndexData (326) */2784 /** @name CumulusPalletDmpQueuePageIndexData (332) */
2712 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2785 export interface CumulusPalletDmpQueuePageIndexData extends Struct {
2713 readonly beginUsed: u32;2786 readonly beginUsed: u32;
2714 readonly endUsed: u32;2787 readonly endUsed: u32;
2715 readonly overweightCount: u64;2788 readonly overweightCount: u64;
2716 }2789 }
27172790
2718 /** @name CumulusPalletDmpQueueError (329) */2791 /** @name CumulusPalletDmpQueueError (335) */
2719 export interface CumulusPalletDmpQueueError extends Enum {2792 export interface CumulusPalletDmpQueueError extends Enum {
2720 readonly isUnknown: boolean;2793 readonly isUnknown: boolean;
2721 readonly isOverLimit: boolean;2794 readonly isOverLimit: boolean;
2722 readonly type: 'Unknown' | 'OverLimit';2795 readonly type: 'Unknown' | 'OverLimit';
2723 }2796 }
27242797
2725 /** @name PalletUniqueError (333) */2798 /** @name PalletUniqueError (339) */
2726 export interface PalletUniqueError extends Enum {2799 export interface PalletUniqueError extends Enum {
2727 readonly isCollectionDecimalPointLimitExceeded: boolean;2800 readonly isCollectionDecimalPointLimitExceeded: boolean;
2728 readonly isConfirmUnsetSponsorFail: boolean;2801 readonly isConfirmUnsetSponsorFail: boolean;
2729 readonly isEmptyArgument: boolean;2802 readonly isEmptyArgument: boolean;
2730 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2803 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
2731 }2804 }
2805
2806 /** @name PalletUnqSchedulerScheduledV3 (342) */
2807 export interface PalletUnqSchedulerScheduledV3 extends Struct {
2808 readonly maybeId: Option<U8aFixed>;
2809 readonly priority: u8;
2810 readonly call: FrameSupportScheduleMaybeHashed;
2811 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2812 readonly origin: OpalRuntimeOriginCaller;
2813 }
2814
2815 /** @name OpalRuntimeOriginCaller (343) */
2816 export interface OpalRuntimeOriginCaller extends Enum {
2817 readonly isVoid: boolean;
2818 readonly isSystem: boolean;
2819 readonly asSystem: FrameSupportDispatchRawOrigin;
2820 readonly isPolkadotXcm: boolean;
2821 readonly asPolkadotXcm: PalletXcmOrigin;
2822 readonly isCumulusXcm: boolean;
2823 readonly asCumulusXcm: CumulusPalletXcmOrigin;
2824 readonly isEthereum: boolean;
2825 readonly asEthereum: PalletEthereumRawOrigin;
2826 readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
2827 }
2828
2829 /** @name FrameSupportDispatchRawOrigin (344) */
2830 export interface FrameSupportDispatchRawOrigin extends Enum {
2831 readonly isRoot: boolean;
2832 readonly isSigned: boolean;
2833 readonly asSigned: AccountId32;
2834 readonly isNone: boolean;
2835 readonly type: 'Root' | 'Signed' | 'None';
2836 }
2837
2838 /** @name PalletXcmOrigin (345) */
2839 export interface PalletXcmOrigin extends Enum {
2840 readonly isXcm: boolean;
2841 readonly asXcm: XcmV1MultiLocation;
2842 readonly isResponse: boolean;
2843 readonly asResponse: XcmV1MultiLocation;
2844 readonly type: 'Xcm' | 'Response';
2845 }
2846
2847 /** @name CumulusPalletXcmOrigin (346) */
2848 export interface CumulusPalletXcmOrigin extends Enum {
2849 readonly isRelay: boolean;
2850 readonly isSiblingParachain: boolean;
2851 readonly asSiblingParachain: u32;
2852 readonly type: 'Relay' | 'SiblingParachain';
2853 }
2854
2855 /** @name PalletEthereumRawOrigin (347) */
2856 export interface PalletEthereumRawOrigin extends Enum {
2857 readonly isEthereumTransaction: boolean;
2858 readonly asEthereumTransaction: H160;
2859 readonly type: 'EthereumTransaction';
2860 }
2861
2862 /** @name SpCoreVoid (348) */
2863 export type SpCoreVoid = Null;
2864
2865 /** @name PalletUnqSchedulerError (349) */
2866 export interface PalletUnqSchedulerError extends Enum {
2867 readonly isFailedToSchedule: boolean;
2868 readonly isNotFound: boolean;
2869 readonly isTargetBlockNumberInPast: boolean;
2870 readonly isRescheduleNoChange: boolean;
2871 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
2872 }
27322873
2733 /** @name UpDataStructsCollection (334) */2874 /** @name UpDataStructsCollection (350) */
2734 export interface UpDataStructsCollection extends Struct {2875 export interface UpDataStructsCollection extends Struct {
2735 readonly owner: AccountId32;2876 readonly owner: AccountId32;
2736 readonly mode: UpDataStructsCollectionMode;2877 readonly mode: UpDataStructsCollectionMode;
2743 readonly externalCollection: bool;2884 readonly externalCollection: bool;
2744 }2885 }
27452886
2746 /** @name UpDataStructsSponsorshipState (335) */2887 /** @name UpDataStructsSponsorshipState (351) */
2747 export interface UpDataStructsSponsorshipState extends Enum {2888 export interface UpDataStructsSponsorshipState extends Enum {
2748 readonly isDisabled: boolean;2889 readonly isDisabled: boolean;
2749 readonly isUnconfirmed: boolean;2890 readonly isUnconfirmed: boolean;
2753 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2894 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
2754 }2895 }
27552896
2756 /** @name UpDataStructsProperties (336) */2897 /** @name UpDataStructsProperties (352) */
2757 export interface UpDataStructsProperties extends Struct {2898 export interface UpDataStructsProperties extends Struct {
2758 readonly map: UpDataStructsPropertiesMapBoundedVec;2899 readonly map: UpDataStructsPropertiesMapBoundedVec;
2759 readonly consumedSpace: u32;2900 readonly consumedSpace: u32;
2760 readonly spaceLimit: u32;2901 readonly spaceLimit: u32;
2761 }2902 }
27622903
2763 /** @name UpDataStructsPropertiesMapBoundedVec (337) */2904 /** @name UpDataStructsPropertiesMapBoundedVec (353) */
2764 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}2905 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
27652906
2766 /** @name UpDataStructsPropertiesMapPropertyPermission (342) */2907 /** @name UpDataStructsPropertiesMapPropertyPermission (358) */
2767 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}2908 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
27682909
2769 /** @name UpDataStructsCollectionStats (349) */2910 /** @name UpDataStructsCollectionStats (365) */
2770 export interface UpDataStructsCollectionStats extends Struct {2911 export interface UpDataStructsCollectionStats extends Struct {
2771 readonly created: u32;2912 readonly created: u32;
2772 readonly destroyed: u32;2913 readonly destroyed: u32;
2773 readonly alive: u32;2914 readonly alive: u32;
2774 }2915 }
27752916
2776 /** @name UpDataStructsTokenChild (323) */2917 /** @name UpDataStructsTokenChild (366) */
2777 export interface UpDataStructsTokenChild extends Struct {2918 export interface UpDataStructsTokenChild extends Struct {
2778 readonly token: u32;2919 readonly token: u32;
2779 readonly collection: u32;2920 readonly collection: u32;
2780 }2921 }
27812922
2782 /** @name PhantomTypeUpDataStructs (324) */2923 /** @name PhantomTypeUpDataStructs (367) */
2783 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsRmrkNftChild]>> {}2924 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
27842925
2785 /** @name UpDataStructsTokenData (326) */2926 /** @name UpDataStructsTokenData (369) */
2786 export interface UpDataStructsTokenData extends Struct {2927 export interface UpDataStructsTokenData extends Struct {
2787 readonly properties: Vec<UpDataStructsProperty>;2928 readonly properties: Vec<UpDataStructsProperty>;
2788 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2929 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
2789 }2930 }
27902931
2791 /** @name UpDataStructsRpcCollection (328) */2932 /** @name UpDataStructsRpcCollection (371) */
2792 export interface UpDataStructsRpcCollection extends Struct {2933 export interface UpDataStructsRpcCollection extends Struct {
2793 readonly owner: AccountId32;2934 readonly owner: AccountId32;
2794 readonly mode: UpDataStructsCollectionMode;2935 readonly mode: UpDataStructsCollectionMode;
2803 readonly readOnly: bool;2944 readonly readOnly: bool;
2804 }2945 }
28052946
2806 /** @name UpDataStructsRmrkCollectionInfo (329) */2947 /** @name RmrkTraitsCollectionCollectionInfo (372) */
2807 export interface UpDataStructsRmrkCollectionInfo extends Struct {2948 export interface RmrkTraitsCollectionCollectionInfo extends Struct {
2808 readonly issuer: AccountId32;2949 readonly issuer: AccountId32;
2809 readonly metadata: Bytes;2950 readonly metadata: Bytes;
2810 readonly max: Option<u32>;2951 readonly max: Option<u32>;
2811 readonly symbol: Bytes;2952 readonly symbol: Bytes;
2812 readonly nftsCount: u32;2953 readonly nftsCount: u32;
2813 }2954 }
28142955
2815 /** @name UpDataStructsRmrkNftInfo (332) */2956 /** @name RmrkTraitsNftNftInfo (373) */
2816 export interface UpDataStructsRmrkNftInfo extends Struct {2957 export interface RmrkTraitsNftNftInfo extends Struct {
2817 readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;2958 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
2818 readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;2959 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
2819 readonly metadata: Bytes;2960 readonly metadata: Bytes;
2820 readonly equipped: bool;2961 readonly equipped: bool;
2821 readonly pending: bool;2962 readonly pending: bool;
2822 }2963 }
2823
2824 /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (333) */
2825 export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
2826 readonly isAccountId: boolean;
2827 readonly asAccountId: AccountId32;
2828 readonly isCollectionAndNftTuple: boolean;
2829 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
2830 readonly type: 'AccountId' | 'CollectionAndNftTuple';
2831 }
28322964
2833 /** @name UpDataStructsRmrkRoyaltyInfo (335) */2965 /** @name RmrkTraitsNftRoyaltyInfo (375) */
2834 export interface UpDataStructsRmrkRoyaltyInfo extends Struct {2966 export interface RmrkTraitsNftRoyaltyInfo extends Struct {
2835 readonly recipient: AccountId32;2967 readonly recipient: AccountId32;
2836 readonly amount: Permill;2968 readonly amount: Permill;
2837 }2969 }
28382970
2839 /** @name UpDataStructsRmrkResourceInfo (336) */2971 /** @name RmrkTraitsResourceResourceInfo (376) */
2840 export interface UpDataStructsRmrkResourceInfo extends Struct {2972 export interface RmrkTraitsResourceResourceInfo extends Struct {
2841 readonly id: u32;2973 readonly id: u32;
2842 readonly resource: RmrkTraitsResourceResourceTypes;2974 readonly resource: RmrkTraitsResourceResourceTypes;
2843 readonly pending: bool;2975 readonly pending: bool;
2844 readonly pendingRemoval: bool;2976 readonly pendingRemoval: bool;
2845 }2977 }
28462978
2847 /** @name UpDataStructsRmrkResourceTypes (339) */2979 /** @name RmrkTraitsResourceResourceTypes (377) */
2848 export interface UpDataStructsRmrkResourceTypes extends Enum {2980 export interface RmrkTraitsResourceResourceTypes extends Enum {
2849 readonly isBasic: boolean;2981 readonly isBasic: boolean;
2850 readonly asBasic: RmrkTraitsResourceBasicResource;2982 readonly asBasic: RmrkTraitsResourceBasicResource;
2851 readonly isComposable: boolean;2983 readonly isComposable: boolean;
2855 readonly type: 'Basic' | 'Composable' | 'Slot';2987 readonly type: 'Basic' | 'Composable' | 'Slot';
2856 }2988 }
2857
2858 /** @name UpDataStructsRmrkBasicResource (340) */
2859 export interface UpDataStructsRmrkBasicResource extends Struct {
2860 readonly src: Option<Bytes>;
2861 readonly metadata: Option<Bytes>;
2862 readonly license: Option<Bytes>;
2863 readonly thumb: Option<Bytes>;
2864 }
2865
2866 /** @name UpDataStructsRmrkComposableResource (342) */
2867 export interface UpDataStructsRmrkComposableResource extends Struct {
2868 readonly parts: Vec<u32>;
2869 readonly base: u32;
2870 readonly src: Option<Bytes>;
2871 readonly metadata: Option<Bytes>;
2872 readonly license: Option<Bytes>;
2873 readonly thumb: Option<Bytes>;
2874 }
2875
2876 /** @name UpDataStructsRmrkSlotResource (343) */
2877 export interface UpDataStructsRmrkSlotResource extends Struct {
2878 readonly base: u32;
2879 readonly src: Option<Bytes>;
2880 readonly metadata: Option<Bytes>;
2881 readonly slot: u32;
2882 readonly license: Option<Bytes>;
2883 readonly thumb: Option<Bytes>;
2884 }
28852989
2886 /** @name UpDataStructsRmrkPropertyInfo (344) */2990 /** @name RmrkTraitsPropertyPropertyInfo (378) */
2887 export interface UpDataStructsRmrkPropertyInfo extends Struct {2991 export interface RmrkTraitsPropertyPropertyInfo extends Struct {
2888 readonly key: Bytes;2992 readonly key: Bytes;
2889 readonly value: Bytes;2993 readonly value: Bytes;
2890 }2994 }
28912995
2892 /** @name UpDataStructsRmrkBaseInfo (347) */2996 /** @name RmrkTraitsBaseBaseInfo (379) */
2893 export interface UpDataStructsRmrkBaseInfo extends Struct {2997 export interface RmrkTraitsBaseBaseInfo extends Struct {
2894 readonly issuer: AccountId32;2998 readonly issuer: AccountId32;
2895 readonly baseType: Bytes;2999 readonly baseType: Bytes;
2896 readonly symbol: Bytes;3000 readonly symbol: Bytes;
2897 }3001 }
2898
2899 /** @name UpDataStructsRmrkPartType (348) */
2900 export interface UpDataStructsRmrkPartType extends Enum {
2901 readonly isFixedPart: boolean;
2902 readonly asFixedPart: UpDataStructsRmrkFixedPart;
2903 readonly isSlotPart: boolean;
2904 readonly asSlotPart: UpDataStructsRmrkSlotPart;
2905 readonly type: 'FixedPart' | 'SlotPart';
2906 }
2907
2908 /** @name UpDataStructsRmrkFixedPart (350) */
2909 export interface UpDataStructsRmrkFixedPart extends Struct {
2910 readonly id: u32;
2911 readonly z: u32;
2912 readonly src: Bytes;
2913 }
2914
2915 /** @name UpDataStructsRmrkSlotPart (351) */
2916 export interface UpDataStructsRmrkSlotPart extends Struct {
2917 readonly id: u32;
2918 readonly equippable: UpDataStructsRmrkEquippableList;
2919 readonly src: Bytes;
2920 readonly z: u32;
2921 }
2922
2923 /** @name UpDataStructsRmrkEquippableList (352) */
2924 export interface UpDataStructsRmrkEquippableList extends Enum {
2925 readonly isAll: boolean;
2926 readonly isEmpty: boolean;
2927 readonly isCustom: boolean;
2928 readonly asCustom: Vec<u32>;
2929 readonly type: 'All' | 'Empty' | 'Custom';
2930 }
2931
2932 /** @name UpDataStructsRmrkTheme (353) */
2933 export interface UpDataStructsRmrkTheme extends Struct {
2934 readonly name: Bytes;
2935 readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
2936 readonly inherit: bool;
2937 }
2938
2939 /** @name UpDataStructsRmrkThemeProperty (355) */
2940 export interface UpDataStructsRmrkThemeProperty extends Struct {
2941 readonly key: Bytes;
2942 readonly value: Bytes;
2943 }
29443002
2945 /** @name UpDataStructsRmrkNftChild (356) */3003 /** @name RmrkTraitsNftNftChild (380) */
2946 export interface UpDataStructsRmrkNftChild extends Struct {3004 export interface RmrkTraitsNftNftChild extends Struct {
2947 readonly collectionId: u32;3005 readonly collectionId: u32;
2948 readonly nftId: u32;3006 readonly nftId: u32;
2949 }3007 }
29503008
2951 /** @name PalletCommonError (358) */3009 /** @name PalletCommonError (382) */
2952 export interface PalletCommonError extends Enum {3010 export interface PalletCommonError extends Enum {
2953 readonly isCollectionNotFound: boolean;3011 readonly isCollectionNotFound: boolean;
2954 readonly isMustBeTokenOwner: boolean;3012 readonly isMustBeTokenOwner: boolean;
2988 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' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3046 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' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
2989 }3047 }
29903048
2991 /** @name PalletFungibleError (360) */3049 /** @name PalletFungibleError (384) */
2992 export interface PalletFungibleError extends Enum {3050 export interface PalletFungibleError extends Enum {
2993 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3051 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
2994 readonly isFungibleItemsHaveNoId: boolean;3052 readonly isFungibleItemsHaveNoId: boolean;
2998 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3056 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
2999 }3057 }
30003058
3001 /** @name PalletRefungibleItemData (361) */3059 /** @name PalletRefungibleItemData (385) */
3002 export interface PalletRefungibleItemData extends Struct {3060 export interface PalletRefungibleItemData extends Struct {
3003 readonly constData: Bytes;3061 readonly constData: Bytes;
3004 }3062 }
30053063
3006 /** @name PalletRefungibleError (365) */3064 /** @name PalletRefungibleError (389) */
3007 export interface PalletRefungibleError extends Enum {3065 export interface PalletRefungibleError extends Enum {
3008 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3066 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3009 readonly isWrongRefungiblePieces: boolean;3067 readonly isWrongRefungiblePieces: boolean;
3012 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3070 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3013 }3071 }
30143072
3015 /** @name PalletNonfungibleItemData (366) */3073 /** @name PalletNonfungibleItemData (390) */
3016 export interface PalletNonfungibleItemData extends Struct {3074 export interface PalletNonfungibleItemData extends Struct {
3017 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3075 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3018 }3076 }
30193077
3020 /** @name PalletNonfungibleError (368) */3078 /** @name PalletNonfungibleError (392) */
3021 export interface PalletNonfungibleError extends Enum {3079 export interface PalletNonfungibleError extends Enum {
3022 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3080 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3023 readonly isNonfungibleItemsHaveNoAmount: boolean;3081 readonly isNonfungibleItemsHaveNoAmount: boolean;
3024 readonly isCantBurnNftWithChildren: boolean;3082 readonly isCantBurnNftWithChildren: boolean;
3025 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3083 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3026 }3084 }
30273085
3028 /** @name PalletStructureError (369) */3086 /** @name PalletStructureError (393) */
3029 export interface PalletStructureError extends Enum {3087 export interface PalletStructureError extends Enum {
3030 readonly isOuroborosDetected: boolean;3088 readonly isOuroborosDetected: boolean;
3031 readonly isDepthLimit: boolean;3089 readonly isDepthLimit: boolean;
3032 readonly isTokenNotFound: boolean;3090 readonly isTokenNotFound: boolean;
3033 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';3091 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
3034 }3092 }
3093
3094 /** @name PalletRmrkCoreError (394) */
3095 export interface PalletRmrkCoreError extends Enum {
3096 readonly isCorruptedCollectionType: boolean;
3097 readonly isNftTypeEncodeError: boolean;
3098 readonly isRmrkPropertyKeyIsTooLong: boolean;
3099 readonly isRmrkPropertyValueIsTooLong: boolean;
3100 readonly isCollectionNotEmpty: boolean;
3101 readonly isNoAvailableCollectionId: boolean;
3102 readonly isNoAvailableNftId: boolean;
3103 readonly isCollectionUnknown: boolean;
3104 readonly isNoPermission: boolean;
3105 readonly isNonTransferable: boolean;
3106 readonly isCollectionFullOrLocked: boolean;
3107 readonly isResourceDoesntExist: boolean;
3108 readonly isCannotSendToDescendentOrSelf: boolean;
3109 readonly isCannotAcceptNonOwnedNft: boolean;
3110 readonly isCannotRejectNonOwnedNft: boolean;
3111 readonly isResourceNotPending: boolean;
3112 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'ResourceNotPending';
3113 }
3114
3115 /** @name PalletRmrkEquipError (396) */
3116 export interface PalletRmrkEquipError extends Enum {
3117 readonly isPermissionError: boolean;
3118 readonly isNoAvailableBaseId: boolean;
3119 readonly isNoAvailablePartId: boolean;
3120 readonly isBaseDoesntExist: boolean;
3121 readonly isNeedsDefaultThemeFirst: boolean;
3122 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
3123 }
30353124
3036 /** @name PalletEvmError (372) */3125 /** @name PalletEvmError (399) */
3037 export interface PalletEvmError extends Enum {3126 export interface PalletEvmError extends Enum {
3038 readonly isBalanceLow: boolean;3127 readonly isBalanceLow: boolean;
3039 readonly isFeeOverflow: boolean;3128 readonly isFeeOverflow: boolean;
3044 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3133 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
3045 }3134 }
30463135
3047 /** @name FpRpcTransactionStatus (375) */3136 /** @name FpRpcTransactionStatus (402) */
3048 export interface FpRpcTransactionStatus extends Struct {3137 export interface FpRpcTransactionStatus extends Struct {
3049 readonly transactionHash: H256;3138 readonly transactionHash: H256;
3050 readonly transactionIndex: u32;3139 readonly transactionIndex: u32;
3055 readonly logsBloom: EthbloomBloom;3144 readonly logsBloom: EthbloomBloom;
3056 }3145 }
30573146
3058 /** @name EthbloomBloom (377) */3147 /** @name EthbloomBloom (404) */
3059 export interface EthbloomBloom extends U8aFixed {}3148 export interface EthbloomBloom extends U8aFixed {}
30603149
3061 /** @name EthereumReceiptReceiptV3 (379) */3150 /** @name EthereumReceiptReceiptV3 (406) */
3062 export interface EthereumReceiptReceiptV3 extends Enum {3151 export interface EthereumReceiptReceiptV3 extends Enum {
3063 readonly isLegacy: boolean;3152 readonly isLegacy: boolean;
3064 readonly asLegacy: EthereumReceiptEip658ReceiptData;3153 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3069 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3158 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3070 }3159 }
30713160
3072 /** @name EthereumReceiptEip658ReceiptData (380) */3161 /** @name EthereumReceiptEip658ReceiptData (407) */
3073 export interface EthereumReceiptEip658ReceiptData extends Struct {3162 export interface EthereumReceiptEip658ReceiptData extends Struct {
3074 readonly statusCode: u8;3163 readonly statusCode: u8;
3075 readonly usedGas: U256;3164 readonly usedGas: U256;
3076 readonly logsBloom: EthbloomBloom;3165 readonly logsBloom: EthbloomBloom;
3077 readonly logs: Vec<EthereumLog>;3166 readonly logs: Vec<EthereumLog>;
3078 }3167 }
30793168
3080 /** @name EthereumBlock (381) */3169 /** @name EthereumBlock (408) */
3081 export interface EthereumBlock extends Struct {3170 export interface EthereumBlock extends Struct {
3082 readonly header: EthereumHeader;3171 readonly header: EthereumHeader;
3083 readonly transactions: Vec<EthereumTransactionTransactionV2>;3172 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3084 readonly ommers: Vec<EthereumHeader>;3173 readonly ommers: Vec<EthereumHeader>;
3085 }3174 }
30863175
3087 /** @name EthereumHeader (382) */3176 /** @name EthereumHeader (409) */
3088 export interface EthereumHeader extends Struct {3177 export interface EthereumHeader extends Struct {
3089 readonly parentHash: H256;3178 readonly parentHash: H256;
3090 readonly ommersHash: H256;3179 readonly ommersHash: H256;
3103 readonly nonce: EthereumTypesHashH64;3192 readonly nonce: EthereumTypesHashH64;
3104 }3193 }
31053194
3106 /** @name EthereumTypesHashH64 (383) */3195 /** @name EthereumTypesHashH64 (410) */
3107 export interface EthereumTypesHashH64 extends U8aFixed {}3196 export interface EthereumTypesHashH64 extends U8aFixed {}
31083197
3109 /** @name PalletEthereumError (388) */3198 /** @name PalletEthereumError (415) */
3110 export interface PalletEthereumError extends Enum {3199 export interface PalletEthereumError extends Enum {
3111 readonly isInvalidSignature: boolean;3200 readonly isInvalidSignature: boolean;
3112 readonly isPreLogExists: boolean;3201 readonly isPreLogExists: boolean;
3113 readonly type: 'InvalidSignature' | 'PreLogExists';3202 readonly type: 'InvalidSignature' | 'PreLogExists';
3114 }3203 }
31153204
3116 /** @name PalletEvmCoderSubstrateError (389) */3205 /** @name PalletEvmCoderSubstrateError (416) */
3117 export interface PalletEvmCoderSubstrateError extends Enum {3206 export interface PalletEvmCoderSubstrateError extends Enum {
3118 readonly isOutOfGas: boolean;3207 readonly isOutOfGas: boolean;
3119 readonly isOutOfFund: boolean;3208 readonly isOutOfFund: boolean;
3120 readonly type: 'OutOfGas' | 'OutOfFund';3209 readonly type: 'OutOfGas' | 'OutOfFund';
3121 }3210 }
31223211
3123 /** @name PalletEvmContractHelpersSponsoringModeT (390) */3212 /** @name PalletEvmContractHelpersSponsoringModeT (417) */
3124 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {3213 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3125 readonly isDisabled: boolean;3214 readonly isDisabled: boolean;
3126 readonly isAllowlisted: boolean;3215 readonly isAllowlisted: boolean;
3127 readonly isGenerous: boolean;3216 readonly isGenerous: boolean;
3128 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3217 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3129 }3218 }
31303219
3131 /** @name PalletEvmContractHelpersError (392) */3220 /** @name PalletEvmContractHelpersError (419) */
3132 export interface PalletEvmContractHelpersError extends Enum {3221 export interface PalletEvmContractHelpersError extends Enum {
3133 readonly isNoPermission: boolean;3222 readonly isNoPermission: boolean;
3134 readonly type: 'NoPermission';3223 readonly type: 'NoPermission';
3135 }3224 }
31363225
3137 /** @name PalletEvmMigrationError (393) */3226 /** @name PalletEvmMigrationError (420) */
3138 export interface PalletEvmMigrationError extends Enum {3227 export interface PalletEvmMigrationError extends Enum {
3139 readonly isAccountNotEmpty: boolean;3228 readonly isAccountNotEmpty: boolean;
3140 readonly isAccountIsNotMigrating: boolean;3229 readonly isAccountIsNotMigrating: boolean;
3141 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3230 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
3142 }3231 }
31433232
3144 /** @name SpRuntimeMultiSignature (395) */3233 /** @name SpRuntimeMultiSignature (422) */
3145 export interface SpRuntimeMultiSignature extends Enum {3234 export interface SpRuntimeMultiSignature extends Enum {
3146 readonly isEd25519: boolean;3235 readonly isEd25519: boolean;
3147 readonly asEd25519: SpCoreEd25519Signature;3236 readonly asEd25519: SpCoreEd25519Signature;
3152 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3241 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3153 }3242 }
31543243
3155 /** @name SpCoreEd25519Signature (396) */3244 /** @name SpCoreEd25519Signature (423) */
3156 export interface SpCoreEd25519Signature extends U8aFixed {}3245 export interface SpCoreEd25519Signature extends U8aFixed {}
31573246
3158 /** @name SpCoreSr25519Signature (398) */3247 /** @name SpCoreSr25519Signature (425) */
3159 export interface SpCoreSr25519Signature extends U8aFixed {}3248 export interface SpCoreSr25519Signature extends U8aFixed {}
31603249
3161 /** @name SpCoreEcdsaSignature (399) */3250 /** @name SpCoreEcdsaSignature (426) */
3162 export interface SpCoreEcdsaSignature extends U8aFixed {}3251 export interface SpCoreEcdsaSignature extends U8aFixed {}
31633252
3164 /** @name FrameSystemExtensionsCheckSpecVersion (402) */3253 /** @name FrameSystemExtensionsCheckSpecVersion (429) */
3165 export type FrameSystemExtensionsCheckSpecVersion = Null;3254 export type FrameSystemExtensionsCheckSpecVersion = Null;
31663255
3167 /** @name FrameSystemExtensionsCheckGenesis (403) */3256 /** @name FrameSystemExtensionsCheckGenesis (430) */
3168 export type FrameSystemExtensionsCheckGenesis = Null;3257 export type FrameSystemExtensionsCheckGenesis = Null;
31693258
3170 /** @name FrameSystemExtensionsCheckNonce (406) */3259 /** @name FrameSystemExtensionsCheckNonce (433) */
3171 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3260 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
31723261
3173 /** @name FrameSystemExtensionsCheckWeight (407) */3262 /** @name FrameSystemExtensionsCheckWeight (434) */
3174 export type FrameSystemExtensionsCheckWeight = Null;3263 export type FrameSystemExtensionsCheckWeight = Null;
31753264
3176 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (408) */3265 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (435) */
3177 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3266 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
31783267
3179 /** @name OpalRuntimeRuntime (409) */3268 /** @name OpalRuntimeRuntime (436) */
3180 export type OpalRuntimeRuntime = Null;3269 export type OpalRuntimeRuntime = Null;
31813270
3182 /** @name PalletEthereumFakeTransactionFinalizer (410) */3271 /** @name PalletEthereumFakeTransactionFinalizer (437) */
3183 export type PalletEthereumFakeTransactionFinalizer = Null;3272 export type PalletEthereumFakeTransactionFinalizer = Null;
31843273
3185} // declare module3274} // declare module