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

difftreelog

fix(tests) rmrk definitions

Fahrrader2022-05-27parent: #1a51442.patch.diff
in: master

12 files changed

modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -429,6 +429,33 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    rmrkCore: {
+      CollectionFullOrLocked: AugmentedError<ApiType>;
+      CollectionNotEmpty: AugmentedError<ApiType>;
+      CollectionUnknown: AugmentedError<ApiType>;
+      CorruptedCollectionType: AugmentedError<ApiType>;
+      NftTypeEncodeError: AugmentedError<ApiType>;
+      NoAvailableCollectionId: AugmentedError<ApiType>;
+      NoAvailableNftId: AugmentedError<ApiType>;
+      NoPermission: AugmentedError<ApiType>;
+      RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;
+      RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
+    rmrkEquip: {
+      BaseDoesntExist: AugmentedError<ApiType>;
+      NeedsDefaultThemeFirst: AugmentedError<ApiType>;
+      NoAvailableBaseId: AugmentedError<ApiType>;
+      NoAvailablePartId: AugmentedError<ApiType>;
+      PermissionError: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     structure: {
       /**
        * While searched for owner, encountered depth limit
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -396,6 +396,26 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
+    rmrkCore: {
+      CollectionCreated: AugmentedEvent<ApiType, [AccountId32, u32]>;
+      CollectionDestroyed: AugmentedEvent<ApiType, [AccountId32, u32]>;
+      CollectionLocked: AugmentedEvent<ApiType, [AccountId32, u32]>;
+      IssuerChanged: AugmentedEvent<ApiType, [AccountId32, AccountId32, u32]>;
+      NFTBurned: AugmentedEvent<ApiType, [AccountId32, u32]>;
+      NftMinted: AugmentedEvent<ApiType, [AccountId32, u32, u32]>;
+      PropertySet: AugmentedEvent<ApiType, [u32, Option<u32>, Bytes, Bytes]>;
+      /**
+       * Generic event
+       **/
+      [key: string]: AugmentedEvent<ApiType>;
+    };
+    rmrkEquip: {
+      BaseCreated: AugmentedEvent<ApiType, [AccountId32, u32]>;
+      /**
+       * Generic event
+       **/
+      [key: string]: AugmentedEvent<ApiType>;
+    };
     structure: {
       /**
        * Executed call on behalf of token
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -415,6 +415,21 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
+    rmrkCore: {
+      collectionIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
+    rmrkEquip: {
+      baseHasDefaultTheme: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+      inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     structure: {
       /**
        * Generic query
@@ -585,6 +600,7 @@
        * Collection id (controlled?2), token id (controlled?2)
        **/
       reFungibleTransferBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
+      tokenPropertyBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
       /**
        * Variable metadata sponsoring
        * Collection id (controlled?2), token id (controlled?2)
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
 /* eslint-disable */
 
-import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTypesBaseInfo, RmrkTypesCollectionInfo, RmrkTypesNftChild, RmrkTypesNftInfo, RmrkTypesPartType, RmrkTypesPropertyInfo, RmrkTypesResourceInfo, RmrkTypesTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenData } from './unique';
+import type { PalletEvmAccountBasicCrossAccountIdRepr, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenData } from './unique';
 import type { AugmentedRpc } from '@polkadot/rpc-core/types';
 import type { Metadata, StorageKey } from '@polkadot/types';
 import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, u128, u32, u64 } from '@polkadot/types-codec';
@@ -401,19 +401,19 @@
       /**
        * Get base info
        **/
-      base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesBaseInfo>>>;
+      base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsBaseInfo>>>;
       /**
        * Get all Base's parts
        **/
-      baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesPartType>>>;
+      baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsPartType>>>;
       /**
        * Get collection by id
        **/
-      collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesCollectionInfo>>>;
+      collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsCollectionInfo>>>;
       /**
        * Get collection properties
        **/
-      collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesPropertyInfo>>>;
+      collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsPropertyInfo>>>;
       /**
        * Get the latest created collection id
        **/
@@ -421,15 +421,15 @@
       /**
        * Get NFT by collection id and NFT id
        **/
-      nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesNftInfo>>>;
+      nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsNftInfo>>>;
       /**
        * Get NFT children
        **/
-      nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesNftChild>>>;
+      nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsNftChild>>>;
       /**
        * Get NFT properties
        **/
-      nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesPropertyInfo>>>;
+      nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsPropertyInfo>>>;
       /**
        * Get NFT resource priorities
        **/
@@ -437,7 +437,7 @@
       /**
        * Get NFT resources
        **/
-      nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesResourceInfo>>>;
+      nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsResourceInfo>>>;
       /**
        * Get Base's theme names
        **/
@@ -445,7 +445,7 @@
       /**
        * Get Theme's keys values
        **/
-      themes: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, themeName: Text | string, keys: Option<Vec<Text>> | null | object | string | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesTheme>>>;
+      themes: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, themeName: Text | string, keys: Option<Vec<Text>> | null | object | string | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsTheme>>>;
     };
     rpc: {
       /**
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -4,8 +4,8 @@
 import type { ApiTypes } from '@polkadot/api-base/types';
 import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
 import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/api-base/types/submittable' {
   export interface AugmentedSubmittables<ApiType extends ApiTypes> {
@@ -346,6 +346,27 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    rmrkCore: {
+      burnNft: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+      changeCollectionIssuer: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newIssuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, MultiAddress]>;
+      createCollection: AugmentedSubmittable<(metadata: Bytes | string | Uint8Array, max: Option<u32> | null | object | string | Uint8Array, symbol: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, Option<u32>, Bytes]>;
+      destroyCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+      lockCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+      mintNft: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, collectionId: u32 | AnyNumber | Uint8Array, recipient: Option<AccountId32> | null | object | string | Uint8Array, royaltyAmount: Option<Permill> | null | object | string | Uint8Array, metadata: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, Option<AccountId32>, Option<Permill>, Bytes]>;
+      setProperty: AugmentedSubmittable<(rmrkCollectionId: Compact<u32> | AnyNumber | Uint8Array, maybeNftId: Option<u32> | null | object | string | Uint8Array, key: Bytes | string | Uint8Array, value: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Option<u32>, Bytes, Bytes]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
+    rmrkEquip: {
+      createBase: AugmentedSubmittable<(baseType: Bytes | string | Uint8Array, symbol: Bytes | string | Uint8Array, parts: Vec<UpDataStructsRmrkPartType> | (UpDataStructsRmrkPartType | { FixedPart: any } | { SlotPart: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Bytes, Bytes, Vec<UpDataStructsRmrkPartType>]>;
+      themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: UpDataStructsRmrkTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsRmrkTheme]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     structure: {
       /**
        * Generic tx
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
before · tests/src/interfaces/augment-types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import 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, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTypesAccountIdOrCollectionNftTuple, RmrkTypesBaseInfo, RmrkTypesCollectionInfo, RmrkTypesEquippableList, RmrkTypesFixedPart, RmrkTypesNftChild, RmrkTypesNftInfo, RmrkTypesPartType, RmrkTypesPropertyInfo, RmrkTypesResourceInfo, RmrkTypesRoyaltyInfo, RmrkTypesSlotPart, RmrkTypesTheme, RmrkTypesThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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 './unique';5import type { Data, StorageKey } from '@polkadot/types';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, 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';8import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';9import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';10import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';11import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';12import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeWeight, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';13import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';14import type { BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefySignedCommitment, MmrRootHash, ValidatorSetId } from '@polkadot/types/interfaces/beefy';15import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';16import type { BlockHash } from '@polkadot/types/interfaces/chain';17import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';18import type { StatementKind } from '@polkadot/types/interfaces/claims';19import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';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';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';24import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';25import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';26import type { BlockStats } from '@polkadot/types/interfaces/dev';27import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';28import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';29import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';30import type { EvmAccount, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';31import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';32import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';33import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';34import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';35import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';36import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';37import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';38import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';39import type { MmrLeafProof } from '@polkadot/types/interfaces/mmr';40import type { StorageKind } from '@polkadot/types/interfaces/offchain';41import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';42import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, Scheduling, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';43import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';44import type { Approvals } from '@polkadot/types/interfaces/poll';45import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';46import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';47import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';48import type { RpcMethods } from '@polkadot/types/interfaces/rpc';49import type { AccountId, AccountId20, AccountId32, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, StorageData, StorageProof, TransactionInfo, TransactionPriority, TransactionStorageProof, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';50import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';51import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';52import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';53import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';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';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';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';60import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';61import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';62import type { VestingInfo } from '@polkadot/types/interfaces/vesting';63import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';6465declare module '@polkadot/types/types/registry' {66  export interface InterfaceTypes {67    AbridgedCandidateReceipt: AbridgedCandidateReceipt;68    AbridgedHostConfiguration: AbridgedHostConfiguration;69    AbridgedHrmpChannel: AbridgedHrmpChannel;70    AccountData: AccountData;71    AccountId: AccountId;72    AccountId20: AccountId20;73    AccountId32: AccountId32;74    AccountIdOf: AccountIdOf;75    AccountIndex: AccountIndex;76    AccountInfo: AccountInfo;77    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;78    AccountInfoWithProviders: AccountInfoWithProviders;79    AccountInfoWithRefCount: AccountInfoWithRefCount;80    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;81    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;82    AccountStatus: AccountStatus;83    AccountValidity: AccountValidity;84    AccountVote: AccountVote;85    AccountVoteSplit: AccountVoteSplit;86    AccountVoteStandard: AccountVoteStandard;87    ActiveEraInfo: ActiveEraInfo;88    ActiveGilt: ActiveGilt;89    ActiveGiltsTotal: ActiveGiltsTotal;90    ActiveIndex: ActiveIndex;91    ActiveRecovery: ActiveRecovery;92    Address: Address;93    AliveContractInfo: AliveContractInfo;94    AllowedSlots: AllowedSlots;95    AnySignature: AnySignature;96    ApiId: ApiId;97    ApplyExtrinsicResult: ApplyExtrinsicResult;98    ApprovalFlag: ApprovalFlag;99    Approvals: Approvals;100    ArithmeticError: ArithmeticError;101    AssetApproval: AssetApproval;102    AssetApprovalKey: AssetApprovalKey;103    AssetBalance: AssetBalance;104    AssetDestroyWitness: AssetDestroyWitness;105    AssetDetails: AssetDetails;106    AssetId: AssetId;107    AssetInstance: AssetInstance;108    AssetInstanceV0: AssetInstanceV0;109    AssetInstanceV1: AssetInstanceV1;110    AssetInstanceV2: AssetInstanceV2;111    AssetMetadata: AssetMetadata;112    AssetOptions: AssetOptions;113    AssignmentId: AssignmentId;114    AssignmentKind: AssignmentKind;115    AttestedCandidate: AttestedCandidate;116    AuctionIndex: AuctionIndex;117    AuthIndex: AuthIndex;118    AuthorityDiscoveryId: AuthorityDiscoveryId;119    AuthorityId: AuthorityId;120    AuthorityIndex: AuthorityIndex;121    AuthorityList: AuthorityList;122    AuthoritySet: AuthoritySet;123    AuthoritySetChange: AuthoritySetChange;124    AuthoritySetChanges: AuthoritySetChanges;125    AuthoritySignature: AuthoritySignature;126    AuthorityWeight: AuthorityWeight;127    AvailabilityBitfield: AvailabilityBitfield;128    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;129    BabeAuthorityWeight: BabeAuthorityWeight;130    BabeBlockWeight: BabeBlockWeight;131    BabeEpochConfiguration: BabeEpochConfiguration;132    BabeEquivocationProof: BabeEquivocationProof;133    BabeWeight: BabeWeight;134    BackedCandidate: BackedCandidate;135    Balance: Balance;136    BalanceLock: BalanceLock;137    BalanceLockTo212: BalanceLockTo212;138    BalanceOf: BalanceOf;139    BalanceStatus: BalanceStatus;140    BeefyCommitment: BeefyCommitment;141    BeefyId: BeefyId;142    BeefyKey: BeefyKey;143    BeefyNextAuthoritySet: BeefyNextAuthoritySet;144    BeefyPayload: BeefyPayload;145    BeefySignedCommitment: BeefySignedCommitment;146    Bid: Bid;147    Bidder: Bidder;148    BidKind: BidKind;149    BitVec: BitVec;150    Block: Block;151    BlockAttestations: BlockAttestations;152    BlockHash: BlockHash;153    BlockLength: BlockLength;154    BlockNumber: BlockNumber;155    BlockNumberFor: BlockNumberFor;156    BlockNumberOf: BlockNumberOf;157    BlockStats: BlockStats;158    BlockTrace: BlockTrace;159    BlockTraceEvent: BlockTraceEvent;160    BlockTraceEventData: BlockTraceEventData;161    BlockTraceSpan: BlockTraceSpan;162    BlockV0: BlockV0;163    BlockV1: BlockV1;164    BlockV2: BlockV2;165    BlockWeights: BlockWeights;166    BodyId: BodyId;167    BodyPart: BodyPart;168    bool: bool;169    Bool: Bool;170    Bounty: Bounty;171    BountyIndex: BountyIndex;172    BountyStatus: BountyStatus;173    BountyStatusActive: BountyStatusActive;174    BountyStatusCuratorProposed: BountyStatusCuratorProposed;175    BountyStatusPendingPayout: BountyStatusPendingPayout;176    BridgedBlockHash: BridgedBlockHash;177    BridgedBlockNumber: BridgedBlockNumber;178    BridgedHeader: BridgedHeader;179    BridgeMessageId: BridgeMessageId;180    BufferedSessionChange: BufferedSessionChange;181    Bytes: Bytes;182    Call: Call;183    CallHash: CallHash;184    CallHashOf: CallHashOf;185    CallIndex: CallIndex;186    CallOrigin: CallOrigin;187    CandidateCommitments: CandidateCommitments;188    CandidateDescriptor: CandidateDescriptor;189    CandidateHash: CandidateHash;190    CandidateInfo: CandidateInfo;191    CandidatePendingAvailability: CandidatePendingAvailability;192    CandidateReceipt: CandidateReceipt;193    ChainId: ChainId;194    ChainProperties: ChainProperties;195    ChainType: ChainType;196    ChangesTrieConfiguration: ChangesTrieConfiguration;197    ChangesTrieSignal: ChangesTrieSignal;198    ClassDetails: ClassDetails;199    ClassId: ClassId;200    ClassMetadata: ClassMetadata;201    CodecHash: CodecHash;202    CodeHash: CodeHash;203    CodeSource: CodeSource;204    CodeUploadRequest: CodeUploadRequest;205    CodeUploadResult: CodeUploadResult;206    CodeUploadResultValue: CodeUploadResultValue;207    CollatorId: CollatorId;208    CollatorSignature: CollatorSignature;209    CollectiveOrigin: CollectiveOrigin;210    CommittedCandidateReceipt: CommittedCandidateReceipt;211    CompactAssignments: CompactAssignments;212    CompactAssignmentsTo257: CompactAssignmentsTo257;213    CompactAssignmentsTo265: CompactAssignmentsTo265;214    CompactAssignmentsWith16: CompactAssignmentsWith16;215    CompactAssignmentsWith24: CompactAssignmentsWith24;216    CompactScore: CompactScore;217    CompactScoreCompact: CompactScoreCompact;218    ConfigData: ConfigData;219    Consensus: Consensus;220    ConsensusEngineId: ConsensusEngineId;221    ConsumedWeight: ConsumedWeight;222    ContractCallFlags: ContractCallFlags;223    ContractCallRequest: ContractCallRequest;224    ContractConstructorSpecLatest: ContractConstructorSpecLatest;225    ContractConstructorSpecV0: ContractConstructorSpecV0;226    ContractConstructorSpecV1: ContractConstructorSpecV1;227    ContractConstructorSpecV2: ContractConstructorSpecV2;228    ContractConstructorSpecV3: ContractConstructorSpecV3;229    ContractContractSpecV0: ContractContractSpecV0;230    ContractContractSpecV1: ContractContractSpecV1;231    ContractContractSpecV2: ContractContractSpecV2;232    ContractContractSpecV3: ContractContractSpecV3;233    ContractCryptoHasher: ContractCryptoHasher;234    ContractDiscriminant: ContractDiscriminant;235    ContractDisplayName: ContractDisplayName;236    ContractEventParamSpecLatest: ContractEventParamSpecLatest;237    ContractEventParamSpecV0: ContractEventParamSpecV0;238    ContractEventParamSpecV2: ContractEventParamSpecV2;239    ContractEventSpecLatest: ContractEventSpecLatest;240    ContractEventSpecV0: ContractEventSpecV0;241    ContractEventSpecV1: ContractEventSpecV1;242    ContractEventSpecV2: ContractEventSpecV2;243    ContractExecResult: ContractExecResult;244    ContractExecResultErr: ContractExecResultErr;245    ContractExecResultErrModule: ContractExecResultErrModule;246    ContractExecResultOk: ContractExecResultOk;247    ContractExecResultResult: ContractExecResultResult;248    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;249    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;250    ContractExecResultTo255: ContractExecResultTo255;251    ContractExecResultTo260: ContractExecResultTo260;252    ContractExecResultTo267: ContractExecResultTo267;253    ContractInfo: ContractInfo;254    ContractInstantiateResult: ContractInstantiateResult;255    ContractInstantiateResultTo267: ContractInstantiateResultTo267;256    ContractInstantiateResultTo299: ContractInstantiateResultTo299;257    ContractLayoutArray: ContractLayoutArray;258    ContractLayoutCell: ContractLayoutCell;259    ContractLayoutEnum: ContractLayoutEnum;260    ContractLayoutHash: ContractLayoutHash;261    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;262    ContractLayoutKey: ContractLayoutKey;263    ContractLayoutStruct: ContractLayoutStruct;264    ContractLayoutStructField: ContractLayoutStructField;265    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;266    ContractMessageParamSpecV0: ContractMessageParamSpecV0;267    ContractMessageParamSpecV2: ContractMessageParamSpecV2;268    ContractMessageSpecLatest: ContractMessageSpecLatest;269    ContractMessageSpecV0: ContractMessageSpecV0;270    ContractMessageSpecV1: ContractMessageSpecV1;271    ContractMessageSpecV2: ContractMessageSpecV2;272    ContractMetadata: ContractMetadata;273    ContractMetadataLatest: ContractMetadataLatest;274    ContractMetadataV0: ContractMetadataV0;275    ContractMetadataV1: ContractMetadataV1;276    ContractMetadataV2: ContractMetadataV2;277    ContractMetadataV3: ContractMetadataV3;278    ContractProject: ContractProject;279    ContractProjectContract: ContractProjectContract;280    ContractProjectInfo: ContractProjectInfo;281    ContractProjectSource: ContractProjectSource;282    ContractProjectV0: ContractProjectV0;283    ContractReturnFlags: ContractReturnFlags;284    ContractSelector: ContractSelector;285    ContractStorageKey: ContractStorageKey;286    ContractStorageLayout: ContractStorageLayout;287    ContractTypeSpec: ContractTypeSpec;288    Conviction: Conviction;289    CoreAssignment: CoreAssignment;290    CoreIndex: CoreIndex;291    CoreOccupied: CoreOccupied;292    CrateVersion: CrateVersion;293    CreatedBlock: CreatedBlock;294    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;295    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;296    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;297    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;298    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;299    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;300    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;301    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;302    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;303    CumulusPalletXcmCall: CumulusPalletXcmCall;304    CumulusPalletXcmError: CumulusPalletXcmError;305    CumulusPalletXcmEvent: CumulusPalletXcmEvent;306    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;307    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;308    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;309    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;310    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;311    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;312    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;313    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;314    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;315    Data: Data;316    DeferredOffenceOf: DeferredOffenceOf;317    DefunctVoter: DefunctVoter;318    DelayKind: DelayKind;319    DelayKindBest: DelayKindBest;320    Delegations: Delegations;321    DeletedContract: DeletedContract;322    DeliveredMessages: DeliveredMessages;323    DepositBalance: DepositBalance;324    DepositBalanceOf: DepositBalanceOf;325    DestroyWitness: DestroyWitness;326    Digest: Digest;327    DigestItem: DigestItem;328    DigestOf: DigestOf;329    DispatchClass: DispatchClass;330    DispatchError: DispatchError;331    DispatchErrorModule: DispatchErrorModule;332    DispatchErrorModuleU8a: DispatchErrorModuleU8a;333    DispatchErrorTo198: DispatchErrorTo198;334    DispatchFeePayment: DispatchFeePayment;335    DispatchInfo: DispatchInfo;336    DispatchInfoTo190: DispatchInfoTo190;337    DispatchInfoTo244: DispatchInfoTo244;338    DispatchOutcome: DispatchOutcome;339    DispatchResult: DispatchResult;340    DispatchResultOf: DispatchResultOf;341    DispatchResultTo198: DispatchResultTo198;342    DisputeLocation: DisputeLocation;343    DisputeResult: DisputeResult;344    DisputeState: DisputeState;345    DisputeStatement: DisputeStatement;346    DisputeStatementSet: DisputeStatementSet;347    DoubleEncodedCall: DoubleEncodedCall;348    DoubleVoteReport: DoubleVoteReport;349    DownwardMessage: DownwardMessage;350    EcdsaSignature: EcdsaSignature;351    Ed25519Signature: Ed25519Signature;352    EIP1559Transaction: EIP1559Transaction;353    EIP2930Transaction: EIP2930Transaction;354    ElectionCompute: ElectionCompute;355    ElectionPhase: ElectionPhase;356    ElectionResult: ElectionResult;357    ElectionScore: ElectionScore;358    ElectionSize: ElectionSize;359    ElectionStatus: ElectionStatus;360    EncodedFinalityProofs: EncodedFinalityProofs;361    EncodedJustification: EncodedJustification;362    EpochAuthorship: EpochAuthorship;363    Era: Era;364    EraIndex: EraIndex;365    EraPoints: EraPoints;366    EraRewardPoints: EraRewardPoints;367    EraRewards: EraRewards;368    ErrorMetadataLatest: ErrorMetadataLatest;369    ErrorMetadataV10: ErrorMetadataV10;370    ErrorMetadataV11: ErrorMetadataV11;371    ErrorMetadataV12: ErrorMetadataV12;372    ErrorMetadataV13: ErrorMetadataV13;373    ErrorMetadataV14: ErrorMetadataV14;374    ErrorMetadataV9: ErrorMetadataV9;375    EthAccessList: EthAccessList;376    EthAccessListItem: EthAccessListItem;377    EthAccount: EthAccount;378    EthAddress: EthAddress;379    EthBlock: EthBlock;380    EthBloom: EthBloom;381    EthbloomBloom: EthbloomBloom;382    EthCallRequest: EthCallRequest;383    EthereumAccountId: EthereumAccountId;384    EthereumAddress: EthereumAddress;385    EthereumBlock: EthereumBlock;386    EthereumHeader: EthereumHeader;387    EthereumLog: EthereumLog;388    EthereumLookupSource: EthereumLookupSource;389    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;390    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;391    EthereumSignature: EthereumSignature;392    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;393    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;394    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;395    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;396    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;397    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;398    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;399    EthereumTypesHashH64: EthereumTypesHashH64;400    EthFilter: EthFilter;401    EthFilterAddress: EthFilterAddress;402    EthFilterChanges: EthFilterChanges;403    EthFilterTopic: EthFilterTopic;404    EthFilterTopicEntry: EthFilterTopicEntry;405    EthFilterTopicInner: EthFilterTopicInner;406    EthHeader: EthHeader;407    EthLog: EthLog;408    EthReceipt: EthReceipt;409    EthRichBlock: EthRichBlock;410    EthRichHeader: EthRichHeader;411    EthStorageProof: EthStorageProof;412    EthSubKind: EthSubKind;413    EthSubParams: EthSubParams;414    EthSubResult: EthSubResult;415    EthSyncInfo: EthSyncInfo;416    EthSyncStatus: EthSyncStatus;417    EthTransaction: EthTransaction;418    EthTransactionAction: EthTransactionAction;419    EthTransactionCondition: EthTransactionCondition;420    EthTransactionRequest: EthTransactionRequest;421    EthTransactionSignature: EthTransactionSignature;422    EthTransactionStatus: EthTransactionStatus;423    EthWork: EthWork;424    Event: Event;425    EventId: EventId;426    EventIndex: EventIndex;427    EventMetadataLatest: EventMetadataLatest;428    EventMetadataV10: EventMetadataV10;429    EventMetadataV11: EventMetadataV11;430    EventMetadataV12: EventMetadataV12;431    EventMetadataV13: EventMetadataV13;432    EventMetadataV14: EventMetadataV14;433    EventMetadataV9: EventMetadataV9;434    EventRecord: EventRecord;435    EvmAccount: EvmAccount;436    EvmCoreErrorExitError: EvmCoreErrorExitError;437    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;438    EvmCoreErrorExitReason: EvmCoreErrorExitReason;439    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;440    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;441    EvmLog: EvmLog;442    EvmVicinity: EvmVicinity;443    ExecReturnValue: ExecReturnValue;444    ExitError: ExitError;445    ExitFatal: ExitFatal;446    ExitReason: ExitReason;447    ExitRevert: ExitRevert;448    ExitSucceed: ExitSucceed;449    ExplicitDisputeStatement: ExplicitDisputeStatement;450    Exposure: Exposure;451    ExtendedBalance: ExtendedBalance;452    Extrinsic: Extrinsic;453    ExtrinsicEra: ExtrinsicEra;454    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;455    ExtrinsicMetadataV11: ExtrinsicMetadataV11;456    ExtrinsicMetadataV12: ExtrinsicMetadataV12;457    ExtrinsicMetadataV13: ExtrinsicMetadataV13;458    ExtrinsicMetadataV14: ExtrinsicMetadataV14;459    ExtrinsicOrHash: ExtrinsicOrHash;460    ExtrinsicPayload: ExtrinsicPayload;461    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;462    ExtrinsicPayloadV4: ExtrinsicPayloadV4;463    ExtrinsicSignature: ExtrinsicSignature;464    ExtrinsicSignatureV4: ExtrinsicSignatureV4;465    ExtrinsicStatus: ExtrinsicStatus;466    ExtrinsicsWeight: ExtrinsicsWeight;467    ExtrinsicUnknown: ExtrinsicUnknown;468    ExtrinsicV4: ExtrinsicV4;469    FeeDetails: FeeDetails;470    Fixed128: Fixed128;471    Fixed64: Fixed64;472    FixedI128: FixedI128;473    FixedI64: FixedI64;474    FixedU128: FixedU128;475    FixedU64: FixedU64;476    Forcing: Forcing;477    ForkTreePendingChange: ForkTreePendingChange;478    ForkTreePendingChangeNode: ForkTreePendingChangeNode;479    FpRpcTransactionStatus: FpRpcTransactionStatus;480    FrameSupportPalletId: FrameSupportPalletId;481    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;482    FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;483    FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;484    FrameSupportWeightsPays: FrameSupportWeightsPays;485    FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;486    FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;487    FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;488    FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;489    FrameSupportWeightsWeightToFeeCoefficient: FrameSupportWeightsWeightToFeeCoefficient;490    FrameSystemAccountInfo: FrameSystemAccountInfo;491    FrameSystemCall: FrameSystemCall;492    FrameSystemError: FrameSystemError;493    FrameSystemEvent: FrameSystemEvent;494    FrameSystemEventRecord: FrameSystemEventRecord;495    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;496    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;497    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;498    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;499    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;500    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;501    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;502    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;503    FrameSystemPhase: FrameSystemPhase;504    FullIdentification: FullIdentification;505    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;506    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;507    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;508    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;509    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;510    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;511    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;512    FunctionMetadataLatest: FunctionMetadataLatest;513    FunctionMetadataV10: FunctionMetadataV10;514    FunctionMetadataV11: FunctionMetadataV11;515    FunctionMetadataV12: FunctionMetadataV12;516    FunctionMetadataV13: FunctionMetadataV13;517    FunctionMetadataV14: FunctionMetadataV14;518    FunctionMetadataV9: FunctionMetadataV9;519    FundIndex: FundIndex;520    FundInfo: FundInfo;521    Fungibility: Fungibility;522    FungibilityV0: FungibilityV0;523    FungibilityV1: FungibilityV1;524    FungibilityV2: FungibilityV2;525    Gas: Gas;526    GiltBid: GiltBid;527    GlobalValidationData: GlobalValidationData;528    GlobalValidationSchedule: GlobalValidationSchedule;529    GrandpaCommit: GrandpaCommit;530    GrandpaEquivocation: GrandpaEquivocation;531    GrandpaEquivocationProof: GrandpaEquivocationProof;532    GrandpaEquivocationValue: GrandpaEquivocationValue;533    GrandpaJustification: GrandpaJustification;534    GrandpaPrecommit: GrandpaPrecommit;535    GrandpaPrevote: GrandpaPrevote;536    GrandpaSignedPrecommit: GrandpaSignedPrecommit;537    GroupIndex: GroupIndex;538    H1024: H1024;539    H128: H128;540    H160: H160;541    H2048: H2048;542    H256: H256;543    H32: H32;544    H512: H512;545    H64: H64;546    Hash: Hash;547    HeadData: HeadData;548    Header: Header;549    HeaderPartial: HeaderPartial;550    Health: Health;551    Heartbeat: Heartbeat;552    HeartbeatTo244: HeartbeatTo244;553    HostConfiguration: HostConfiguration;554    HostFnWeights: HostFnWeights;555    HostFnWeightsTo264: HostFnWeightsTo264;556    HrmpChannel: HrmpChannel;557    HrmpChannelId: HrmpChannelId;558    HrmpOpenChannelRequest: HrmpOpenChannelRequest;559    i128: i128;560    I128: I128;561    i16: i16;562    I16: I16;563    i256: i256;564    I256: I256;565    i32: i32;566    I32: I32;567    I32F32: I32F32;568    i64: i64;569    I64: I64;570    i8: i8;571    I8: I8;572    IdentificationTuple: IdentificationTuple;573    IdentityFields: IdentityFields;574    IdentityInfo: IdentityInfo;575    IdentityInfoAdditional: IdentityInfoAdditional;576    IdentityInfoTo198: IdentityInfoTo198;577    IdentityJudgement: IdentityJudgement;578    ImmortalEra: ImmortalEra;579    ImportedAux: ImportedAux;580    InboundDownwardMessage: InboundDownwardMessage;581    InboundHrmpMessage: InboundHrmpMessage;582    InboundHrmpMessages: InboundHrmpMessages;583    InboundLaneData: InboundLaneData;584    InboundRelayer: InboundRelayer;585    InboundStatus: InboundStatus;586    IncludedBlocks: IncludedBlocks;587    InclusionFee: InclusionFee;588    IncomingParachain: IncomingParachain;589    IncomingParachainDeploy: IncomingParachainDeploy;590    IncomingParachainFixed: IncomingParachainFixed;591    Index: Index;592    IndicesLookupSource: IndicesLookupSource;593    IndividualExposure: IndividualExposure;594    InitializationData: InitializationData;595    InstanceDetails: InstanceDetails;596    InstanceId: InstanceId;597    InstanceMetadata: InstanceMetadata;598    InstantiateRequest: InstantiateRequest;599    InstantiateRequestV1: InstantiateRequestV1;600    InstantiateRequestV2: InstantiateRequestV2;601    InstantiateReturnValue: InstantiateReturnValue;602    InstantiateReturnValueOk: InstantiateReturnValueOk;603    InstantiateReturnValueTo267: InstantiateReturnValueTo267;604    InstructionV2: InstructionV2;605    InstructionWeights: InstructionWeights;606    InteriorMultiLocation: InteriorMultiLocation;607    InvalidDisputeStatementKind: InvalidDisputeStatementKind;608    InvalidTransaction: InvalidTransaction;609    Json: Json;610    Junction: Junction;611    Junctions: Junctions;612    JunctionsV1: JunctionsV1;613    JunctionsV2: JunctionsV2;614    JunctionV0: JunctionV0;615    JunctionV1: JunctionV1;616    JunctionV2: JunctionV2;617    Justification: Justification;618    JustificationNotification: JustificationNotification;619    Justifications: Justifications;620    Key: Key;621    KeyOwnerProof: KeyOwnerProof;622    Keys: Keys;623    KeyType: KeyType;624    KeyTypeId: KeyTypeId;625    KeyValue: KeyValue;626    KeyValueOption: KeyValueOption;627    Kind: Kind;628    LaneId: LaneId;629    LastContribution: LastContribution;630    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;631    LeasePeriod: LeasePeriod;632    LeasePeriodOf: LeasePeriodOf;633    LegacyTransaction: LegacyTransaction;634    Limits: Limits;635    LimitsTo264: LimitsTo264;636    LocalValidationData: LocalValidationData;637    LockIdentifier: LockIdentifier;638    LookupSource: LookupSource;639    LookupTarget: LookupTarget;640    LotteryConfig: LotteryConfig;641    MaybeRandomness: MaybeRandomness;642    MaybeVrf: MaybeVrf;643    MemberCount: MemberCount;644    MembershipProof: MembershipProof;645    MessageData: MessageData;646    MessageId: MessageId;647    MessageIngestionType: MessageIngestionType;648    MessageKey: MessageKey;649    MessageNonce: MessageNonce;650    MessageQueueChain: MessageQueueChain;651    MessagesDeliveryProofOf: MessagesDeliveryProofOf;652    MessagesProofOf: MessagesProofOf;653    MessagingStateSnapshot: MessagingStateSnapshot;654    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;655    MetadataAll: MetadataAll;656    MetadataLatest: MetadataLatest;657    MetadataV10: MetadataV10;658    MetadataV11: MetadataV11;659    MetadataV12: MetadataV12;660    MetadataV13: MetadataV13;661    MetadataV14: MetadataV14;662    MetadataV9: MetadataV9;663    MigrationStatusResult: MigrationStatusResult;664    MmrLeafProof: MmrLeafProof;665    MmrRootHash: MmrRootHash;666    ModuleConstantMetadataV10: ModuleConstantMetadataV10;667    ModuleConstantMetadataV11: ModuleConstantMetadataV11;668    ModuleConstantMetadataV12: ModuleConstantMetadataV12;669    ModuleConstantMetadataV13: ModuleConstantMetadataV13;670    ModuleConstantMetadataV9: ModuleConstantMetadataV9;671    ModuleId: ModuleId;672    ModuleMetadataV10: ModuleMetadataV10;673    ModuleMetadataV11: ModuleMetadataV11;674    ModuleMetadataV12: ModuleMetadataV12;675    ModuleMetadataV13: ModuleMetadataV13;676    ModuleMetadataV9: ModuleMetadataV9;677    Moment: Moment;678    MomentOf: MomentOf;679    MoreAttestations: MoreAttestations;680    MortalEra: MortalEra;681    MultiAddress: MultiAddress;682    MultiAsset: MultiAsset;683    MultiAssetFilter: MultiAssetFilter;684    MultiAssetFilterV1: MultiAssetFilterV1;685    MultiAssetFilterV2: MultiAssetFilterV2;686    MultiAssets: MultiAssets;687    MultiAssetsV1: MultiAssetsV1;688    MultiAssetsV2: MultiAssetsV2;689    MultiAssetV0: MultiAssetV0;690    MultiAssetV1: MultiAssetV1;691    MultiAssetV2: MultiAssetV2;692    MultiDisputeStatementSet: MultiDisputeStatementSet;693    MultiLocation: MultiLocation;694    MultiLocationV0: MultiLocationV0;695    MultiLocationV1: MultiLocationV1;696    MultiLocationV2: MultiLocationV2;697    Multiplier: Multiplier;698    Multisig: Multisig;699    MultiSignature: MultiSignature;700    MultiSigner: MultiSigner;701    NetworkId: NetworkId;702    NetworkState: NetworkState;703    NetworkStatePeerset: NetworkStatePeerset;704    NetworkStatePeersetInfo: NetworkStatePeersetInfo;705    NewBidder: NewBidder;706    NextAuthority: NextAuthority;707    NextConfigDescriptor: NextConfigDescriptor;708    NextConfigDescriptorV1: NextConfigDescriptorV1;709    NodeRole: NodeRole;710    Nominations: Nominations;711    NominatorIndex: NominatorIndex;712    NominatorIndexCompact: NominatorIndexCompact;713    NotConnectedPeer: NotConnectedPeer;714    Null: Null;715    OffchainAccuracy: OffchainAccuracy;716    OffchainAccuracyCompact: OffchainAccuracyCompact;717    OffenceDetails: OffenceDetails;718    Offender: Offender;719    OpalRuntimeRuntime: OpalRuntimeRuntime;720    OpaqueCall: OpaqueCall;721    OpaqueMultiaddr: OpaqueMultiaddr;722    OpaqueNetworkState: OpaqueNetworkState;723    OpaquePeerId: OpaquePeerId;724    OpaqueTimeSlot: OpaqueTimeSlot;725    OpenTip: OpenTip;726    OpenTipFinderTo225: OpenTipFinderTo225;727    OpenTipTip: OpenTipTip;728    OpenTipTo225: OpenTipTo225;729    OperatingMode: OperatingMode;730    Origin: Origin;731    OriginCaller: OriginCaller;732    OriginKindV0: OriginKindV0;733    OriginKindV1: OriginKindV1;734    OriginKindV2: OriginKindV2;735    OrmlVestingModuleCall: OrmlVestingModuleCall;736    OrmlVestingModuleError: OrmlVestingModuleError;737    OrmlVestingModuleEvent: OrmlVestingModuleEvent;738    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;739    OutboundHrmpMessage: OutboundHrmpMessage;740    OutboundLaneData: OutboundLaneData;741    OutboundMessageFee: OutboundMessageFee;742    OutboundPayload: OutboundPayload;743    OutboundStatus: OutboundStatus;744    Outcome: Outcome;745    OverweightIndex: OverweightIndex;746    Owner: Owner;747    PageCounter: PageCounter;748    PageIndexData: PageIndexData;749    PalletBalancesAccountData: PalletBalancesAccountData;750    PalletBalancesBalanceLock: PalletBalancesBalanceLock;751    PalletBalancesCall: PalletBalancesCall;752    PalletBalancesError: PalletBalancesError;753    PalletBalancesEvent: PalletBalancesEvent;754    PalletBalancesReasons: PalletBalancesReasons;755    PalletBalancesReleases: PalletBalancesReleases;756    PalletBalancesReserveData: PalletBalancesReserveData;757    PalletCallMetadataLatest: PalletCallMetadataLatest;758    PalletCallMetadataV14: PalletCallMetadataV14;759    PalletCommonError: PalletCommonError;760    PalletCommonEvent: PalletCommonEvent;761    PalletConstantMetadataLatest: PalletConstantMetadataLatest;762    PalletConstantMetadataV14: PalletConstantMetadataV14;763    PalletErrorMetadataLatest: PalletErrorMetadataLatest;764    PalletErrorMetadataV14: PalletErrorMetadataV14;765    PalletEthereumCall: PalletEthereumCall;766    PalletEthereumError: PalletEthereumError;767    PalletEthereumEvent: PalletEthereumEvent;768    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;769    PalletEventMetadataLatest: PalletEventMetadataLatest;770    PalletEventMetadataV14: PalletEventMetadataV14;771    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;772    PalletEvmCall: PalletEvmCall;773    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;774    PalletEvmContractHelpersError: PalletEvmContractHelpersError;775    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;776    PalletEvmError: PalletEvmError;777    PalletEvmEvent: PalletEvmEvent;778    PalletEvmMigrationCall: PalletEvmMigrationCall;779    PalletEvmMigrationError: PalletEvmMigrationError;780    PalletFungibleError: PalletFungibleError;781    PalletId: PalletId;782    PalletInflationCall: PalletInflationCall;783    PalletMetadataLatest: PalletMetadataLatest;784    PalletMetadataV14: PalletMetadataV14;785    PalletNonfungibleError: PalletNonfungibleError;786    PalletNonfungibleItemData: PalletNonfungibleItemData;787    PalletRefungibleError: PalletRefungibleError;788    PalletRefungibleItemData: PalletRefungibleItemData;789    PalletsOrigin: PalletsOrigin;790    PalletStorageMetadataLatest: PalletStorageMetadataLatest;791    PalletStorageMetadataV14: PalletStorageMetadataV14;792    PalletStructureCall: PalletStructureCall;793    PalletStructureError: PalletStructureError;794    PalletStructureEvent: PalletStructureEvent;795    PalletSudoCall: PalletSudoCall;796    PalletSudoError: PalletSudoError;797    PalletSudoEvent: PalletSudoEvent;798    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;799    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;800    PalletTimestampCall: PalletTimestampCall;801    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;802    PalletTreasuryCall: PalletTreasuryCall;803    PalletTreasuryError: PalletTreasuryError;804    PalletTreasuryEvent: PalletTreasuryEvent;805    PalletTreasuryProposal: PalletTreasuryProposal;806    PalletUniqueCall: PalletUniqueCall;807    PalletUniqueError: PalletUniqueError;808    PalletUniqueRawEvent: PalletUniqueRawEvent;809    PalletVersion: PalletVersion;810    PalletXcmCall: PalletXcmCall;811    PalletXcmError: PalletXcmError;812    PalletXcmEvent: PalletXcmEvent;813    ParachainDispatchOrigin: ParachainDispatchOrigin;814    ParachainInherentData: ParachainInherentData;815    ParachainProposal: ParachainProposal;816    ParachainsInherentData: ParachainsInherentData;817    ParaGenesisArgs: ParaGenesisArgs;818    ParaId: ParaId;819    ParaInfo: ParaInfo;820    ParaLifecycle: ParaLifecycle;821    Parameter: Parameter;822    ParaPastCodeMeta: ParaPastCodeMeta;823    ParaScheduling: ParaScheduling;824    ParathreadClaim: ParathreadClaim;825    ParathreadClaimQueue: ParathreadClaimQueue;826    ParathreadEntry: ParathreadEntry;827    ParaValidatorIndex: ParaValidatorIndex;828    Pays: Pays;829    Peer: Peer;830    PeerEndpoint: PeerEndpoint;831    PeerEndpointAddr: PeerEndpointAddr;832    PeerInfo: PeerInfo;833    PeerPing: PeerPing;834    PendingChange: PendingChange;835    PendingPause: PendingPause;836    PendingResume: PendingResume;837    Perbill: Perbill;838    Percent: Percent;839    PerDispatchClassU32: PerDispatchClassU32;840    PerDispatchClassWeight: PerDispatchClassWeight;841    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;842    Period: Period;843    Permill: Permill;844    PermissionLatest: PermissionLatest;845    PermissionsV1: PermissionsV1;846    PermissionVersions: PermissionVersions;847    Perquintill: Perquintill;848    PersistedValidationData: PersistedValidationData;849    PerU16: PerU16;850    Phantom: Phantom;851    PhantomData: PhantomData;852    PhantomTypeUpDataStructsBaseInfo: PhantomTypeUpDataStructsBaseInfo;853    PhantomTypeUpDataStructsCollectionInfo: PhantomTypeUpDataStructsCollectionInfo;854    PhantomTypeUpDataStructsNftChild: PhantomTypeUpDataStructsNftChild;855    PhantomTypeUpDataStructsNftInfo: PhantomTypeUpDataStructsNftInfo;856    PhantomTypeUpDataStructsPartType: PhantomTypeUpDataStructsPartType;857    PhantomTypeUpDataStructsPropertyInfo: PhantomTypeUpDataStructsPropertyInfo;858    PhantomTypeUpDataStructsResourceInfo: PhantomTypeUpDataStructsResourceInfo;859    PhantomTypeUpDataStructsRpcCollection: PhantomTypeUpDataStructsRpcCollection;860    PhantomTypeUpDataStructsTheme: PhantomTypeUpDataStructsTheme;861    PhantomTypeUpDataStructsTokenData: PhantomTypeUpDataStructsTokenData;862    Phase: Phase;863    PhragmenScore: PhragmenScore;864    Points: Points;865    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;866    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;867    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;868    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;869    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;870    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;871    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;872    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;873    PortableType: PortableType;874    PortableTypeV14: PortableTypeV14;875    Precommits: Precommits;876    PrefabWasmModule: PrefabWasmModule;877    PrefixedStorageKey: PrefixedStorageKey;878    PreimageStatus: PreimageStatus;879    PreimageStatusAvailable: PreimageStatusAvailable;880    PreRuntime: PreRuntime;881    Prevotes: Prevotes;882    Priority: Priority;883    PriorLock: PriorLock;884    PropIndex: PropIndex;885    Proposal: Proposal;886    ProposalIndex: ProposalIndex;887    ProxyAnnouncement: ProxyAnnouncement;888    ProxyDefinition: ProxyDefinition;889    ProxyState: ProxyState;890    ProxyType: ProxyType;891    QueryId: QueryId;892    QueryStatus: QueryStatus;893    QueueConfigData: QueueConfigData;894    QueuedParathread: QueuedParathread;895    Randomness: Randomness;896    Raw: Raw;897    RawAuraPreDigest: RawAuraPreDigest;898    RawBabePreDigest: RawBabePreDigest;899    RawBabePreDigestCompat: RawBabePreDigestCompat;900    RawBabePreDigestPrimary: RawBabePreDigestPrimary;901    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;902    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;903    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;904    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;905    RawBabePreDigestTo159: RawBabePreDigestTo159;906    RawOrigin: RawOrigin;907    RawSolution: RawSolution;908    RawSolutionTo265: RawSolutionTo265;909    RawSolutionWith16: RawSolutionWith16;910    RawSolutionWith24: RawSolutionWith24;911    RawVRFOutput: RawVRFOutput;912    ReadProof: ReadProof;913    ReadySolution: ReadySolution;914    Reasons: Reasons;915    RecoveryConfig: RecoveryConfig;916    RefCount: RefCount;917    RefCountTo259: RefCountTo259;918    ReferendumIndex: ReferendumIndex;919    ReferendumInfo: ReferendumInfo;920    ReferendumInfoFinished: ReferendumInfoFinished;921    ReferendumInfoTo239: ReferendumInfoTo239;922    ReferendumStatus: ReferendumStatus;923    RegisteredParachainInfo: RegisteredParachainInfo;924    RegistrarIndex: RegistrarIndex;925    RegistrarInfo: RegistrarInfo;926    Registration: Registration;927    RegistrationJudgement: RegistrationJudgement;928    RegistrationTo198: RegistrationTo198;929    RelayBlockNumber: RelayBlockNumber;930    RelayChainBlockNumber: RelayChainBlockNumber;931    RelayChainHash: RelayChainHash;932    RelayerId: RelayerId;933    RelayHash: RelayHash;934    Releases: Releases;935    Remark: Remark;936    Renouncing: Renouncing;937    RentProjection: RentProjection;938    ReplacementTimes: ReplacementTimes;939    ReportedRoundStates: ReportedRoundStates;940    Reporter: Reporter;941    ReportIdOf: ReportIdOf;942    ReserveData: ReserveData;943    ReserveIdentifier: ReserveIdentifier;944    Response: Response;945    ResponseV0: ResponseV0;946    ResponseV1: ResponseV1;947    ResponseV2: ResponseV2;948    ResponseV2Error: ResponseV2Error;949    ResponseV2Result: ResponseV2Result;950    Retriable: Retriable;951    RewardDestination: RewardDestination;952    RewardPoint: RewardPoint;953    RmrkTypesAccountIdOrCollectionNftTuple: RmrkTypesAccountIdOrCollectionNftTuple;954    RmrkTypesBaseInfo: RmrkTypesBaseInfo;955    RmrkTypesCollectionInfo: RmrkTypesCollectionInfo;956    RmrkTypesEquippableList: RmrkTypesEquippableList;957    RmrkTypesFixedPart: RmrkTypesFixedPart;958    RmrkTypesNftChild: RmrkTypesNftChild;959    RmrkTypesNftInfo: RmrkTypesNftInfo;960    RmrkTypesPartType: RmrkTypesPartType;961    RmrkTypesPropertyInfo: RmrkTypesPropertyInfo;962    RmrkTypesResourceInfo: RmrkTypesResourceInfo;963    RmrkTypesRoyaltyInfo: RmrkTypesRoyaltyInfo;964    RmrkTypesSlotPart: RmrkTypesSlotPart;965    RmrkTypesTheme: RmrkTypesTheme;966    RmrkTypesThemeProperty: RmrkTypesThemeProperty;967    RoundSnapshot: RoundSnapshot;968    RoundState: RoundState;969    RpcMethods: RpcMethods;970    RuntimeDbWeight: RuntimeDbWeight;971    RuntimeDispatchInfo: RuntimeDispatchInfo;972    RuntimeVersion: RuntimeVersion;973    RuntimeVersionApi: RuntimeVersionApi;974    RuntimeVersionPartial: RuntimeVersionPartial;975    Schedule: Schedule;976    Scheduled: Scheduled;977    ScheduledTo254: ScheduledTo254;978    SchedulePeriod: SchedulePeriod;979    SchedulePriority: SchedulePriority;980    ScheduleTo212: ScheduleTo212;981    ScheduleTo258: ScheduleTo258;982    ScheduleTo264: ScheduleTo264;983    Scheduling: Scheduling;984    Seal: Seal;985    SealV0: SealV0;986    SeatHolder: SeatHolder;987    SeedOf: SeedOf;988    ServiceQuality: ServiceQuality;989    SessionIndex: SessionIndex;990    SessionInfo: SessionInfo;991    SessionInfoValidatorGroup: SessionInfoValidatorGroup;992    SessionKeys1: SessionKeys1;993    SessionKeys10: SessionKeys10;994    SessionKeys10B: SessionKeys10B;995    SessionKeys2: SessionKeys2;996    SessionKeys3: SessionKeys3;997    SessionKeys4: SessionKeys4;998    SessionKeys5: SessionKeys5;999    SessionKeys6: SessionKeys6;1000    SessionKeys6B: SessionKeys6B;1001    SessionKeys7: SessionKeys7;1002    SessionKeys7B: SessionKeys7B;1003    SessionKeys8: SessionKeys8;1004    SessionKeys8B: SessionKeys8B;1005    SessionKeys9: SessionKeys9;1006    SessionKeys9B: SessionKeys9B;1007    SetId: SetId;1008    SetIndex: SetIndex;1009    Si0Field: Si0Field;1010    Si0LookupTypeId: Si0LookupTypeId;1011    Si0Path: Si0Path;1012    Si0Type: Si0Type;1013    Si0TypeDef: Si0TypeDef;1014    Si0TypeDefArray: Si0TypeDefArray;1015    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1016    Si0TypeDefCompact: Si0TypeDefCompact;1017    Si0TypeDefComposite: Si0TypeDefComposite;1018    Si0TypeDefPhantom: Si0TypeDefPhantom;1019    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1020    Si0TypeDefSequence: Si0TypeDefSequence;1021    Si0TypeDefTuple: Si0TypeDefTuple;1022    Si0TypeDefVariant: Si0TypeDefVariant;1023    Si0TypeParameter: Si0TypeParameter;1024    Si0Variant: Si0Variant;1025    Si1Field: Si1Field;1026    Si1LookupTypeId: Si1LookupTypeId;1027    Si1Path: Si1Path;1028    Si1Type: Si1Type;1029    Si1TypeDef: Si1TypeDef;1030    Si1TypeDefArray: Si1TypeDefArray;1031    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1032    Si1TypeDefCompact: Si1TypeDefCompact;1033    Si1TypeDefComposite: Si1TypeDefComposite;1034    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1035    Si1TypeDefSequence: Si1TypeDefSequence;1036    Si1TypeDefTuple: Si1TypeDefTuple;1037    Si1TypeDefVariant: Si1TypeDefVariant;1038    Si1TypeParameter: Si1TypeParameter;1039    Si1Variant: Si1Variant;1040    SiField: SiField;1041    Signature: Signature;1042    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1043    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1044    SignedBlock: SignedBlock;1045    SignedBlockWithJustification: SignedBlockWithJustification;1046    SignedBlockWithJustifications: SignedBlockWithJustifications;1047    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1048    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1049    SignedSubmission: SignedSubmission;1050    SignedSubmissionOf: SignedSubmissionOf;1051    SignedSubmissionTo276: SignedSubmissionTo276;1052    SignerPayload: SignerPayload;1053    SigningContext: SigningContext;1054    SiLookupTypeId: SiLookupTypeId;1055    SiPath: SiPath;1056    SiType: SiType;1057    SiTypeDef: SiTypeDef;1058    SiTypeDefArray: SiTypeDefArray;1059    SiTypeDefBitSequence: SiTypeDefBitSequence;1060    SiTypeDefCompact: SiTypeDefCompact;1061    SiTypeDefComposite: SiTypeDefComposite;1062    SiTypeDefPrimitive: SiTypeDefPrimitive;1063    SiTypeDefSequence: SiTypeDefSequence;1064    SiTypeDefTuple: SiTypeDefTuple;1065    SiTypeDefVariant: SiTypeDefVariant;1066    SiTypeParameter: SiTypeParameter;1067    SiVariant: SiVariant;1068    SlashingSpans: SlashingSpans;1069    SlashingSpansTo204: SlashingSpansTo204;1070    SlashJournalEntry: SlashJournalEntry;1071    Slot: Slot;1072    SlotNumber: SlotNumber;1073    SlotRange: SlotRange;1074    SlotRange10: SlotRange10;1075    SocietyJudgement: SocietyJudgement;1076    SocietyVote: SocietyVote;1077    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1078    SolutionSupport: SolutionSupport;1079    SolutionSupports: SolutionSupports;1080    SpanIndex: SpanIndex;1081    SpanRecord: SpanRecord;1082    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1083    SpCoreEd25519Signature: SpCoreEd25519Signature;1084    SpCoreSr25519Signature: SpCoreSr25519Signature;1085    SpecVersion: SpecVersion;1086    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1087    SpRuntimeDigest: SpRuntimeDigest;1088    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1089    SpRuntimeDispatchError: SpRuntimeDispatchError;1090    SpRuntimeModuleError: SpRuntimeModuleError;1091    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1092    SpRuntimeTokenError: SpRuntimeTokenError;1093    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1094    SpTrieStorageProof: SpTrieStorageProof;1095    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1096    Sr25519Signature: Sr25519Signature;1097    StakingLedger: StakingLedger;1098    StakingLedgerTo223: StakingLedgerTo223;1099    StakingLedgerTo240: StakingLedgerTo240;1100    Statement: Statement;1101    StatementKind: StatementKind;1102    StorageChangeSet: StorageChangeSet;1103    StorageData: StorageData;1104    StorageDeposit: StorageDeposit;1105    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1106    StorageEntryMetadataV10: StorageEntryMetadataV10;1107    StorageEntryMetadataV11: StorageEntryMetadataV11;1108    StorageEntryMetadataV12: StorageEntryMetadataV12;1109    StorageEntryMetadataV13: StorageEntryMetadataV13;1110    StorageEntryMetadataV14: StorageEntryMetadataV14;1111    StorageEntryMetadataV9: StorageEntryMetadataV9;1112    StorageEntryModifierLatest: StorageEntryModifierLatest;1113    StorageEntryModifierV10: StorageEntryModifierV10;1114    StorageEntryModifierV11: StorageEntryModifierV11;1115    StorageEntryModifierV12: StorageEntryModifierV12;1116    StorageEntryModifierV13: StorageEntryModifierV13;1117    StorageEntryModifierV14: StorageEntryModifierV14;1118    StorageEntryModifierV9: StorageEntryModifierV9;1119    StorageEntryTypeLatest: StorageEntryTypeLatest;1120    StorageEntryTypeV10: StorageEntryTypeV10;1121    StorageEntryTypeV11: StorageEntryTypeV11;1122    StorageEntryTypeV12: StorageEntryTypeV12;1123    StorageEntryTypeV13: StorageEntryTypeV13;1124    StorageEntryTypeV14: StorageEntryTypeV14;1125    StorageEntryTypeV9: StorageEntryTypeV9;1126    StorageHasher: StorageHasher;1127    StorageHasherV10: StorageHasherV10;1128    StorageHasherV11: StorageHasherV11;1129    StorageHasherV12: StorageHasherV12;1130    StorageHasherV13: StorageHasherV13;1131    StorageHasherV14: StorageHasherV14;1132    StorageHasherV9: StorageHasherV9;1133    StorageKey: StorageKey;1134    StorageKind: StorageKind;1135    StorageMetadataV10: StorageMetadataV10;1136    StorageMetadataV11: StorageMetadataV11;1137    StorageMetadataV12: StorageMetadataV12;1138    StorageMetadataV13: StorageMetadataV13;1139    StorageMetadataV9: StorageMetadataV9;1140    StorageProof: StorageProof;1141    StoredPendingChange: StoredPendingChange;1142    StoredState: StoredState;1143    StrikeCount: StrikeCount;1144    SubId: SubId;1145    SubmissionIndicesOf: SubmissionIndicesOf;1146    Supports: Supports;1147    SyncState: SyncState;1148    SystemInherentData: SystemInherentData;1149    SystemOrigin: SystemOrigin;1150    Tally: Tally;1151    TaskAddress: TaskAddress;1152    TAssetBalance: TAssetBalance;1153    TAssetDepositBalance: TAssetDepositBalance;1154    Text: Text;1155    Timepoint: Timepoint;1156    TokenError: TokenError;1157    TombstoneContractInfo: TombstoneContractInfo;1158    TraceBlockResponse: TraceBlockResponse;1159    TraceError: TraceError;1160    TransactionInfo: TransactionInfo;1161    TransactionPriority: TransactionPriority;1162    TransactionStorageProof: TransactionStorageProof;1163    TransactionV0: TransactionV0;1164    TransactionV1: TransactionV1;1165    TransactionV2: TransactionV2;1166    TransactionValidityError: TransactionValidityError;1167    TransientValidationData: TransientValidationData;1168    TreasuryProposal: TreasuryProposal;1169    TrieId: TrieId;1170    TrieIndex: TrieIndex;1171    Type: Type;1172    u128: u128;1173    U128: U128;1174    u16: u16;1175    U16: U16;1176    u256: u256;1177    U256: U256;1178    u32: u32;1179    U32: U32;1180    U32F32: U32F32;1181    u64: u64;1182    U64: U64;1183    u8: u8;1184    U8: U8;1185    UnappliedSlash: UnappliedSlash;1186    UnappliedSlashOther: UnappliedSlashOther;1187    UncleEntryItem: UncleEntryItem;1188    UnknownTransaction: UnknownTransaction;1189    UnlockChunk: UnlockChunk;1190    UnrewardedRelayer: UnrewardedRelayer;1191    UnrewardedRelayersState: UnrewardedRelayersState;1192    UpDataStructsAccessMode: UpDataStructsAccessMode;1193    UpDataStructsCollection: UpDataStructsCollection;1194    UpDataStructsCollectionField: UpDataStructsCollectionField;1195    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1196    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1197    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1198    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1199    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1200    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1201    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1202    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1203    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1204    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1205    UpDataStructsCreateRefungibleExData: UpDataStructsCreateRefungibleExData;1206    UpDataStructsNestingRule: UpDataStructsNestingRule;1207    UpDataStructsProperties: UpDataStructsProperties;1208    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1209    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1210    UpDataStructsProperty: UpDataStructsProperty;1211    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1212    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1213    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1214    UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;1215    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1216    UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;1217    UpDataStructsTokenData: UpDataStructsTokenData;1218    UpgradeGoAhead: UpgradeGoAhead;1219    UpgradeRestriction: UpgradeRestriction;1220    UpwardMessage: UpwardMessage;1221    usize: usize;1222    USize: USize;1223    ValidationCode: ValidationCode;1224    ValidationCodeHash: ValidationCodeHash;1225    ValidationData: ValidationData;1226    ValidationDataType: ValidationDataType;1227    ValidationFunctionParams: ValidationFunctionParams;1228    ValidatorCount: ValidatorCount;1229    ValidatorId: ValidatorId;1230    ValidatorIdOf: ValidatorIdOf;1231    ValidatorIndex: ValidatorIndex;1232    ValidatorIndexCompact: ValidatorIndexCompact;1233    ValidatorPrefs: ValidatorPrefs;1234    ValidatorPrefsTo145: ValidatorPrefsTo145;1235    ValidatorPrefsTo196: ValidatorPrefsTo196;1236    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1237    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1238    ValidatorSetId: ValidatorSetId;1239    ValidatorSignature: ValidatorSignature;1240    ValidDisputeStatementKind: ValidDisputeStatementKind;1241    ValidityAttestation: ValidityAttestation;1242    VecInboundHrmpMessage: VecInboundHrmpMessage;1243    VersionedMultiAsset: VersionedMultiAsset;1244    VersionedMultiAssets: VersionedMultiAssets;1245    VersionedMultiLocation: VersionedMultiLocation;1246    VersionedResponse: VersionedResponse;1247    VersionedXcm: VersionedXcm;1248    VersionMigrationStage: VersionMigrationStage;1249    VestingInfo: VestingInfo;1250    VestingSchedule: VestingSchedule;1251    Vote: Vote;1252    VoteIndex: VoteIndex;1253    Voter: Voter;1254    VoterInfo: VoterInfo;1255    Votes: Votes;1256    VotesTo230: VotesTo230;1257    VoteThreshold: VoteThreshold;1258    VoteWeight: VoteWeight;1259    Voting: Voting;1260    VotingDelegating: VotingDelegating;1261    VotingDirect: VotingDirect;1262    VotingDirectVote: VotingDirectVote;1263    VouchingStatus: VouchingStatus;1264    VrfData: VrfData;1265    VrfOutput: VrfOutput;1266    VrfProof: VrfProof;1267    Weight: Weight;1268    WeightLimitV2: WeightLimitV2;1269    WeightMultiplier: WeightMultiplier;1270    WeightPerClass: WeightPerClass;1271    WeightToFeeCoefficient: WeightToFeeCoefficient;1272    WildFungibility: WildFungibility;1273    WildFungibilityV0: WildFungibilityV0;1274    WildFungibilityV1: WildFungibilityV1;1275    WildFungibilityV2: WildFungibilityV2;1276    WildMultiAsset: WildMultiAsset;1277    WildMultiAssetV1: WildMultiAssetV1;1278    WildMultiAssetV2: WildMultiAssetV2;1279    WinnersData: WinnersData;1280    WinnersData10: WinnersData10;1281    WinnersDataTuple: WinnersDataTuple;1282    WinnersDataTuple10: WinnersDataTuple10;1283    WinningData: WinningData;1284    WinningData10: WinningData10;1285    WinningDataEntry: WinningDataEntry;1286    WithdrawReasons: WithdrawReasons;1287    Xcm: Xcm;1288    XcmAssetId: XcmAssetId;1289    XcmDoubleEncoded: XcmDoubleEncoded;1290    XcmError: XcmError;1291    XcmErrorV0: XcmErrorV0;1292    XcmErrorV1: XcmErrorV1;1293    XcmErrorV2: XcmErrorV2;1294    XcmOrder: XcmOrder;1295    XcmOrderV0: XcmOrderV0;1296    XcmOrderV1: XcmOrderV1;1297    XcmOrderV2: XcmOrderV2;1298    XcmOrigin: XcmOrigin;1299    XcmOriginKind: XcmOriginKind;1300    XcmpMessageFormat: XcmpMessageFormat;1301    XcmV0: XcmV0;1302    XcmV0Junction: XcmV0Junction;1303    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1304    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1305    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1306    XcmV0MultiAsset: XcmV0MultiAsset;1307    XcmV0MultiLocation: XcmV0MultiLocation;1308    XcmV0Order: XcmV0Order;1309    XcmV0OriginKind: XcmV0OriginKind;1310    XcmV0Response: XcmV0Response;1311    XcmV0Xcm: XcmV0Xcm;1312    XcmV1: XcmV1;1313    XcmV1Junction: XcmV1Junction;1314    XcmV1MultiAsset: XcmV1MultiAsset;1315    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1316    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1317    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1318    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1319    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1320    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1321    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1322    XcmV1MultiLocation: XcmV1MultiLocation;1323    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1324    XcmV1Order: XcmV1Order;1325    XcmV1Response: XcmV1Response;1326    XcmV1Xcm: XcmV1Xcm;1327    XcmV2: XcmV2;1328    XcmV2Instruction: XcmV2Instruction;1329    XcmV2Response: XcmV2Response;1330    XcmV2TraitsError: XcmV2TraitsError;1331    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1332    XcmV2WeightLimit: XcmV2WeightLimit;1333    XcmV2Xcm: XcmV2Xcm;1334    XcmVersion: XcmVersion;1335    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1336    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1337    XcmVersionedXcm: XcmVersionedXcm;1338  } // InterfaceTypes1339} // declare module
after · tests/src/interfaces/augment-types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import 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, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, 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, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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 './unique';5import type { Data, StorageKey } from '@polkadot/types';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, 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';8import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';9import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';10import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';11import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';12import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeWeight, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';13import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';14import type { BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefySignedCommitment, MmrRootHash, ValidatorSetId } from '@polkadot/types/interfaces/beefy';15import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';16import type { BlockHash } from '@polkadot/types/interfaces/chain';17import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';18import type { StatementKind } from '@polkadot/types/interfaces/claims';19import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';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';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';24import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';25import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';26import type { BlockStats } from '@polkadot/types/interfaces/dev';27import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';28import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';29import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';30import type { EvmAccount, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';31import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';32import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';33import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';34import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';35import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';36import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';37import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';38import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';39import type { MmrLeafProof } from '@polkadot/types/interfaces/mmr';40import type { StorageKind } from '@polkadot/types/interfaces/offchain';41import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';42import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, Scheduling, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';43import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';44import type { Approvals } from '@polkadot/types/interfaces/poll';45import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';46import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';47import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';48import type { RpcMethods } from '@polkadot/types/interfaces/rpc';49import type { AccountId, AccountId20, AccountId32, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, StorageData, StorageProof, TransactionInfo, TransactionPriority, TransactionStorageProof, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';50import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';51import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';52import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';53import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';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';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';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';60import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';61import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';62import type { VestingInfo } from '@polkadot/types/interfaces/vesting';63import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';6465declare module '@polkadot/types/types/registry' {66  export interface InterfaceTypes {67    AbridgedCandidateReceipt: AbridgedCandidateReceipt;68    AbridgedHostConfiguration: AbridgedHostConfiguration;69    AbridgedHrmpChannel: AbridgedHrmpChannel;70    AccountData: AccountData;71    AccountId: AccountId;72    AccountId20: AccountId20;73    AccountId32: AccountId32;74    AccountIdOf: AccountIdOf;75    AccountIndex: AccountIndex;76    AccountInfo: AccountInfo;77    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;78    AccountInfoWithProviders: AccountInfoWithProviders;79    AccountInfoWithRefCount: AccountInfoWithRefCount;80    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;81    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;82    AccountStatus: AccountStatus;83    AccountValidity: AccountValidity;84    AccountVote: AccountVote;85    AccountVoteSplit: AccountVoteSplit;86    AccountVoteStandard: AccountVoteStandard;87    ActiveEraInfo: ActiveEraInfo;88    ActiveGilt: ActiveGilt;89    ActiveGiltsTotal: ActiveGiltsTotal;90    ActiveIndex: ActiveIndex;91    ActiveRecovery: ActiveRecovery;92    Address: Address;93    AliveContractInfo: AliveContractInfo;94    AllowedSlots: AllowedSlots;95    AnySignature: AnySignature;96    ApiId: ApiId;97    ApplyExtrinsicResult: ApplyExtrinsicResult;98    ApprovalFlag: ApprovalFlag;99    Approvals: Approvals;100    ArithmeticError: ArithmeticError;101    AssetApproval: AssetApproval;102    AssetApprovalKey: AssetApprovalKey;103    AssetBalance: AssetBalance;104    AssetDestroyWitness: AssetDestroyWitness;105    AssetDetails: AssetDetails;106    AssetId: AssetId;107    AssetInstance: AssetInstance;108    AssetInstanceV0: AssetInstanceV0;109    AssetInstanceV1: AssetInstanceV1;110    AssetInstanceV2: AssetInstanceV2;111    AssetMetadata: AssetMetadata;112    AssetOptions: AssetOptions;113    AssignmentId: AssignmentId;114    AssignmentKind: AssignmentKind;115    AttestedCandidate: AttestedCandidate;116    AuctionIndex: AuctionIndex;117    AuthIndex: AuthIndex;118    AuthorityDiscoveryId: AuthorityDiscoveryId;119    AuthorityId: AuthorityId;120    AuthorityIndex: AuthorityIndex;121    AuthorityList: AuthorityList;122    AuthoritySet: AuthoritySet;123    AuthoritySetChange: AuthoritySetChange;124    AuthoritySetChanges: AuthoritySetChanges;125    AuthoritySignature: AuthoritySignature;126    AuthorityWeight: AuthorityWeight;127    AvailabilityBitfield: AvailabilityBitfield;128    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;129    BabeAuthorityWeight: BabeAuthorityWeight;130    BabeBlockWeight: BabeBlockWeight;131    BabeEpochConfiguration: BabeEpochConfiguration;132    BabeEquivocationProof: BabeEquivocationProof;133    BabeWeight: BabeWeight;134    BackedCandidate: BackedCandidate;135    Balance: Balance;136    BalanceLock: BalanceLock;137    BalanceLockTo212: BalanceLockTo212;138    BalanceOf: BalanceOf;139    BalanceStatus: BalanceStatus;140    BeefyCommitment: BeefyCommitment;141    BeefyId: BeefyId;142    BeefyKey: BeefyKey;143    BeefyNextAuthoritySet: BeefyNextAuthoritySet;144    BeefyPayload: BeefyPayload;145    BeefySignedCommitment: BeefySignedCommitment;146    Bid: Bid;147    Bidder: Bidder;148    BidKind: BidKind;149    BitVec: BitVec;150    Block: Block;151    BlockAttestations: BlockAttestations;152    BlockHash: BlockHash;153    BlockLength: BlockLength;154    BlockNumber: BlockNumber;155    BlockNumberFor: BlockNumberFor;156    BlockNumberOf: BlockNumberOf;157    BlockStats: BlockStats;158    BlockTrace: BlockTrace;159    BlockTraceEvent: BlockTraceEvent;160    BlockTraceEventData: BlockTraceEventData;161    BlockTraceSpan: BlockTraceSpan;162    BlockV0: BlockV0;163    BlockV1: BlockV1;164    BlockV2: BlockV2;165    BlockWeights: BlockWeights;166    BodyId: BodyId;167    BodyPart: BodyPart;168    bool: bool;169    Bool: Bool;170    Bounty: Bounty;171    BountyIndex: BountyIndex;172    BountyStatus: BountyStatus;173    BountyStatusActive: BountyStatusActive;174    BountyStatusCuratorProposed: BountyStatusCuratorProposed;175    BountyStatusPendingPayout: BountyStatusPendingPayout;176    BridgedBlockHash: BridgedBlockHash;177    BridgedBlockNumber: BridgedBlockNumber;178    BridgedHeader: BridgedHeader;179    BridgeMessageId: BridgeMessageId;180    BufferedSessionChange: BufferedSessionChange;181    Bytes: Bytes;182    Call: Call;183    CallHash: CallHash;184    CallHashOf: CallHashOf;185    CallIndex: CallIndex;186    CallOrigin: CallOrigin;187    CandidateCommitments: CandidateCommitments;188    CandidateDescriptor: CandidateDescriptor;189    CandidateHash: CandidateHash;190    CandidateInfo: CandidateInfo;191    CandidatePendingAvailability: CandidatePendingAvailability;192    CandidateReceipt: CandidateReceipt;193    ChainId: ChainId;194    ChainProperties: ChainProperties;195    ChainType: ChainType;196    ChangesTrieConfiguration: ChangesTrieConfiguration;197    ChangesTrieSignal: ChangesTrieSignal;198    ClassDetails: ClassDetails;199    ClassId: ClassId;200    ClassMetadata: ClassMetadata;201    CodecHash: CodecHash;202    CodeHash: CodeHash;203    CodeSource: CodeSource;204    CodeUploadRequest: CodeUploadRequest;205    CodeUploadResult: CodeUploadResult;206    CodeUploadResultValue: CodeUploadResultValue;207    CollatorId: CollatorId;208    CollatorSignature: CollatorSignature;209    CollectiveOrigin: CollectiveOrigin;210    CommittedCandidateReceipt: CommittedCandidateReceipt;211    CompactAssignments: CompactAssignments;212    CompactAssignmentsTo257: CompactAssignmentsTo257;213    CompactAssignmentsTo265: CompactAssignmentsTo265;214    CompactAssignmentsWith16: CompactAssignmentsWith16;215    CompactAssignmentsWith24: CompactAssignmentsWith24;216    CompactScore: CompactScore;217    CompactScoreCompact: CompactScoreCompact;218    ConfigData: ConfigData;219    Consensus: Consensus;220    ConsensusEngineId: ConsensusEngineId;221    ConsumedWeight: ConsumedWeight;222    ContractCallFlags: ContractCallFlags;223    ContractCallRequest: ContractCallRequest;224    ContractConstructorSpecLatest: ContractConstructorSpecLatest;225    ContractConstructorSpecV0: ContractConstructorSpecV0;226    ContractConstructorSpecV1: ContractConstructorSpecV1;227    ContractConstructorSpecV2: ContractConstructorSpecV2;228    ContractConstructorSpecV3: ContractConstructorSpecV3;229    ContractContractSpecV0: ContractContractSpecV0;230    ContractContractSpecV1: ContractContractSpecV1;231    ContractContractSpecV2: ContractContractSpecV2;232    ContractContractSpecV3: ContractContractSpecV3;233    ContractCryptoHasher: ContractCryptoHasher;234    ContractDiscriminant: ContractDiscriminant;235    ContractDisplayName: ContractDisplayName;236    ContractEventParamSpecLatest: ContractEventParamSpecLatest;237    ContractEventParamSpecV0: ContractEventParamSpecV0;238    ContractEventParamSpecV2: ContractEventParamSpecV2;239    ContractEventSpecLatest: ContractEventSpecLatest;240    ContractEventSpecV0: ContractEventSpecV0;241    ContractEventSpecV1: ContractEventSpecV1;242    ContractEventSpecV2: ContractEventSpecV2;243    ContractExecResult: ContractExecResult;244    ContractExecResultErr: ContractExecResultErr;245    ContractExecResultErrModule: ContractExecResultErrModule;246    ContractExecResultOk: ContractExecResultOk;247    ContractExecResultResult: ContractExecResultResult;248    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;249    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;250    ContractExecResultTo255: ContractExecResultTo255;251    ContractExecResultTo260: ContractExecResultTo260;252    ContractExecResultTo267: ContractExecResultTo267;253    ContractInfo: ContractInfo;254    ContractInstantiateResult: ContractInstantiateResult;255    ContractInstantiateResultTo267: ContractInstantiateResultTo267;256    ContractInstantiateResultTo299: ContractInstantiateResultTo299;257    ContractLayoutArray: ContractLayoutArray;258    ContractLayoutCell: ContractLayoutCell;259    ContractLayoutEnum: ContractLayoutEnum;260    ContractLayoutHash: ContractLayoutHash;261    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;262    ContractLayoutKey: ContractLayoutKey;263    ContractLayoutStruct: ContractLayoutStruct;264    ContractLayoutStructField: ContractLayoutStructField;265    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;266    ContractMessageParamSpecV0: ContractMessageParamSpecV0;267    ContractMessageParamSpecV2: ContractMessageParamSpecV2;268    ContractMessageSpecLatest: ContractMessageSpecLatest;269    ContractMessageSpecV0: ContractMessageSpecV0;270    ContractMessageSpecV1: ContractMessageSpecV1;271    ContractMessageSpecV2: ContractMessageSpecV2;272    ContractMetadata: ContractMetadata;273    ContractMetadataLatest: ContractMetadataLatest;274    ContractMetadataV0: ContractMetadataV0;275    ContractMetadataV1: ContractMetadataV1;276    ContractMetadataV2: ContractMetadataV2;277    ContractMetadataV3: ContractMetadataV3;278    ContractProject: ContractProject;279    ContractProjectContract: ContractProjectContract;280    ContractProjectInfo: ContractProjectInfo;281    ContractProjectSource: ContractProjectSource;282    ContractProjectV0: ContractProjectV0;283    ContractReturnFlags: ContractReturnFlags;284    ContractSelector: ContractSelector;285    ContractStorageKey: ContractStorageKey;286    ContractStorageLayout: ContractStorageLayout;287    ContractTypeSpec: ContractTypeSpec;288    Conviction: Conviction;289    CoreAssignment: CoreAssignment;290    CoreIndex: CoreIndex;291    CoreOccupied: CoreOccupied;292    CrateVersion: CrateVersion;293    CreatedBlock: CreatedBlock;294    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;295    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;296    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;297    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;298    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;299    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;300    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;301    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;302    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;303    CumulusPalletXcmCall: CumulusPalletXcmCall;304    CumulusPalletXcmError: CumulusPalletXcmError;305    CumulusPalletXcmEvent: CumulusPalletXcmEvent;306    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;307    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;308    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;309    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;310    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;311    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;312    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;313    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;314    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;315    Data: Data;316    DeferredOffenceOf: DeferredOffenceOf;317    DefunctVoter: DefunctVoter;318    DelayKind: DelayKind;319    DelayKindBest: DelayKindBest;320    Delegations: Delegations;321    DeletedContract: DeletedContract;322    DeliveredMessages: DeliveredMessages;323    DepositBalance: DepositBalance;324    DepositBalanceOf: DepositBalanceOf;325    DestroyWitness: DestroyWitness;326    Digest: Digest;327    DigestItem: DigestItem;328    DigestOf: DigestOf;329    DispatchClass: DispatchClass;330    DispatchError: DispatchError;331    DispatchErrorModule: DispatchErrorModule;332    DispatchErrorModuleU8a: DispatchErrorModuleU8a;333    DispatchErrorTo198: DispatchErrorTo198;334    DispatchFeePayment: DispatchFeePayment;335    DispatchInfo: DispatchInfo;336    DispatchInfoTo190: DispatchInfoTo190;337    DispatchInfoTo244: DispatchInfoTo244;338    DispatchOutcome: DispatchOutcome;339    DispatchResult: DispatchResult;340    DispatchResultOf: DispatchResultOf;341    DispatchResultTo198: DispatchResultTo198;342    DisputeLocation: DisputeLocation;343    DisputeResult: DisputeResult;344    DisputeState: DisputeState;345    DisputeStatement: DisputeStatement;346    DisputeStatementSet: DisputeStatementSet;347    DoubleEncodedCall: DoubleEncodedCall;348    DoubleVoteReport: DoubleVoteReport;349    DownwardMessage: DownwardMessage;350    EcdsaSignature: EcdsaSignature;351    Ed25519Signature: Ed25519Signature;352    EIP1559Transaction: EIP1559Transaction;353    EIP2930Transaction: EIP2930Transaction;354    ElectionCompute: ElectionCompute;355    ElectionPhase: ElectionPhase;356    ElectionResult: ElectionResult;357    ElectionScore: ElectionScore;358    ElectionSize: ElectionSize;359    ElectionStatus: ElectionStatus;360    EncodedFinalityProofs: EncodedFinalityProofs;361    EncodedJustification: EncodedJustification;362    EpochAuthorship: EpochAuthorship;363    Era: Era;364    EraIndex: EraIndex;365    EraPoints: EraPoints;366    EraRewardPoints: EraRewardPoints;367    EraRewards: EraRewards;368    ErrorMetadataLatest: ErrorMetadataLatest;369    ErrorMetadataV10: ErrorMetadataV10;370    ErrorMetadataV11: ErrorMetadataV11;371    ErrorMetadataV12: ErrorMetadataV12;372    ErrorMetadataV13: ErrorMetadataV13;373    ErrorMetadataV14: ErrorMetadataV14;374    ErrorMetadataV9: ErrorMetadataV9;375    EthAccessList: EthAccessList;376    EthAccessListItem: EthAccessListItem;377    EthAccount: EthAccount;378    EthAddress: EthAddress;379    EthBlock: EthBlock;380    EthBloom: EthBloom;381    EthbloomBloom: EthbloomBloom;382    EthCallRequest: EthCallRequest;383    EthereumAccountId: EthereumAccountId;384    EthereumAddress: EthereumAddress;385    EthereumBlock: EthereumBlock;386    EthereumHeader: EthereumHeader;387    EthereumLog: EthereumLog;388    EthereumLookupSource: EthereumLookupSource;389    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;390    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;391    EthereumSignature: EthereumSignature;392    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;393    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;394    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;395    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;396    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;397    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;398    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;399    EthereumTypesHashH64: EthereumTypesHashH64;400    EthFilter: EthFilter;401    EthFilterAddress: EthFilterAddress;402    EthFilterChanges: EthFilterChanges;403    EthFilterTopic: EthFilterTopic;404    EthFilterTopicEntry: EthFilterTopicEntry;405    EthFilterTopicInner: EthFilterTopicInner;406    EthHeader: EthHeader;407    EthLog: EthLog;408    EthReceipt: EthReceipt;409    EthRichBlock: EthRichBlock;410    EthRichHeader: EthRichHeader;411    EthStorageProof: EthStorageProof;412    EthSubKind: EthSubKind;413    EthSubParams: EthSubParams;414    EthSubResult: EthSubResult;415    EthSyncInfo: EthSyncInfo;416    EthSyncStatus: EthSyncStatus;417    EthTransaction: EthTransaction;418    EthTransactionAction: EthTransactionAction;419    EthTransactionCondition: EthTransactionCondition;420    EthTransactionRequest: EthTransactionRequest;421    EthTransactionSignature: EthTransactionSignature;422    EthTransactionStatus: EthTransactionStatus;423    EthWork: EthWork;424    Event: Event;425    EventId: EventId;426    EventIndex: EventIndex;427    EventMetadataLatest: EventMetadataLatest;428    EventMetadataV10: EventMetadataV10;429    EventMetadataV11: EventMetadataV11;430    EventMetadataV12: EventMetadataV12;431    EventMetadataV13: EventMetadataV13;432    EventMetadataV14: EventMetadataV14;433    EventMetadataV9: EventMetadataV9;434    EventRecord: EventRecord;435    EvmAccount: EvmAccount;436    EvmCoreErrorExitError: EvmCoreErrorExitError;437    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;438    EvmCoreErrorExitReason: EvmCoreErrorExitReason;439    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;440    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;441    EvmLog: EvmLog;442    EvmVicinity: EvmVicinity;443    ExecReturnValue: ExecReturnValue;444    ExitError: ExitError;445    ExitFatal: ExitFatal;446    ExitReason: ExitReason;447    ExitRevert: ExitRevert;448    ExitSucceed: ExitSucceed;449    ExplicitDisputeStatement: ExplicitDisputeStatement;450    Exposure: Exposure;451    ExtendedBalance: ExtendedBalance;452    Extrinsic: Extrinsic;453    ExtrinsicEra: ExtrinsicEra;454    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;455    ExtrinsicMetadataV11: ExtrinsicMetadataV11;456    ExtrinsicMetadataV12: ExtrinsicMetadataV12;457    ExtrinsicMetadataV13: ExtrinsicMetadataV13;458    ExtrinsicMetadataV14: ExtrinsicMetadataV14;459    ExtrinsicOrHash: ExtrinsicOrHash;460    ExtrinsicPayload: ExtrinsicPayload;461    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;462    ExtrinsicPayloadV4: ExtrinsicPayloadV4;463    ExtrinsicSignature: ExtrinsicSignature;464    ExtrinsicSignatureV4: ExtrinsicSignatureV4;465    ExtrinsicStatus: ExtrinsicStatus;466    ExtrinsicsWeight: ExtrinsicsWeight;467    ExtrinsicUnknown: ExtrinsicUnknown;468    ExtrinsicV4: ExtrinsicV4;469    FeeDetails: FeeDetails;470    Fixed128: Fixed128;471    Fixed64: Fixed64;472    FixedI128: FixedI128;473    FixedI64: FixedI64;474    FixedU128: FixedU128;475    FixedU64: FixedU64;476    Forcing: Forcing;477    ForkTreePendingChange: ForkTreePendingChange;478    ForkTreePendingChangeNode: ForkTreePendingChangeNode;479    FpRpcTransactionStatus: FpRpcTransactionStatus;480    FrameSupportPalletId: FrameSupportPalletId;481    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;482    FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;483    FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;484    FrameSupportWeightsPays: FrameSupportWeightsPays;485    FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;486    FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;487    FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;488    FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;489    FrameSupportWeightsWeightToFeeCoefficient: FrameSupportWeightsWeightToFeeCoefficient;490    FrameSystemAccountInfo: FrameSystemAccountInfo;491    FrameSystemCall: FrameSystemCall;492    FrameSystemError: FrameSystemError;493    FrameSystemEvent: FrameSystemEvent;494    FrameSystemEventRecord: FrameSystemEventRecord;495    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;496    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;497    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;498    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;499    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;500    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;501    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;502    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;503    FrameSystemPhase: FrameSystemPhase;504    FullIdentification: FullIdentification;505    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;506    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;507    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;508    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;509    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;510    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;511    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;512    FunctionMetadataLatest: FunctionMetadataLatest;513    FunctionMetadataV10: FunctionMetadataV10;514    FunctionMetadataV11: FunctionMetadataV11;515    FunctionMetadataV12: FunctionMetadataV12;516    FunctionMetadataV13: FunctionMetadataV13;517    FunctionMetadataV14: FunctionMetadataV14;518    FunctionMetadataV9: FunctionMetadataV9;519    FundIndex: FundIndex;520    FundInfo: FundInfo;521    Fungibility: Fungibility;522    FungibilityV0: FungibilityV0;523    FungibilityV1: FungibilityV1;524    FungibilityV2: FungibilityV2;525    Gas: Gas;526    GiltBid: GiltBid;527    GlobalValidationData: GlobalValidationData;528    GlobalValidationSchedule: GlobalValidationSchedule;529    GrandpaCommit: GrandpaCommit;530    GrandpaEquivocation: GrandpaEquivocation;531    GrandpaEquivocationProof: GrandpaEquivocationProof;532    GrandpaEquivocationValue: GrandpaEquivocationValue;533    GrandpaJustification: GrandpaJustification;534    GrandpaPrecommit: GrandpaPrecommit;535    GrandpaPrevote: GrandpaPrevote;536    GrandpaSignedPrecommit: GrandpaSignedPrecommit;537    GroupIndex: GroupIndex;538    H1024: H1024;539    H128: H128;540    H160: H160;541    H2048: H2048;542    H256: H256;543    H32: H32;544    H512: H512;545    H64: H64;546    Hash: Hash;547    HeadData: HeadData;548    Header: Header;549    HeaderPartial: HeaderPartial;550    Health: Health;551    Heartbeat: Heartbeat;552    HeartbeatTo244: HeartbeatTo244;553    HostConfiguration: HostConfiguration;554    HostFnWeights: HostFnWeights;555    HostFnWeightsTo264: HostFnWeightsTo264;556    HrmpChannel: HrmpChannel;557    HrmpChannelId: HrmpChannelId;558    HrmpOpenChannelRequest: HrmpOpenChannelRequest;559    i128: i128;560    I128: I128;561    i16: i16;562    I16: I16;563    i256: i256;564    I256: I256;565    i32: i32;566    I32: I32;567    I32F32: I32F32;568    i64: i64;569    I64: I64;570    i8: i8;571    I8: I8;572    IdentificationTuple: IdentificationTuple;573    IdentityFields: IdentityFields;574    IdentityInfo: IdentityInfo;575    IdentityInfoAdditional: IdentityInfoAdditional;576    IdentityInfoTo198: IdentityInfoTo198;577    IdentityJudgement: IdentityJudgement;578    ImmortalEra: ImmortalEra;579    ImportedAux: ImportedAux;580    InboundDownwardMessage: InboundDownwardMessage;581    InboundHrmpMessage: InboundHrmpMessage;582    InboundHrmpMessages: InboundHrmpMessages;583    InboundLaneData: InboundLaneData;584    InboundRelayer: InboundRelayer;585    InboundStatus: InboundStatus;586    IncludedBlocks: IncludedBlocks;587    InclusionFee: InclusionFee;588    IncomingParachain: IncomingParachain;589    IncomingParachainDeploy: IncomingParachainDeploy;590    IncomingParachainFixed: IncomingParachainFixed;591    Index: Index;592    IndicesLookupSource: IndicesLookupSource;593    IndividualExposure: IndividualExposure;594    InitializationData: InitializationData;595    InstanceDetails: InstanceDetails;596    InstanceId: InstanceId;597    InstanceMetadata: InstanceMetadata;598    InstantiateRequest: InstantiateRequest;599    InstantiateRequestV1: InstantiateRequestV1;600    InstantiateRequestV2: InstantiateRequestV2;601    InstantiateReturnValue: InstantiateReturnValue;602    InstantiateReturnValueOk: InstantiateReturnValueOk;603    InstantiateReturnValueTo267: InstantiateReturnValueTo267;604    InstructionV2: InstructionV2;605    InstructionWeights: InstructionWeights;606    InteriorMultiLocation: InteriorMultiLocation;607    InvalidDisputeStatementKind: InvalidDisputeStatementKind;608    InvalidTransaction: InvalidTransaction;609    Json: Json;610    Junction: Junction;611    Junctions: Junctions;612    JunctionsV1: JunctionsV1;613    JunctionsV2: JunctionsV2;614    JunctionV0: JunctionV0;615    JunctionV1: JunctionV1;616    JunctionV2: JunctionV2;617    Justification: Justification;618    JustificationNotification: JustificationNotification;619    Justifications: Justifications;620    Key: Key;621    KeyOwnerProof: KeyOwnerProof;622    Keys: Keys;623    KeyType: KeyType;624    KeyTypeId: KeyTypeId;625    KeyValue: KeyValue;626    KeyValueOption: KeyValueOption;627    Kind: Kind;628    LaneId: LaneId;629    LastContribution: LastContribution;630    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;631    LeasePeriod: LeasePeriod;632    LeasePeriodOf: LeasePeriodOf;633    LegacyTransaction: LegacyTransaction;634    Limits: Limits;635    LimitsTo264: LimitsTo264;636    LocalValidationData: LocalValidationData;637    LockIdentifier: LockIdentifier;638    LookupSource: LookupSource;639    LookupTarget: LookupTarget;640    LotteryConfig: LotteryConfig;641    MaybeRandomness: MaybeRandomness;642    MaybeVrf: MaybeVrf;643    MemberCount: MemberCount;644    MembershipProof: MembershipProof;645    MessageData: MessageData;646    MessageId: MessageId;647    MessageIngestionType: MessageIngestionType;648    MessageKey: MessageKey;649    MessageNonce: MessageNonce;650    MessageQueueChain: MessageQueueChain;651    MessagesDeliveryProofOf: MessagesDeliveryProofOf;652    MessagesProofOf: MessagesProofOf;653    MessagingStateSnapshot: MessagingStateSnapshot;654    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;655    MetadataAll: MetadataAll;656    MetadataLatest: MetadataLatest;657    MetadataV10: MetadataV10;658    MetadataV11: MetadataV11;659    MetadataV12: MetadataV12;660    MetadataV13: MetadataV13;661    MetadataV14: MetadataV14;662    MetadataV9: MetadataV9;663    MigrationStatusResult: MigrationStatusResult;664    MmrLeafProof: MmrLeafProof;665    MmrRootHash: MmrRootHash;666    ModuleConstantMetadataV10: ModuleConstantMetadataV10;667    ModuleConstantMetadataV11: ModuleConstantMetadataV11;668    ModuleConstantMetadataV12: ModuleConstantMetadataV12;669    ModuleConstantMetadataV13: ModuleConstantMetadataV13;670    ModuleConstantMetadataV9: ModuleConstantMetadataV9;671    ModuleId: ModuleId;672    ModuleMetadataV10: ModuleMetadataV10;673    ModuleMetadataV11: ModuleMetadataV11;674    ModuleMetadataV12: ModuleMetadataV12;675    ModuleMetadataV13: ModuleMetadataV13;676    ModuleMetadataV9: ModuleMetadataV9;677    Moment: Moment;678    MomentOf: MomentOf;679    MoreAttestations: MoreAttestations;680    MortalEra: MortalEra;681    MultiAddress: MultiAddress;682    MultiAsset: MultiAsset;683    MultiAssetFilter: MultiAssetFilter;684    MultiAssetFilterV1: MultiAssetFilterV1;685    MultiAssetFilterV2: MultiAssetFilterV2;686    MultiAssets: MultiAssets;687    MultiAssetsV1: MultiAssetsV1;688    MultiAssetsV2: MultiAssetsV2;689    MultiAssetV0: MultiAssetV0;690    MultiAssetV1: MultiAssetV1;691    MultiAssetV2: MultiAssetV2;692    MultiDisputeStatementSet: MultiDisputeStatementSet;693    MultiLocation: MultiLocation;694    MultiLocationV0: MultiLocationV0;695    MultiLocationV1: MultiLocationV1;696    MultiLocationV2: MultiLocationV2;697    Multiplier: Multiplier;698    Multisig: Multisig;699    MultiSignature: MultiSignature;700    MultiSigner: MultiSigner;701    NetworkId: NetworkId;702    NetworkState: NetworkState;703    NetworkStatePeerset: NetworkStatePeerset;704    NetworkStatePeersetInfo: NetworkStatePeersetInfo;705    NewBidder: NewBidder;706    NextAuthority: NextAuthority;707    NextConfigDescriptor: NextConfigDescriptor;708    NextConfigDescriptorV1: NextConfigDescriptorV1;709    NodeRole: NodeRole;710    Nominations: Nominations;711    NominatorIndex: NominatorIndex;712    NominatorIndexCompact: NominatorIndexCompact;713    NotConnectedPeer: NotConnectedPeer;714    Null: Null;715    OffchainAccuracy: OffchainAccuracy;716    OffchainAccuracyCompact: OffchainAccuracyCompact;717    OffenceDetails: OffenceDetails;718    Offender: Offender;719    OpalRuntimeRuntime: OpalRuntimeRuntime;720    OpaqueCall: OpaqueCall;721    OpaqueMultiaddr: OpaqueMultiaddr;722    OpaqueNetworkState: OpaqueNetworkState;723    OpaquePeerId: OpaquePeerId;724    OpaqueTimeSlot: OpaqueTimeSlot;725    OpenTip: OpenTip;726    OpenTipFinderTo225: OpenTipFinderTo225;727    OpenTipTip: OpenTipTip;728    OpenTipTo225: OpenTipTo225;729    OperatingMode: OperatingMode;730    Origin: Origin;731    OriginCaller: OriginCaller;732    OriginKindV0: OriginKindV0;733    OriginKindV1: OriginKindV1;734    OriginKindV2: OriginKindV2;735    OrmlVestingModuleCall: OrmlVestingModuleCall;736    OrmlVestingModuleError: OrmlVestingModuleError;737    OrmlVestingModuleEvent: OrmlVestingModuleEvent;738    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;739    OutboundHrmpMessage: OutboundHrmpMessage;740    OutboundLaneData: OutboundLaneData;741    OutboundMessageFee: OutboundMessageFee;742    OutboundPayload: OutboundPayload;743    OutboundStatus: OutboundStatus;744    Outcome: Outcome;745    OverweightIndex: OverweightIndex;746    Owner: Owner;747    PageCounter: PageCounter;748    PageIndexData: PageIndexData;749    PalletBalancesAccountData: PalletBalancesAccountData;750    PalletBalancesBalanceLock: PalletBalancesBalanceLock;751    PalletBalancesCall: PalletBalancesCall;752    PalletBalancesError: PalletBalancesError;753    PalletBalancesEvent: PalletBalancesEvent;754    PalletBalancesReasons: PalletBalancesReasons;755    PalletBalancesReleases: PalletBalancesReleases;756    PalletBalancesReserveData: PalletBalancesReserveData;757    PalletCallMetadataLatest: PalletCallMetadataLatest;758    PalletCallMetadataV14: PalletCallMetadataV14;759    PalletCommonError: PalletCommonError;760    PalletCommonEvent: PalletCommonEvent;761    PalletConstantMetadataLatest: PalletConstantMetadataLatest;762    PalletConstantMetadataV14: PalletConstantMetadataV14;763    PalletErrorMetadataLatest: PalletErrorMetadataLatest;764    PalletErrorMetadataV14: PalletErrorMetadataV14;765    PalletEthereumCall: PalletEthereumCall;766    PalletEthereumError: PalletEthereumError;767    PalletEthereumEvent: PalletEthereumEvent;768    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;769    PalletEventMetadataLatest: PalletEventMetadataLatest;770    PalletEventMetadataV14: PalletEventMetadataV14;771    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;772    PalletEvmCall: PalletEvmCall;773    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;774    PalletEvmContractHelpersError: PalletEvmContractHelpersError;775    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;776    PalletEvmError: PalletEvmError;777    PalletEvmEvent: PalletEvmEvent;778    PalletEvmMigrationCall: PalletEvmMigrationCall;779    PalletEvmMigrationError: PalletEvmMigrationError;780    PalletFungibleError: PalletFungibleError;781    PalletId: PalletId;782    PalletInflationCall: PalletInflationCall;783    PalletMetadataLatest: PalletMetadataLatest;784    PalletMetadataV14: PalletMetadataV14;785    PalletNonfungibleError: PalletNonfungibleError;786    PalletNonfungibleItemData: PalletNonfungibleItemData;787    PalletRefungibleError: PalletRefungibleError;788    PalletRefungibleItemData: PalletRefungibleItemData;789    PalletRmrkCoreCall: PalletRmrkCoreCall;790    PalletRmrkCoreError: PalletRmrkCoreError;791    PalletRmrkCoreEvent: PalletRmrkCoreEvent;792    PalletRmrkEquipCall: PalletRmrkEquipCall;793    PalletRmrkEquipError: PalletRmrkEquipError;794    PalletRmrkEquipEvent: PalletRmrkEquipEvent;795    PalletsOrigin: PalletsOrigin;796    PalletStorageMetadataLatest: PalletStorageMetadataLatest;797    PalletStorageMetadataV14: PalletStorageMetadataV14;798    PalletStructureCall: PalletStructureCall;799    PalletStructureError: PalletStructureError;800    PalletStructureEvent: PalletStructureEvent;801    PalletSudoCall: PalletSudoCall;802    PalletSudoError: PalletSudoError;803    PalletSudoEvent: PalletSudoEvent;804    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;805    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;806    PalletTimestampCall: PalletTimestampCall;807    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;808    PalletTreasuryCall: PalletTreasuryCall;809    PalletTreasuryError: PalletTreasuryError;810    PalletTreasuryEvent: PalletTreasuryEvent;811    PalletTreasuryProposal: PalletTreasuryProposal;812    PalletUniqueCall: PalletUniqueCall;813    PalletUniqueError: PalletUniqueError;814    PalletUniqueRawEvent: PalletUniqueRawEvent;815    PalletVersion: PalletVersion;816    PalletXcmCall: PalletXcmCall;817    PalletXcmError: PalletXcmError;818    PalletXcmEvent: PalletXcmEvent;819    ParachainDispatchOrigin: ParachainDispatchOrigin;820    ParachainInherentData: ParachainInherentData;821    ParachainProposal: ParachainProposal;822    ParachainsInherentData: ParachainsInherentData;823    ParaGenesisArgs: ParaGenesisArgs;824    ParaId: ParaId;825    ParaInfo: ParaInfo;826    ParaLifecycle: ParaLifecycle;827    Parameter: Parameter;828    ParaPastCodeMeta: ParaPastCodeMeta;829    ParaScheduling: ParaScheduling;830    ParathreadClaim: ParathreadClaim;831    ParathreadClaimQueue: ParathreadClaimQueue;832    ParathreadEntry: ParathreadEntry;833    ParaValidatorIndex: ParaValidatorIndex;834    Pays: Pays;835    Peer: Peer;836    PeerEndpoint: PeerEndpoint;837    PeerEndpointAddr: PeerEndpointAddr;838    PeerInfo: PeerInfo;839    PeerPing: PeerPing;840    PendingChange: PendingChange;841    PendingPause: PendingPause;842    PendingResume: PendingResume;843    Perbill: Perbill;844    Percent: Percent;845    PerDispatchClassU32: PerDispatchClassU32;846    PerDispatchClassWeight: PerDispatchClassWeight;847    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;848    Period: Period;849    Permill: Permill;850    PermissionLatest: PermissionLatest;851    PermissionsV1: PermissionsV1;852    PermissionVersions: PermissionVersions;853    Perquintill: Perquintill;854    PersistedValidationData: PersistedValidationData;855    PerU16: PerU16;856    Phantom: Phantom;857    PhantomData: PhantomData;858    PhantomTypeUpDataStructsBaseInfo: PhantomTypeUpDataStructsBaseInfo;859    PhantomTypeUpDataStructsCollectionInfo: PhantomTypeUpDataStructsCollectionInfo;860    PhantomTypeUpDataStructsNftChild: PhantomTypeUpDataStructsNftChild;861    PhantomTypeUpDataStructsNftInfo: PhantomTypeUpDataStructsNftInfo;862    PhantomTypeUpDataStructsPartType: PhantomTypeUpDataStructsPartType;863    PhantomTypeUpDataStructsPropertyInfo: PhantomTypeUpDataStructsPropertyInfo;864    PhantomTypeUpDataStructsResourceInfo: PhantomTypeUpDataStructsResourceInfo;865    PhantomTypeUpDataStructsRpcCollection: PhantomTypeUpDataStructsRpcCollection;866    PhantomTypeUpDataStructsTheme: PhantomTypeUpDataStructsTheme;867    PhantomTypeUpDataStructsTokenData: PhantomTypeUpDataStructsTokenData;868    Phase: Phase;869    PhragmenScore: PhragmenScore;870    Points: Points;871    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;872    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;873    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;874    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;875    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;876    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;877    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;878    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;879    PortableType: PortableType;880    PortableTypeV14: PortableTypeV14;881    Precommits: Precommits;882    PrefabWasmModule: PrefabWasmModule;883    PrefixedStorageKey: PrefixedStorageKey;884    PreimageStatus: PreimageStatus;885    PreimageStatusAvailable: PreimageStatusAvailable;886    PreRuntime: PreRuntime;887    Prevotes: Prevotes;888    Priority: Priority;889    PriorLock: PriorLock;890    PropIndex: PropIndex;891    Proposal: Proposal;892    ProposalIndex: ProposalIndex;893    ProxyAnnouncement: ProxyAnnouncement;894    ProxyDefinition: ProxyDefinition;895    ProxyState: ProxyState;896    ProxyType: ProxyType;897    QueryId: QueryId;898    QueryStatus: QueryStatus;899    QueueConfigData: QueueConfigData;900    QueuedParathread: QueuedParathread;901    Randomness: Randomness;902    Raw: Raw;903    RawAuraPreDigest: RawAuraPreDigest;904    RawBabePreDigest: RawBabePreDigest;905    RawBabePreDigestCompat: RawBabePreDigestCompat;906    RawBabePreDigestPrimary: RawBabePreDigestPrimary;907    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;908    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;909    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;910    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;911    RawBabePreDigestTo159: RawBabePreDigestTo159;912    RawOrigin: RawOrigin;913    RawSolution: RawSolution;914    RawSolutionTo265: RawSolutionTo265;915    RawSolutionWith16: RawSolutionWith16;916    RawSolutionWith24: RawSolutionWith24;917    RawVRFOutput: RawVRFOutput;918    ReadProof: ReadProof;919    ReadySolution: ReadySolution;920    Reasons: Reasons;921    RecoveryConfig: RecoveryConfig;922    RefCount: RefCount;923    RefCountTo259: RefCountTo259;924    ReferendumIndex: ReferendumIndex;925    ReferendumInfo: ReferendumInfo;926    ReferendumInfoFinished: ReferendumInfoFinished;927    ReferendumInfoTo239: ReferendumInfoTo239;928    ReferendumStatus: ReferendumStatus;929    RegisteredParachainInfo: RegisteredParachainInfo;930    RegistrarIndex: RegistrarIndex;931    RegistrarInfo: RegistrarInfo;932    Registration: Registration;933    RegistrationJudgement: RegistrationJudgement;934    RegistrationTo198: RegistrationTo198;935    RelayBlockNumber: RelayBlockNumber;936    RelayChainBlockNumber: RelayChainBlockNumber;937    RelayChainHash: RelayChainHash;938    RelayerId: RelayerId;939    RelayHash: RelayHash;940    Releases: Releases;941    Remark: Remark;942    Renouncing: Renouncing;943    RentProjection: RentProjection;944    ReplacementTimes: ReplacementTimes;945    ReportedRoundStates: ReportedRoundStates;946    Reporter: Reporter;947    ReportIdOf: ReportIdOf;948    ReserveData: ReserveData;949    ReserveIdentifier: ReserveIdentifier;950    Response: Response;951    ResponseV0: ResponseV0;952    ResponseV1: ResponseV1;953    ResponseV2: ResponseV2;954    ResponseV2Error: ResponseV2Error;955    ResponseV2Result: ResponseV2Result;956    Retriable: Retriable;957    RewardDestination: RewardDestination;958    RewardPoint: RewardPoint;959    RoundSnapshot: RoundSnapshot;960    RoundState: RoundState;961    RpcMethods: RpcMethods;962    RuntimeDbWeight: RuntimeDbWeight;963    RuntimeDispatchInfo: RuntimeDispatchInfo;964    RuntimeVersion: RuntimeVersion;965    RuntimeVersionApi: RuntimeVersionApi;966    RuntimeVersionPartial: RuntimeVersionPartial;967    Schedule: Schedule;968    Scheduled: Scheduled;969    ScheduledTo254: ScheduledTo254;970    SchedulePeriod: SchedulePeriod;971    SchedulePriority: SchedulePriority;972    ScheduleTo212: ScheduleTo212;973    ScheduleTo258: ScheduleTo258;974    ScheduleTo264: ScheduleTo264;975    Scheduling: Scheduling;976    Seal: Seal;977    SealV0: SealV0;978    SeatHolder: SeatHolder;979    SeedOf: SeedOf;980    ServiceQuality: ServiceQuality;981    SessionIndex: SessionIndex;982    SessionInfo: SessionInfo;983    SessionInfoValidatorGroup: SessionInfoValidatorGroup;984    SessionKeys1: SessionKeys1;985    SessionKeys10: SessionKeys10;986    SessionKeys10B: SessionKeys10B;987    SessionKeys2: SessionKeys2;988    SessionKeys3: SessionKeys3;989    SessionKeys4: SessionKeys4;990    SessionKeys5: SessionKeys5;991    SessionKeys6: SessionKeys6;992    SessionKeys6B: SessionKeys6B;993    SessionKeys7: SessionKeys7;994    SessionKeys7B: SessionKeys7B;995    SessionKeys8: SessionKeys8;996    SessionKeys8B: SessionKeys8B;997    SessionKeys9: SessionKeys9;998    SessionKeys9B: SessionKeys9B;999    SetId: SetId;1000    SetIndex: SetIndex;1001    Si0Field: Si0Field;1002    Si0LookupTypeId: Si0LookupTypeId;1003    Si0Path: Si0Path;1004    Si0Type: Si0Type;1005    Si0TypeDef: Si0TypeDef;1006    Si0TypeDefArray: Si0TypeDefArray;1007    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1008    Si0TypeDefCompact: Si0TypeDefCompact;1009    Si0TypeDefComposite: Si0TypeDefComposite;1010    Si0TypeDefPhantom: Si0TypeDefPhantom;1011    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1012    Si0TypeDefSequence: Si0TypeDefSequence;1013    Si0TypeDefTuple: Si0TypeDefTuple;1014    Si0TypeDefVariant: Si0TypeDefVariant;1015    Si0TypeParameter: Si0TypeParameter;1016    Si0Variant: Si0Variant;1017    Si1Field: Si1Field;1018    Si1LookupTypeId: Si1LookupTypeId;1019    Si1Path: Si1Path;1020    Si1Type: Si1Type;1021    Si1TypeDef: Si1TypeDef;1022    Si1TypeDefArray: Si1TypeDefArray;1023    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1024    Si1TypeDefCompact: Si1TypeDefCompact;1025    Si1TypeDefComposite: Si1TypeDefComposite;1026    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1027    Si1TypeDefSequence: Si1TypeDefSequence;1028    Si1TypeDefTuple: Si1TypeDefTuple;1029    Si1TypeDefVariant: Si1TypeDefVariant;1030    Si1TypeParameter: Si1TypeParameter;1031    Si1Variant: Si1Variant;1032    SiField: SiField;1033    Signature: Signature;1034    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1035    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1036    SignedBlock: SignedBlock;1037    SignedBlockWithJustification: SignedBlockWithJustification;1038    SignedBlockWithJustifications: SignedBlockWithJustifications;1039    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1040    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1041    SignedSubmission: SignedSubmission;1042    SignedSubmissionOf: SignedSubmissionOf;1043    SignedSubmissionTo276: SignedSubmissionTo276;1044    SignerPayload: SignerPayload;1045    SigningContext: SigningContext;1046    SiLookupTypeId: SiLookupTypeId;1047    SiPath: SiPath;1048    SiType: SiType;1049    SiTypeDef: SiTypeDef;1050    SiTypeDefArray: SiTypeDefArray;1051    SiTypeDefBitSequence: SiTypeDefBitSequence;1052    SiTypeDefCompact: SiTypeDefCompact;1053    SiTypeDefComposite: SiTypeDefComposite;1054    SiTypeDefPrimitive: SiTypeDefPrimitive;1055    SiTypeDefSequence: SiTypeDefSequence;1056    SiTypeDefTuple: SiTypeDefTuple;1057    SiTypeDefVariant: SiTypeDefVariant;1058    SiTypeParameter: SiTypeParameter;1059    SiVariant: SiVariant;1060    SlashingSpans: SlashingSpans;1061    SlashingSpansTo204: SlashingSpansTo204;1062    SlashJournalEntry: SlashJournalEntry;1063    Slot: Slot;1064    SlotNumber: SlotNumber;1065    SlotRange: SlotRange;1066    SlotRange10: SlotRange10;1067    SocietyJudgement: SocietyJudgement;1068    SocietyVote: SocietyVote;1069    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1070    SolutionSupport: SolutionSupport;1071    SolutionSupports: SolutionSupports;1072    SpanIndex: SpanIndex;1073    SpanRecord: SpanRecord;1074    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1075    SpCoreEd25519Signature: SpCoreEd25519Signature;1076    SpCoreSr25519Signature: SpCoreSr25519Signature;1077    SpecVersion: SpecVersion;1078    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1079    SpRuntimeDigest: SpRuntimeDigest;1080    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1081    SpRuntimeDispatchError: SpRuntimeDispatchError;1082    SpRuntimeModuleError: SpRuntimeModuleError;1083    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1084    SpRuntimeTokenError: SpRuntimeTokenError;1085    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1086    SpTrieStorageProof: SpTrieStorageProof;1087    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1088    Sr25519Signature: Sr25519Signature;1089    StakingLedger: StakingLedger;1090    StakingLedgerTo223: StakingLedgerTo223;1091    StakingLedgerTo240: StakingLedgerTo240;1092    Statement: Statement;1093    StatementKind: StatementKind;1094    StorageChangeSet: StorageChangeSet;1095    StorageData: StorageData;1096    StorageDeposit: StorageDeposit;1097    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1098    StorageEntryMetadataV10: StorageEntryMetadataV10;1099    StorageEntryMetadataV11: StorageEntryMetadataV11;1100    StorageEntryMetadataV12: StorageEntryMetadataV12;1101    StorageEntryMetadataV13: StorageEntryMetadataV13;1102    StorageEntryMetadataV14: StorageEntryMetadataV14;1103    StorageEntryMetadataV9: StorageEntryMetadataV9;1104    StorageEntryModifierLatest: StorageEntryModifierLatest;1105    StorageEntryModifierV10: StorageEntryModifierV10;1106    StorageEntryModifierV11: StorageEntryModifierV11;1107    StorageEntryModifierV12: StorageEntryModifierV12;1108    StorageEntryModifierV13: StorageEntryModifierV13;1109    StorageEntryModifierV14: StorageEntryModifierV14;1110    StorageEntryModifierV9: StorageEntryModifierV9;1111    StorageEntryTypeLatest: StorageEntryTypeLatest;1112    StorageEntryTypeV10: StorageEntryTypeV10;1113    StorageEntryTypeV11: StorageEntryTypeV11;1114    StorageEntryTypeV12: StorageEntryTypeV12;1115    StorageEntryTypeV13: StorageEntryTypeV13;1116    StorageEntryTypeV14: StorageEntryTypeV14;1117    StorageEntryTypeV9: StorageEntryTypeV9;1118    StorageHasher: StorageHasher;1119    StorageHasherV10: StorageHasherV10;1120    StorageHasherV11: StorageHasherV11;1121    StorageHasherV12: StorageHasherV12;1122    StorageHasherV13: StorageHasherV13;1123    StorageHasherV14: StorageHasherV14;1124    StorageHasherV9: StorageHasherV9;1125    StorageKey: StorageKey;1126    StorageKind: StorageKind;1127    StorageMetadataV10: StorageMetadataV10;1128    StorageMetadataV11: StorageMetadataV11;1129    StorageMetadataV12: StorageMetadataV12;1130    StorageMetadataV13: StorageMetadataV13;1131    StorageMetadataV9: StorageMetadataV9;1132    StorageProof: StorageProof;1133    StoredPendingChange: StoredPendingChange;1134    StoredState: StoredState;1135    StrikeCount: StrikeCount;1136    SubId: SubId;1137    SubmissionIndicesOf: SubmissionIndicesOf;1138    Supports: Supports;1139    SyncState: SyncState;1140    SystemInherentData: SystemInherentData;1141    SystemOrigin: SystemOrigin;1142    Tally: Tally;1143    TaskAddress: TaskAddress;1144    TAssetBalance: TAssetBalance;1145    TAssetDepositBalance: TAssetDepositBalance;1146    Text: Text;1147    Timepoint: Timepoint;1148    TokenError: TokenError;1149    TombstoneContractInfo: TombstoneContractInfo;1150    TraceBlockResponse: TraceBlockResponse;1151    TraceError: TraceError;1152    TransactionInfo: TransactionInfo;1153    TransactionPriority: TransactionPriority;1154    TransactionStorageProof: TransactionStorageProof;1155    TransactionV0: TransactionV0;1156    TransactionV1: TransactionV1;1157    TransactionV2: TransactionV2;1158    TransactionValidityError: TransactionValidityError;1159    TransientValidationData: TransientValidationData;1160    TreasuryProposal: TreasuryProposal;1161    TrieId: TrieId;1162    TrieIndex: TrieIndex;1163    Type: Type;1164    u128: u128;1165    U128: U128;1166    u16: u16;1167    U16: U16;1168    u256: u256;1169    U256: U256;1170    u32: u32;1171    U32: U32;1172    U32F32: U32F32;1173    u64: u64;1174    U64: U64;1175    u8: u8;1176    U8: U8;1177    UnappliedSlash: UnappliedSlash;1178    UnappliedSlashOther: UnappliedSlashOther;1179    UncleEntryItem: UncleEntryItem;1180    UnknownTransaction: UnknownTransaction;1181    UnlockChunk: UnlockChunk;1182    UnrewardedRelayer: UnrewardedRelayer;1183    UnrewardedRelayersState: UnrewardedRelayersState;1184    UpDataStructsAccessMode: UpDataStructsAccessMode;1185    UpDataStructsCollection: UpDataStructsCollection;1186    UpDataStructsCollectionField: UpDataStructsCollectionField;1187    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1188    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1189    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1190    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1191    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1192    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1193    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1194    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1195    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1196    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1197    UpDataStructsCreateRefungibleExData: UpDataStructsCreateRefungibleExData;1198    UpDataStructsNestingRule: UpDataStructsNestingRule;1199    UpDataStructsProperties: UpDataStructsProperties;1200    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1201    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1202    UpDataStructsProperty: UpDataStructsProperty;1203    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1204    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1205    UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;1206    UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;1207    UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;1208    UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;1209    UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;1210    UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;1211    UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;1212    UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;1213    UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;1214    UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;1215    UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;1216    UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;1217    UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;1218    UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;1219    UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;1220    UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;1221    UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;1222    UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;1223    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1224    UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;1225    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1226    UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;1227    UpDataStructsTokenData: UpDataStructsTokenData;1228    UpgradeGoAhead: UpgradeGoAhead;1229    UpgradeRestriction: UpgradeRestriction;1230    UpwardMessage: UpwardMessage;1231    usize: usize;1232    USize: USize;1233    ValidationCode: ValidationCode;1234    ValidationCodeHash: ValidationCodeHash;1235    ValidationData: ValidationData;1236    ValidationDataType: ValidationDataType;1237    ValidationFunctionParams: ValidationFunctionParams;1238    ValidatorCount: ValidatorCount;1239    ValidatorId: ValidatorId;1240    ValidatorIdOf: ValidatorIdOf;1241    ValidatorIndex: ValidatorIndex;1242    ValidatorIndexCompact: ValidatorIndexCompact;1243    ValidatorPrefs: ValidatorPrefs;1244    ValidatorPrefsTo145: ValidatorPrefsTo145;1245    ValidatorPrefsTo196: ValidatorPrefsTo196;1246    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1247    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1248    ValidatorSetId: ValidatorSetId;1249    ValidatorSignature: ValidatorSignature;1250    ValidDisputeStatementKind: ValidDisputeStatementKind;1251    ValidityAttestation: ValidityAttestation;1252    VecInboundHrmpMessage: VecInboundHrmpMessage;1253    VersionedMultiAsset: VersionedMultiAsset;1254    VersionedMultiAssets: VersionedMultiAssets;1255    VersionedMultiLocation: VersionedMultiLocation;1256    VersionedResponse: VersionedResponse;1257    VersionedXcm: VersionedXcm;1258    VersionMigrationStage: VersionMigrationStage;1259    VestingInfo: VestingInfo;1260    VestingSchedule: VestingSchedule;1261    Vote: Vote;1262    VoteIndex: VoteIndex;1263    Voter: Voter;1264    VoterInfo: VoterInfo;1265    Votes: Votes;1266    VotesTo230: VotesTo230;1267    VoteThreshold: VoteThreshold;1268    VoteWeight: VoteWeight;1269    Voting: Voting;1270    VotingDelegating: VotingDelegating;1271    VotingDirect: VotingDirect;1272    VotingDirectVote: VotingDirectVote;1273    VouchingStatus: VouchingStatus;1274    VrfData: VrfData;1275    VrfOutput: VrfOutput;1276    VrfProof: VrfProof;1277    Weight: Weight;1278    WeightLimitV2: WeightLimitV2;1279    WeightMultiplier: WeightMultiplier;1280    WeightPerClass: WeightPerClass;1281    WeightToFeeCoefficient: WeightToFeeCoefficient;1282    WildFungibility: WildFungibility;1283    WildFungibilityV0: WildFungibilityV0;1284    WildFungibilityV1: WildFungibilityV1;1285    WildFungibilityV2: WildFungibilityV2;1286    WildMultiAsset: WildMultiAsset;1287    WildMultiAssetV1: WildMultiAssetV1;1288    WildMultiAssetV2: WildMultiAssetV2;1289    WinnersData: WinnersData;1290    WinnersData10: WinnersData10;1291    WinnersDataTuple: WinnersDataTuple;1292    WinnersDataTuple10: WinnersDataTuple10;1293    WinningData: WinningData;1294    WinningData10: WinningData10;1295    WinningDataEntry: WinningDataEntry;1296    WithdrawReasons: WithdrawReasons;1297    Xcm: Xcm;1298    XcmAssetId: XcmAssetId;1299    XcmDoubleEncoded: XcmDoubleEncoded;1300    XcmError: XcmError;1301    XcmErrorV0: XcmErrorV0;1302    XcmErrorV1: XcmErrorV1;1303    XcmErrorV2: XcmErrorV2;1304    XcmOrder: XcmOrder;1305    XcmOrderV0: XcmOrderV0;1306    XcmOrderV1: XcmOrderV1;1307    XcmOrderV2: XcmOrderV2;1308    XcmOrigin: XcmOrigin;1309    XcmOriginKind: XcmOriginKind;1310    XcmpMessageFormat: XcmpMessageFormat;1311    XcmV0: XcmV0;1312    XcmV0Junction: XcmV0Junction;1313    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1314    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1315    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1316    XcmV0MultiAsset: XcmV0MultiAsset;1317    XcmV0MultiLocation: XcmV0MultiLocation;1318    XcmV0Order: XcmV0Order;1319    XcmV0OriginKind: XcmV0OriginKind;1320    XcmV0Response: XcmV0Response;1321    XcmV0Xcm: XcmV0Xcm;1322    XcmV1: XcmV1;1323    XcmV1Junction: XcmV1Junction;1324    XcmV1MultiAsset: XcmV1MultiAsset;1325    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1326    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1327    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1328    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1329    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1330    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1331    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1332    XcmV1MultiLocation: XcmV1MultiLocation;1333    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1334    XcmV1Order: XcmV1Order;1335    XcmV1Response: XcmV1Response;1336    XcmV1Xcm: XcmV1Xcm;1337    XcmV2: XcmV2;1338    XcmV2Instruction: XcmV2Instruction;1339    XcmV2Response: XcmV2Response;1340    XcmV2TraitsError: XcmV2TraitsError;1341    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1342    XcmV2WeightLimit: XcmV2WeightLimit;1343    XcmV2Xcm: XcmV2Xcm;1344    XcmVersion: XcmVersion;1345    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1346    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1347    XcmVersionedXcm: XcmVersionedXcm;1348  } // InterfaceTypes1349} // declare module
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1547,8 +1547,114 @@
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup207: pallet_evm::pallet::Call<T>
+   * Lookup207: pallet_rmrk_core::pallet::Call<T>
+   **/
+  PalletRmrkCoreCall: {
+    _enum: {
+      create_collection: {
+        metadata: 'Bytes',
+        max: 'Option<u32>',
+        symbol: 'Bytes',
+      },
+      destroy_collection: {
+        collectionId: 'u32',
+      },
+      change_collection_issuer: {
+        collectionId: 'u32',
+        newIssuer: 'MultiAddress',
+      },
+      lock_collection: {
+        collectionId: 'u32',
+      },
+      mint_nft: {
+        owner: 'AccountId32',
+        collectionId: 'u32',
+        recipient: 'Option<AccountId32>',
+        royaltyAmount: 'Option<Permill>',
+        metadata: 'Bytes',
+      },
+      burn_nft: {
+        collectionId: 'u32',
+        nftId: 'u32',
+      },
+      set_property: {
+        rmrkCollectionId: 'Compact<u32>',
+        maybeNftId: 'Option<u32>',
+        key: 'Bytes',
+        value: 'Bytes'
+      }
+    }
+  },
+  /**
+   * Lookup213: pallet_rmrk_equip::pallet::Call<T>
+   **/
+  PalletRmrkEquipCall: {
+    _enum: {
+      create_base: {
+        baseType: 'Bytes',
+        symbol: 'Bytes',
+        parts: 'Vec<UpDataStructsRmrkPartType>',
+      },
+      theme_add: {
+        baseId: 'u32',
+        theme: 'UpDataStructsRmrkTheme'
+      }
+    }
+  },
+  /**
+   * Lookup215: up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsRmrkPartType: {
+    _enum: {
+      FixedPart: 'UpDataStructsRmrkFixedPart',
+      SlotPart: 'UpDataStructsRmrkSlotPart'
+    }
+  },
+  /**
+   * Lookup217: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsRmrkFixedPart: {
+    id: 'u32',
+    z: 'u32',
+    src: 'Bytes'
+  },
+  /**
+   * Lookup218: up_data_structs::rmrk::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsRmrkSlotPart: {
+    id: 'u32',
+    equippable: 'UpDataStructsRmrkEquippableList',
+    src: 'Bytes',
+    z: 'u32'
+  },
+  /**
+   * Lookup219: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
+  UpDataStructsRmrkEquippableList: {
+    _enum: {
+      All: 'Null',
+      Empty: 'Null',
+      Custom: 'Vec<u32>'
+    }
+  },
+  /**
+   * Lookup221: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
+   **/
+  UpDataStructsRmrkTheme: {
+    name: 'Bytes',
+    properties: 'Vec<UpDataStructsRmrkThemeProperty>',
+    inherit: 'bool'
+  },
+  /**
+   * Lookup223: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsRmrkThemeProperty: {
+    key: 'Bytes',
+    value: 'Bytes'
+  },
+  /**
+   * Lookup224: pallet_evm::pallet::Call<T>
+   **/
   PalletEvmCall: {
     _enum: {
       withdraw: {
@@ -1590,7 +1696,7 @@
     }
   },
   /**
-   * Lookup213: pallet_ethereum::pallet::Call<T>
+   * Lookup230: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -1600,7 +1706,7 @@
     }
   },
   /**
-   * Lookup214: ethereum::transaction::TransactionV2
+   * Lookup231: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -1610,7 +1716,7 @@
     }
   },
   /**
-   * Lookup215: ethereum::transaction::LegacyTransaction
+   * Lookup232: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -1622,7 +1728,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup216: ethereum::transaction::TransactionAction
+   * Lookup233: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -1631,7 +1737,7 @@
     }
   },
   /**
-   * Lookup217: ethereum::transaction::TransactionSignature
+   * Lookup234: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -1639,7 +1745,7 @@
     s: 'H256'
   },
   /**
-   * Lookup219: ethereum::transaction::EIP2930Transaction
+   * Lookup236: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -1655,14 +1761,14 @@
     s: 'H256'
   },
   /**
-   * Lookup221: ethereum::transaction::AccessListItem
+   * Lookup238: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup222: ethereum::transaction::EIP1559Transaction
+   * Lookup239: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -1679,7 +1785,7 @@
     s: 'H256'
   },
   /**
-   * Lookup223: pallet_evm_migration::pallet::Call<T>
+   * Lookup240: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -1697,7 +1803,7 @@
     }
   },
   /**
-   * Lookup226: pallet_sudo::pallet::Event<T>
+   * Lookup243: pallet_sudo::pallet::Event<T>
    **/
   PalletSudoEvent: {
     _enum: {
@@ -1713,7 +1819,7 @@
     }
   },
   /**
-   * Lookup228: sp_runtime::DispatchError
+   * Lookup245: sp_runtime::DispatchError
    **/
   SpRuntimeDispatchError: {
     _enum: {
@@ -1730,38 +1836,38 @@
     }
   },
   /**
-   * Lookup229: sp_runtime::ModuleError
+   * Lookup246: sp_runtime::ModuleError
    **/
   SpRuntimeModuleError: {
     index: 'u8',
     error: '[u8;4]'
   },
   /**
-   * Lookup230: sp_runtime::TokenError
+   * Lookup247: sp_runtime::TokenError
    **/
   SpRuntimeTokenError: {
     _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
   },
   /**
-   * Lookup231: sp_runtime::ArithmeticError
+   * Lookup248: sp_runtime::ArithmeticError
    **/
   SpRuntimeArithmeticError: {
     _enum: ['Underflow', 'Overflow', 'DivisionByZero']
   },
   /**
-   * Lookup232: sp_runtime::TransactionalError
+   * Lookup249: sp_runtime::TransactionalError
    **/
   SpRuntimeTransactionalError: {
     _enum: ['LimitReached', 'NoLayer']
   },
   /**
-   * Lookup233: pallet_sudo::pallet::Error<T>
+   * Lookup250: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup234: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+   * Lookup251: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
    **/
   FrameSystemAccountInfo: {
     nonce: 'u32',
@@ -1771,7 +1877,7 @@
     data: 'PalletBalancesAccountData'
   },
   /**
-   * Lookup235: frame_support::weights::PerDispatchClass<T>
+   * Lookup252: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU64: {
     normal: 'u64',
@@ -1779,13 +1885,13 @@
     mandatory: 'u64'
   },
   /**
-   * Lookup236: sp_runtime::generic::digest::Digest
+   * Lookup253: sp_runtime::generic::digest::Digest
    **/
   SpRuntimeDigest: {
     logs: 'Vec<SpRuntimeDigestDigestItem>'
   },
   /**
-   * Lookup238: sp_runtime::generic::digest::DigestItem
+   * Lookup255: sp_runtime::generic::digest::DigestItem
    **/
   SpRuntimeDigestDigestItem: {
     _enum: {
@@ -1801,7 +1907,7 @@
     }
   },
   /**
-   * Lookup240: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+   * Lookup257: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
    **/
   FrameSystemEventRecord: {
     phase: 'FrameSystemPhase',
@@ -1809,7 +1915,7 @@
     topics: 'Vec<H256>'
   },
   /**
-   * Lookup242: frame_system::pallet::Event<T>
+   * Lookup259: frame_system::pallet::Event<T>
    **/
   FrameSystemEvent: {
     _enum: {
@@ -1837,7 +1943,7 @@
     }
   },
   /**
-   * Lookup243: frame_support::weights::DispatchInfo
+   * Lookup260: frame_support::weights::DispatchInfo
    **/
   FrameSupportWeightsDispatchInfo: {
     weight: 'u64',
@@ -1845,19 +1951,19 @@
     paysFee: 'FrameSupportWeightsPays'
   },
   /**
-   * Lookup244: frame_support::weights::DispatchClass
+   * Lookup261: frame_support::weights::DispatchClass
    **/
   FrameSupportWeightsDispatchClass: {
     _enum: ['Normal', 'Operational', 'Mandatory']
   },
   /**
-   * Lookup245: frame_support::weights::Pays
+   * Lookup262: frame_support::weights::Pays
    **/
   FrameSupportWeightsPays: {
     _enum: ['Yes', 'No']
   },
   /**
-   * Lookup246: orml_vesting::module::Event<T>
+   * Lookup263: orml_vesting::module::Event<T>
    **/
   OrmlVestingModuleEvent: {
     _enum: {
@@ -1876,7 +1982,7 @@
     }
   },
   /**
-   * Lookup247: cumulus_pallet_xcmp_queue::pallet::Event<T>
+   * Lookup264: cumulus_pallet_xcmp_queue::pallet::Event<T>
    **/
   CumulusPalletXcmpQueueEvent: {
     _enum: {
@@ -1891,7 +1997,7 @@
     }
   },
   /**
-   * Lookup248: pallet_xcm::pallet::Event<T>
+   * Lookup265: pallet_xcm::pallet::Event<T>
    **/
   PalletXcmEvent: {
     _enum: {
@@ -1914,7 +2020,7 @@
     }
   },
   /**
-   * Lookup249: xcm::v2::traits::Outcome
+   * Lookup266: xcm::v2::traits::Outcome
    **/
   XcmV2TraitsOutcome: {
     _enum: {
@@ -1924,7 +2030,7 @@
     }
   },
   /**
-   * Lookup251: cumulus_pallet_xcm::pallet::Event<T>
+   * Lookup268: cumulus_pallet_xcm::pallet::Event<T>
    **/
   CumulusPalletXcmEvent: {
     _enum: {
@@ -1934,7 +2040,7 @@
     }
   },
   /**
-   * Lookup252: cumulus_pallet_dmp_queue::pallet::Event<T>
+   * Lookup269: cumulus_pallet_dmp_queue::pallet::Event<T>
    **/
   CumulusPalletDmpQueueEvent: {
     _enum: {
@@ -1947,7 +2053,7 @@
     }
   },
   /**
-   * Lookup253: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup270: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletUniqueRawEvent: {
     _enum: {
@@ -1968,7 +2074,7 @@
     }
   },
   /**
-   * Lookup254: pallet_common::pallet::Event<T>
+   * Lookup271: pallet_common::pallet::Event<T>
    **/
   PalletCommonEvent: {
     _enum: {
@@ -1986,7 +2092,7 @@
     }
   },
   /**
-   * Lookup255: pallet_structure::pallet::Event<T>
+   * Lookup272: pallet_structure::pallet::Event<T>
    **/
   PalletStructureEvent: {
     _enum: {
@@ -1994,8 +2100,58 @@
     }
   },
   /**
-   * Lookup256: pallet_evm::pallet::Event<T>
+   * Lookup273: pallet_rmrk_core::pallet::Event<T>
    **/
+  PalletRmrkCoreEvent: {
+    _enum: {
+      CollectionCreated: {
+        issuer: 'AccountId32',
+        collectionId: 'u32',
+      },
+      CollectionDestroyed: {
+        issuer: 'AccountId32',
+        collectionId: 'u32',
+      },
+      IssuerChanged: {
+        oldIssuer: 'AccountId32',
+        newIssuer: 'AccountId32',
+        collectionId: 'u32',
+      },
+      CollectionLocked: {
+        issuer: 'AccountId32',
+        collectionId: 'u32',
+      },
+      NftMinted: {
+        owner: 'AccountId32',
+        collectionId: 'u32',
+        nftId: 'u32',
+      },
+      NFTBurned: {
+        owner: 'AccountId32',
+        nftId: 'u32',
+      },
+      PropertySet: {
+        collectionId: 'u32',
+        maybeNftId: 'Option<u32>',
+        key: 'Bytes',
+        value: 'Bytes'
+      }
+    }
+  },
+  /**
+   * Lookup274: pallet_rmrk_equip::pallet::Event<T>
+   **/
+  PalletRmrkEquipEvent: {
+    _enum: {
+      BaseCreated: {
+        issuer: 'AccountId32',
+        baseId: 'u32'
+      }
+    }
+  },
+  /**
+   * Lookup275: pallet_evm::pallet::Event<T>
+   **/
   PalletEvmEvent: {
     _enum: {
       Log: 'EthereumLog',
@@ -2008,7 +2164,7 @@
     }
   },
   /**
-   * Lookup257: ethereum::log::Log
+   * Lookup276: ethereum::log::Log
    **/
   EthereumLog: {
     address: 'H160',
@@ -2016,7 +2172,7 @@
     data: 'Bytes'
   },
   /**
-   * Lookup258: pallet_ethereum::pallet::Event
+   * Lookup277: pallet_ethereum::pallet::Event
    **/
   PalletEthereumEvent: {
     _enum: {
@@ -2024,7 +2180,7 @@
     }
   },
   /**
-   * Lookup259: evm_core::error::ExitReason
+   * Lookup278: evm_core::error::ExitReason
    **/
   EvmCoreErrorExitReason: {
     _enum: {
@@ -2035,13 +2191,13 @@
     }
   },
   /**
-   * Lookup260: evm_core::error::ExitSucceed
+   * Lookup279: evm_core::error::ExitSucceed
    **/
   EvmCoreErrorExitSucceed: {
     _enum: ['Stopped', 'Returned', 'Suicided']
   },
   /**
-   * Lookup261: evm_core::error::ExitError
+   * Lookup280: evm_core::error::ExitError
    **/
   EvmCoreErrorExitError: {
     _enum: {
@@ -2063,13 +2219,13 @@
     }
   },
   /**
-   * Lookup264: evm_core::error::ExitRevert
+   * Lookup283: evm_core::error::ExitRevert
    **/
   EvmCoreErrorExitRevert: {
     _enum: ['Reverted']
   },
   /**
-   * Lookup265: evm_core::error::ExitFatal
+   * Lookup284: evm_core::error::ExitFatal
    **/
   EvmCoreErrorExitFatal: {
     _enum: {
@@ -2080,7 +2236,7 @@
     }
   },
   /**
-   * Lookup266: frame_system::Phase
+   * Lookup285: frame_system::Phase
    **/
   FrameSystemPhase: {
     _enum: {
@@ -2090,14 +2246,14 @@
     }
   },
   /**
-   * Lookup268: frame_system::LastRuntimeUpgradeInfo
+   * Lookup287: frame_system::LastRuntimeUpgradeInfo
    **/
   FrameSystemLastRuntimeUpgradeInfo: {
     specVersion: 'Compact<u32>',
     specName: 'Text'
   },
   /**
-   * Lookup269: frame_system::limits::BlockWeights
+   * Lookup288: frame_system::limits::BlockWeights
    **/
   FrameSystemLimitsBlockWeights: {
     baseBlock: 'u64',
@@ -2105,7 +2261,7 @@
     perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
   },
   /**
-   * Lookup270: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+   * Lookup289: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
    **/
   FrameSupportWeightsPerDispatchClassWeightsPerClass: {
     normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2113,7 +2269,7 @@
     mandatory: 'FrameSystemLimitsWeightsPerClass'
   },
   /**
-   * Lookup271: frame_system::limits::WeightsPerClass
+   * Lookup290: frame_system::limits::WeightsPerClass
    **/
   FrameSystemLimitsWeightsPerClass: {
     baseExtrinsic: 'u64',
@@ -2122,13 +2278,13 @@
     reserved: 'Option<u64>'
   },
   /**
-   * Lookup273: frame_system::limits::BlockLength
+   * Lookup292: frame_system::limits::BlockLength
    **/
   FrameSystemLimitsBlockLength: {
     max: 'FrameSupportWeightsPerDispatchClassU32'
   },
   /**
-   * Lookup274: frame_support::weights::PerDispatchClass<T>
+   * Lookup293: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU32: {
     normal: 'u32',
@@ -2136,14 +2292,14 @@
     mandatory: 'u32'
   },
   /**
-   * Lookup275: frame_support::weights::RuntimeDbWeight
+   * Lookup294: frame_support::weights::RuntimeDbWeight
    **/
   FrameSupportWeightsRuntimeDbWeight: {
     read: 'u64',
     write: 'u64'
   },
   /**
-   * Lookup276: sp_version::RuntimeVersion
+   * Lookup295: sp_version::RuntimeVersion
    **/
   SpVersionRuntimeVersion: {
     specName: 'Text',
@@ -2156,19 +2312,19 @@
     stateVersion: 'u8'
   },
   /**
-   * Lookup280: frame_system::pallet::Error<T>
+   * Lookup299: frame_system::pallet::Error<T>
    **/
   FrameSystemError: {
     _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
   },
   /**
-   * Lookup282: orml_vesting::module::Error<T>
+   * Lookup301: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup284: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup303: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -2176,19 +2332,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup285: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup304: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup288: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup307: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup291: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup310: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -2198,13 +2354,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup292: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup311: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup294: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup313: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -2215,29 +2371,29 @@
     xcmpMaxIndividualWeight: 'u64'
   },
   /**
-   * Lookup296: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup315: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup297: pallet_xcm::pallet::Error<T>
+   * Lookup316: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
   },
   /**
-   * Lookup298: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup317: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup299: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup318: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'u64'
   },
   /**
-   * Lookup300: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup319: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -2245,19 +2401,19 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup303: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup322: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup307: pallet_unique::Error<T>
+   * Lookup326: pallet_unique::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
   },
   /**
-   * Lookup308: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup327: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -2272,7 +2428,7 @@
     limits: 'UpDataStructsCollectionLimits'
   },
   /**
-   * Lookup309: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup328: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipState: {
     _enum: {
@@ -2282,7 +2438,7 @@
     }
   },
   /**
-   * Lookup310: up_data_structs::Properties
+   * Lookup329: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2290,21 +2446,21 @@
     spaceLimit: 'u32'
   },
   /**
-   * Lookup311: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup330: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup316: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup335: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup322: up_data_structs::CollectionField
+   * Lookup341: up_data_structs::CollectionField
    **/
   UpDataStructsCollectionField: {
     _enum: ['ConstOnChainSchema', 'OffchainSchema']
   },
   /**
-   * Lookup325: up_data_structs::CollectionStats
+   * Lookup344: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -2312,11 +2468,11 @@
     alive: 'u32'
   },
   /**
-   * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
+   * Lookup345: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
    **/
-  PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',
+  PhantomTypeUpDataStructsTokenData: '[Lookup346;0]',
   /**
-   * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup346: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     constData: 'Bytes',
@@ -2324,11 +2480,11 @@
     owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
   },
   /**
-   * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
+   * Lookup349: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
    **/
-  PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',
+  PhantomTypeUpDataStructsRpcCollection: '[Lookup350;0]',
   /**
-   * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup350: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -2347,13 +2503,13 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup333: PhantomType::up_data_structs<rmrk_types::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>>
+   * Lookup352: PhantomType::up_data_structs<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>>
    **/
-  PhantomTypeUpDataStructsCollectionInfo: '[Lookup334;0]',
+  PhantomTypeUpDataStructsCollectionInfo: '[Lookup353;0]',
   /**
-   * Lookup334: rmrk_types::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+   * Lookup353: 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>
    **/
-  RmrkTypesCollectionInfo: {
+  UpDataStructsRmrkCollectionInfo: {
     issuer: 'AccountId32',
     metadata: 'Bytes',
     max: 'Option<u32>',
@@ -2361,198 +2517,194 @@
     nftsCount: 'u32'
   },
   /**
-   * Lookup338: PhantomType::up_data_structs<rmrk_types::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
+   * Lookup355: PhantomType::up_data_structs<up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
    **/
-  PhantomTypeUpDataStructsNftInfo: '[Lookup339;0]',
+  PhantomTypeUpDataStructsNftInfo: '[Lookup356;0]',
   /**
-   * Lookup339: rmrk_types::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup356: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
-  RmrkTypesNftInfo: {
-    owner: 'RmrkTypesAccountIdOrCollectionNftTuple',
-    royalty: 'Option<RmrkTypesRoyaltyInfo>',
+  UpDataStructsRmrkNftInfo: {
+    owner: 'UpDataStructsRmrkAccountIdOrCollectionNftTuple',
+    royalty: 'Option<UpDataStructsRmrkRoyaltyInfo>',
     metadata: 'Bytes',
     equipped: 'bool',
     pending: 'bool'
   },
   /**
-   * Lookup340: rmrk_types::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+   * Lookup357: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
    **/
-  RmrkTypesAccountIdOrCollectionNftTuple: {
+  UpDataStructsRmrkAccountIdOrCollectionNftTuple: {
     _enum: {
       AccountId: 'AccountId32',
       CollectionAndNftTuple: '(u32,u32)'
     }
   },
   /**
-   * Lookup342: rmrk_types::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+   * Lookup359: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
    **/
-  RmrkTypesRoyaltyInfo: {
+  UpDataStructsRmrkRoyaltyInfo: {
     recipient: 'AccountId32',
     amount: 'Permill'
   },
   /**
-   * Lookup344: PhantomType::up_data_structs<rmrk_types::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>>>
+   * Lookup361: PhantomType::up_data_structs<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>>>
    **/
-  PhantomTypeUpDataStructsResourceInfo: '[Lookup345;0]',
+  PhantomTypeUpDataStructsResourceInfo: '[Lookup362;0]',
   /**
-   * Lookup345: rmrk_types::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>>
+   * Lookup362: 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>>
    **/
-  RmrkTypesResourceInfo: {
+  UpDataStructsRmrkResourceInfo: {
     id: 'Bytes',
+    resource: 'UpDataStructsRmrkResourceTypes',
     pending: 'bool',
-    pendingRemoval: 'bool',
-    parts: 'Option<Vec<u32>>',
-    base: 'Option<u32>',
-    src: 'Option<Bytes>',
-    metadata: 'Option<Bytes>',
-    slot: 'Option<u32>',
-    license: 'Option<Bytes>',
-    thumb: 'Option<Bytes>'
+    pendingRemoval: 'bool'
   },
   /**
-   * Lookup351: PhantomType::up_data_structs<rmrk_types::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
-   **/
-  PhantomTypeUpDataStructsPropertyInfo: '[Lookup352;0]',
-  /**
-   * Lookup352: rmrk_types::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup365: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
-  RmrkTypesPropertyInfo: {
-    key: 'Bytes',
-    value: 'Bytes'
+  UpDataStructsRmrkResourceTypes: {
+    _enum: {
+      Basic: 'UpDataStructsRmrkBasicResource',
+      Composable: 'UpDataStructsRmrkComposableResource',
+      Slot: 'UpDataStructsRmrkSlotResource'
+    }
   },
   /**
-   * Lookup356: PhantomType::up_data_structs<rmrk_types::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
-   **/
-  PhantomTypeUpDataStructsBaseInfo: '[Lookup357;0]',
-  /**
-   * Lookup357: rmrk_types::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup366: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
-  RmrkTypesBaseInfo: {
-    issuer: 'AccountId32',
-    baseType: 'Bytes',
-    symbol: 'Bytes'
+  UpDataStructsRmrkBasicResource: {
+    src: 'Option<Bytes>',
+    metadata: 'Option<Bytes>',
+    license: 'Option<Bytes>',
+    thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup359: PhantomType::up_data_structs<rmrk_types::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
+   * Lookup368: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
-  PhantomTypeUpDataStructsPartType: '[Lookup360;0]',
-  /**
-   * Lookup360: rmrk_types::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTypesPartType: {
-    _enum: {
-      FixedPart: 'RmrkTypesFixedPart',
-      SlotPart: 'RmrkTypesSlotPart'
-    }
+  UpDataStructsRmrkComposableResource: {
+    parts: 'Vec<u32>',
+    base: 'u32',
+    src: 'Option<Bytes>',
+    metadata: 'Option<Bytes>',
+    license: 'Option<Bytes>',
+    thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup362: rmrk_types::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup369: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
-  RmrkTypesFixedPart: {
-    id: 'u32',
-    z: 'u32',
-    src: 'Bytes'
+  UpDataStructsRmrkSlotResource: {
+    base: 'u32',
+    src: 'Option<Bytes>',
+    metadata: 'Option<Bytes>',
+    slot: 'u32',
+    license: 'Option<Bytes>',
+    thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup363: rmrk_types::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup371: PhantomType::up_data_structs<up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
    **/
-  RmrkTypesSlotPart: {
-    id: 'u32',
-    equippable: 'RmrkTypesEquippableList',
-    src: 'Bytes',
-    z: 'u32'
-  },
+  PhantomTypeUpDataStructsPropertyInfo: '[Lookup372;0]',
   /**
-   * Lookup364: rmrk_types::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup372: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
-  RmrkTypesEquippableList: {
-    _enum: {
-      All: 'Null',
-      Empty: 'Null',
-      Custom: 'Vec<u32>'
-    }
+  UpDataStructsRmrkPropertyInfo: {
+    key: 'Bytes',
+    value: 'Bytes'
   },
   /**
-   * Lookup366: PhantomType::up_data_structs<rmrk_types::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, BoundedPropertyList>>
+   * Lookup374: PhantomType::up_data_structs<up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
    **/
-  PhantomTypeUpDataStructsTheme: '[Lookup367;0]',
+  PhantomTypeUpDataStructsBaseInfo: '[Lookup375;0]',
   /**
-   * Lookup367: rmrk_types::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, BoundedPropertyList>
+   * Lookup375: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
-  RmrkTypesTheme: {
-    name: 'Bytes',
-    properties: 'Vec<RmrkTypesThemeProperty>',
-    inherit: 'bool'
+  UpDataStructsRmrkBaseInfo: {
+    issuer: 'AccountId32',
+    baseType: 'Bytes',
+    symbol: 'Bytes'
   },
   /**
-   * Lookup369: rmrk_types::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup377: PhantomType::up_data_structs<up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
+   **/
+  PhantomTypeUpDataStructsPartType: '[Lookup215;0]',
+  /**
+   * Lookup379: PhantomType::up_data_structs<up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>>
    **/
-  RmrkTypesThemeProperty: {
-    key: 'Bytes',
-    value: 'Bytes'
-  },
+  PhantomTypeUpDataStructsTheme: '[Lookup221;0]',
   /**
-   * Lookup371: PhantomType::up_data_structs<rmrk_types::NftChild>
+   * Lookup381: PhantomType::up_data_structs<up_data_structs::rmrk::NftChild>
    **/
-  PhantomTypeUpDataStructsNftChild: '[Lookup372;0]',
+  PhantomTypeUpDataStructsNftChild: '[Lookup382;0]',
   /**
-   * Lookup372: rmrk_types::NftChild
+   * Lookup382: up_data_structs::rmrk::NftChild
    **/
-  RmrkTypesNftChild: {
+  UpDataStructsRmrkNftChild: {
     collectionId: 'u32',
     nftId: 'u32'
   },
   /**
-   * Lookup374: pallet_common::pallet::Error<T>
+   * Lookup384: pallet_common::pallet::Error<T>
    **/
   PalletCommonError: {
     _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', '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']
   },
   /**
-   * Lookup376: pallet_fungible::pallet::Error<T>
+   * Lookup386: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup377: pallet_refungible::ItemData
+   * Lookup387: pallet_refungible::ItemData
    **/
   PalletRefungibleItemData: {
     constData: 'Bytes'
   },
   /**
-   * Lookup381: pallet_refungible::pallet::Error<T>
+   * Lookup391: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup382: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup392: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     constData: 'Bytes',
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup383: pallet_nonfungible::pallet::Error<T>
+   * Lookup393: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
   },
   /**
-   * Lookup384: pallet_structure::pallet::Error<T>
+   * Lookup394: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
   },
   /**
-   * Lookup387: pallet_evm::pallet::Error<T>
+   * Lookup395: pallet_rmrk_core::pallet::Error<T>
+   **/
+  PalletRmrkCoreError: {
+    _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'CollectionFullOrLocked']
+  },
+  /**
+   * Lookup397: pallet_rmrk_equip::pallet::Error<T>
+   **/
+  PalletRmrkEquipError: {
+    _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst']
+  },
+  /**
+   * Lookup400: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
   },
   /**
-   * Lookup390: fp_rpc::TransactionStatus
+   * Lookup403: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -2564,11 +2716,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup392: ethbloom::Bloom
+   * Lookup405: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup394: ethereum::receipt::ReceiptV3
+   * Lookup407: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -2578,7 +2730,7 @@
     }
   },
   /**
-   * Lookup395: ethereum::receipt::EIP658ReceiptData
+   * Lookup408: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -2587,7 +2739,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup396: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup409: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -2595,7 +2747,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup397: ethereum::header::Header
+   * Lookup410: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -2615,41 +2767,41 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup398: ethereum_types::hash::H64
+   * Lookup411: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup403: pallet_ethereum::pallet::Error<T>
+   * Lookup416: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup404: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup417: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup405: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup418: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup407: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup420: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission']
   },
   /**
-   * Lookup408: pallet_evm_migration::pallet::Error<T>
+   * Lookup421: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
   },
   /**
-   * Lookup410: sp_runtime::MultiSignature
+   * Lookup423: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -2659,43 +2811,43 @@
     }
   },
   /**
-   * Lookup411: sp_core::ed25519::Signature
+   * Lookup424: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup413: sp_core::sr25519::Signature
+   * Lookup426: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup414: sp_core::ecdsa::Signature
+   * Lookup427: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup417: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup430: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup418: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup431: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup421: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup434: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup422: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup435: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup423: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup436: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup424: opal_runtime::Runtime
+   * Lookup437: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup425: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup438: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
    **/
   PalletEthereumFakeTransactionFinalizer: 'Null'
 };
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, 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, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTypesAccountIdOrCollectionNftTuple, RmrkTypesBaseInfo, RmrkTypesCollectionInfo, RmrkTypesEquippableList, RmrkTypesFixedPart, RmrkTypesNftChild, RmrkTypesNftInfo, RmrkTypesPartType, RmrkTypesPropertyInfo, RmrkTypesResourceInfo, RmrkTypesRoyaltyInfo, RmrkTypesSlotPart, RmrkTypesTheme, RmrkTypesThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, 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, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, 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, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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';
 
 declare module '@polkadot/types/types/registry' {
   export interface InterfaceTypes {
@@ -104,6 +104,12 @@
     PalletNonfungibleItemData: PalletNonfungibleItemData;
     PalletRefungibleError: PalletRefungibleError;
     PalletRefungibleItemData: PalletRefungibleItemData;
+    PalletRmrkCoreCall: PalletRmrkCoreCall;
+    PalletRmrkCoreError: PalletRmrkCoreError;
+    PalletRmrkCoreEvent: PalletRmrkCoreEvent;
+    PalletRmrkEquipCall: PalletRmrkEquipCall;
+    PalletRmrkEquipError: PalletRmrkEquipError;
+    PalletRmrkEquipEvent: PalletRmrkEquipEvent;
     PalletStructureCall: PalletStructureCall;
     PalletStructureError: PalletStructureError;
     PalletStructureEvent: PalletStructureEvent;
@@ -142,20 +148,6 @@
     PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
     PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
     PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
-    RmrkTypesAccountIdOrCollectionNftTuple: RmrkTypesAccountIdOrCollectionNftTuple;
-    RmrkTypesBaseInfo: RmrkTypesBaseInfo;
-    RmrkTypesCollectionInfo: RmrkTypesCollectionInfo;
-    RmrkTypesEquippableList: RmrkTypesEquippableList;
-    RmrkTypesFixedPart: RmrkTypesFixedPart;
-    RmrkTypesNftChild: RmrkTypesNftChild;
-    RmrkTypesNftInfo: RmrkTypesNftInfo;
-    RmrkTypesPartType: RmrkTypesPartType;
-    RmrkTypesPropertyInfo: RmrkTypesPropertyInfo;
-    RmrkTypesResourceInfo: RmrkTypesResourceInfo;
-    RmrkTypesRoyaltyInfo: RmrkTypesRoyaltyInfo;
-    RmrkTypesSlotPart: RmrkTypesSlotPart;
-    RmrkTypesTheme: RmrkTypesTheme;
-    RmrkTypesThemeProperty: RmrkTypesThemeProperty;
     SpCoreEcdsaSignature: SpCoreEcdsaSignature;
     SpCoreEd25519Signature: SpCoreEd25519Signature;
     SpCoreSr25519Signature: SpCoreSr25519Signature;
@@ -190,6 +182,24 @@
     UpDataStructsProperty: UpDataStructsProperty;
     UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
     UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
+    UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+    UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;
+    UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;
+    UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;
+    UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;
+    UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;
+    UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;
+    UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;
+    UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;
+    UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;
+    UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;
+    UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;
+    UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;
+    UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;
+    UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;
+    UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;
+    UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;
+    UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;
     UpDataStructsRpcCollection: UpDataStructsRpcCollection;
     UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;
     UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
modifiedtests/src/interfaces/rmrk/definitions.tsdiffbeforeafterboth
--- a/tests/src/interfaces/rmrk/definitions.ts
+++ b/tests/src/interfaces/rmrk/definitions.ts
@@ -33,14 +33,14 @@
   types,
   rpc: {
     lastCollectionIdx: fn('Get the latest created collection id', [], 'u32'),
-    collectionById: fn('Get collection by id', [{name: 'id', type: 'u32'}], 'Option<RmrkTypesCollectionInfo>'),
+    collectionById: fn('Get collection by id', [{name: 'id', type: 'u32'}], 'Option<PhantomTypeUpDataStructsCollectionInfo>'),
     nftById: fn(
       'Get NFT by collection id and NFT id',
       [
         {name: 'collectionId', type: 'u32'},
         {name: 'nftId', type: 'u32'},
       ],
-      'Option<RmrkTypesNftInfo>',
+      'Option<PhantomTypeUpDataStructsNftInfo>',
     ),
     accountTokens: fn(
       'Get tokens owned by an account in a collection',
@@ -56,12 +56,12 @@
         {name: 'collectionId', type: 'u32'},
         {name: 'nftId', type: 'u32'},
       ],
-      'Vec<RmrkTypesNftChild>',
+      'Vec<PhantomTypeUpDataStructsNftChild>',
     ),
     collectionProperties: fn(
       'Get collection properties',
       [{name: 'collectionId', type: 'u32'}],
-      'Vec<RmrkTypesPropertyInfo>',
+      'Vec<PhantomTypeUpDataStructsPropertyInfo>',
     ),
     nftProperties: fn(
       'Get NFT properties',
@@ -69,7 +69,7 @@
         {name: 'collectionId', type: 'u32'},
         {name: 'nftId', type: 'u32'},
       ],
-      'Vec<RmrkTypesPropertyInfo>',
+      'Vec<PhantomTypeUpDataStructsPropertyInfo>',
     ),
     nftResources: fn(
       'Get NFT resources',
@@ -77,7 +77,7 @@
         {name: 'collectionId', type: 'u32'},
         {name: 'nftId', type: 'u32'},
       ],
-      'Vec<RmrkTypesResourceInfo>',
+      'Vec<PhantomTypeUpDataStructsResourceInfo>',
     ),
     nftResourcePriorities: fn(
       'Get NFT resource priorities',
@@ -90,12 +90,12 @@
     base: fn(
       'Get base info',
       [{name: 'baseId', type: 'u32'}],
-      'Option<RmrkTypesBaseInfo>',
+      'Option<PhantomTypeUpDataStructsBaseInfo>',
     ),
     baseParts: fn(
       'Get all Base\'s parts',
       [{name: 'baseId', type: 'u32'}],
-      'Vec<RmrkTypesPartType>',
+      'Vec<PhantomTypeUpDataStructsPartType>',
     ),
     themeNames: fn(
       'Get Base\'s theme names',
@@ -109,7 +109,7 @@
         {name: 'themeName', type: 'String'},
         {name: 'keys', type: 'Option<Vec<String>>'},
       ],
-      'Option<RmrkTypesTheme>',
+      'Option<PhantomTypeUpDataStructsTheme>',
     ),
   },
 };
modifiedtests/src/interfaces/rmrk/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/rmrk/types.ts
+++ b/tests/src/interfaces/rmrk/types.ts
@@ -1128,6 +1128,145 @@
   readonly constData: Bytes;
 }
 
+/** @name PalletRmrkCoreCall */
+export interface PalletRmrkCoreCall extends Enum {
+  readonly isCreateCollection: boolean;
+  readonly asCreateCollection: {
+    readonly metadata: Bytes;
+    readonly max: Option<u32>;
+    readonly symbol: Bytes;
+  } & Struct;
+  readonly isDestroyCollection: boolean;
+  readonly asDestroyCollection: {
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isChangeCollectionIssuer: boolean;
+  readonly asChangeCollectionIssuer: {
+    readonly collectionId: u32;
+    readonly newIssuer: MultiAddress;
+  } & Struct;
+  readonly isLockCollection: boolean;
+  readonly asLockCollection: {
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isMintNft: boolean;
+  readonly asMintNft: {
+    readonly owner: AccountId32;
+    readonly collectionId: u32;
+    readonly recipient: Option<AccountId32>;
+    readonly royaltyAmount: Option<Permill>;
+    readonly metadata: Bytes;
+  } & Struct;
+  readonly isBurnNft: boolean;
+  readonly asBurnNft: {
+    readonly collectionId: u32;
+    readonly nftId: u32;
+  } & Struct;
+  readonly isSetProperty: boolean;
+  readonly asSetProperty: {
+    readonly rmrkCollectionId: Compact<u32>;
+    readonly maybeNftId: Option<u32>;
+    readonly key: Bytes;
+    readonly value: Bytes;
+  } & Struct;
+  readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';
+}
+
+/** @name PalletRmrkCoreError */
+export interface PalletRmrkCoreError extends Enum {
+  readonly isCorruptedCollectionType: boolean;
+  readonly isNftTypeEncodeError: boolean;
+  readonly isRmrkPropertyKeyIsTooLong: boolean;
+  readonly isRmrkPropertyValueIsTooLong: boolean;
+  readonly isCollectionNotEmpty: boolean;
+  readonly isNoAvailableCollectionId: boolean;
+  readonly isNoAvailableNftId: boolean;
+  readonly isCollectionUnknown: boolean;
+  readonly isNoPermission: boolean;
+  readonly isCollectionFullOrLocked: boolean;
+  readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';
+}
+
+/** @name PalletRmrkCoreEvent */
+export interface PalletRmrkCoreEvent extends Enum {
+  readonly isCollectionCreated: boolean;
+  readonly asCollectionCreated: {
+    readonly issuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isCollectionDestroyed: boolean;
+  readonly asCollectionDestroyed: {
+    readonly issuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isIssuerChanged: boolean;
+  readonly asIssuerChanged: {
+    readonly oldIssuer: AccountId32;
+    readonly newIssuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isCollectionLocked: boolean;
+  readonly asCollectionLocked: {
+    readonly issuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isNftMinted: boolean;
+  readonly asNftMinted: {
+    readonly owner: AccountId32;
+    readonly collectionId: u32;
+    readonly nftId: u32;
+  } & Struct;
+  readonly isNftBurned: boolean;
+  readonly asNftBurned: {
+    readonly owner: AccountId32;
+    readonly nftId: u32;
+  } & Struct;
+  readonly isPropertySet: boolean;
+  readonly asPropertySet: {
+    readonly collectionId: u32;
+    readonly maybeNftId: Option<u32>;
+    readonly key: Bytes;
+    readonly value: Bytes;
+  } & Struct;
+  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';
+}
+
+/** @name PalletRmrkEquipCall */
+export interface PalletRmrkEquipCall extends Enum {
+  readonly isCreateBase: boolean;
+  readonly asCreateBase: {
+    readonly baseType: Bytes;
+    readonly symbol: Bytes;
+    readonly parts: Vec<UpDataStructsRmrkPartType>;
+  } & Struct;
+  readonly isThemeAdd: boolean;
+  readonly asThemeAdd: {
+    readonly baseId: u32;
+    readonly theme: UpDataStructsRmrkTheme;
+  } & Struct;
+  readonly type: 'CreateBase' | 'ThemeAdd';
+}
+
+/** @name PalletRmrkEquipError */
+export interface PalletRmrkEquipError extends Enum {
+  readonly isPermissionError: boolean;
+  readonly isNoAvailableBaseId: boolean;
+  readonly isNoAvailablePartId: boolean;
+  readonly isBaseDoesntExist: boolean;
+  readonly isNeedsDefaultThemeFirst: boolean;
+  readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
+}
+
+/** @name PalletRmrkEquipEvent */
+export interface PalletRmrkEquipEvent extends Enum {
+  readonly isBaseCreated: boolean;
+  readonly asBaseCreated: {
+    readonly issuer: AccountId32;
+    readonly baseId: u32;
+  } & Struct;
+  readonly type: 'BaseCreated';
+}
+
 /** @name PalletStructureCall */
 export interface PalletStructureCall extends Null {}
 
@@ -1615,34 +1754,34 @@
 }
 
 /** @name PhantomTypeUpDataStructsBaseInfo */
-export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup357> {}
+export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup375> {}
 
 /** @name PhantomTypeUpDataStructsCollectionInfo */
-export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup334> {}
+export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup353> {}
 
 /** @name PhantomTypeUpDataStructsNftChild */
-export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup372> {}
+export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup382> {}
 
 /** @name PhantomTypeUpDataStructsNftInfo */
-export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup339> {}
+export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup356> {}
 
 /** @name PhantomTypeUpDataStructsPartType */
-export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup360> {}
+export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup215> {}
 
 /** @name PhantomTypeUpDataStructsPropertyInfo */
-export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup352> {}
+export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup372> {}
 
 /** @name PhantomTypeUpDataStructsResourceInfo */
-export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup345> {}
+export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup362> {}
 
 /** @name PhantomTypeUpDataStructsRpcCollection */
-export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup331> {}
+export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup350> {}
 
 /** @name PhantomTypeUpDataStructsTheme */
-export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup367> {}
+export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup221> {}
 
 /** @name PhantomTypeUpDataStructsTokenData */
-export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup327> {}
+export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup346> {}
 
 /** @name PolkadotCorePrimitivesInboundDownwardMessage */
 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -1705,120 +1844,8 @@
 export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
   readonly isPresent: boolean;
   readonly type: 'Present';
-}
-
-/** @name RmrkTypesAccountIdOrCollectionNftTuple */
-export interface RmrkTypesAccountIdOrCollectionNftTuple extends Enum {
-  readonly isAccountId: boolean;
-  readonly asAccountId: AccountId32;
-  readonly isCollectionAndNftTuple: boolean;
-  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
-  readonly type: 'AccountId' | 'CollectionAndNftTuple';
-}
-
-/** @name RmrkTypesBaseInfo */
-export interface RmrkTypesBaseInfo extends Struct {
-  readonly issuer: AccountId32;
-  readonly baseType: Bytes;
-  readonly symbol: Bytes;
-}
-
-/** @name RmrkTypesCollectionInfo */
-export interface RmrkTypesCollectionInfo extends Struct {
-  readonly issuer: AccountId32;
-  readonly metadata: Bytes;
-  readonly max: Option<u32>;
-  readonly symbol: Bytes;
-  readonly nftsCount: u32;
-}
-
-/** @name RmrkTypesEquippableList */
-export interface RmrkTypesEquippableList extends Enum {
-  readonly isAll: boolean;
-  readonly isEmpty: boolean;
-  readonly isCustom: boolean;
-  readonly asCustom: Vec<u32>;
-  readonly type: 'All' | 'Empty' | 'Custom';
-}
-
-/** @name RmrkTypesFixedPart */
-export interface RmrkTypesFixedPart extends Struct {
-  readonly id: u32;
-  readonly z: u32;
-  readonly src: Bytes;
-}
-
-/** @name RmrkTypesNftChild */
-export interface RmrkTypesNftChild extends Struct {
-  readonly collectionId: u32;
-  readonly nftId: u32;
-}
-
-/** @name RmrkTypesNftInfo */
-export interface RmrkTypesNftInfo extends Struct {
-  readonly owner: RmrkTypesAccountIdOrCollectionNftTuple;
-  readonly royalty: Option<RmrkTypesRoyaltyInfo>;
-  readonly metadata: Bytes;
-  readonly equipped: bool;
-  readonly pending: bool;
-}
-
-/** @name RmrkTypesPartType */
-export interface RmrkTypesPartType extends Enum {
-  readonly isFixedPart: boolean;
-  readonly asFixedPart: RmrkTypesFixedPart;
-  readonly isSlotPart: boolean;
-  readonly asSlotPart: RmrkTypesSlotPart;
-  readonly type: 'FixedPart' | 'SlotPart';
-}
-
-/** @name RmrkTypesPropertyInfo */
-export interface RmrkTypesPropertyInfo extends Struct {
-  readonly key: Bytes;
-  readonly value: Bytes;
-}
-
-/** @name RmrkTypesResourceInfo */
-export interface RmrkTypesResourceInfo extends Struct {
-  readonly id: Bytes;
-  readonly pending: bool;
-  readonly pendingRemoval: bool;
-  readonly parts: Option<Vec<u32>>;
-  readonly base: Option<u32>;
-  readonly src: Option<Bytes>;
-  readonly metadata: Option<Bytes>;
-  readonly slot: Option<u32>;
-  readonly license: Option<Bytes>;
-  readonly thumb: Option<Bytes>;
-}
-
-/** @name RmrkTypesRoyaltyInfo */
-export interface RmrkTypesRoyaltyInfo extends Struct {
-  readonly recipient: AccountId32;
-  readonly amount: Permill;
-}
-
-/** @name RmrkTypesSlotPart */
-export interface RmrkTypesSlotPart extends Struct {
-  readonly id: u32;
-  readonly equippable: RmrkTypesEquippableList;
-  readonly src: Bytes;
-  readonly z: u32;
-}
-
-/** @name RmrkTypesTheme */
-export interface RmrkTypesTheme extends Struct {
-  readonly name: Bytes;
-  readonly properties: Vec<RmrkTypesThemeProperty>;
-  readonly inherit: bool;
 }
 
-/** @name RmrkTypesThemeProperty */
-export interface RmrkTypesThemeProperty extends Struct {
-  readonly key: Bytes;
-  readonly value: Bytes;
-}
-
 /** @name SpCoreEcdsaSignature */
 export interface SpCoreEcdsaSignature extends U8aFixed {}
 
@@ -2096,6 +2123,151 @@
   readonly tokenOwner: bool;
 }
 
+/** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple */
+export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
+  readonly isAccountId: boolean;
+  readonly asAccountId: AccountId32;
+  readonly isCollectionAndNftTuple: boolean;
+  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
+  readonly type: 'AccountId' | 'CollectionAndNftTuple';
+}
+
+/** @name UpDataStructsRmrkBaseInfo */
+export interface UpDataStructsRmrkBaseInfo extends Struct {
+  readonly issuer: AccountId32;
+  readonly baseType: Bytes;
+  readonly symbol: Bytes;
+}
+
+/** @name UpDataStructsRmrkBasicResource */
+export interface UpDataStructsRmrkBasicResource extends Struct {
+  readonly src: Option<Bytes>;
+  readonly metadata: Option<Bytes>;
+  readonly license: Option<Bytes>;
+  readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkCollectionInfo */
+export interface UpDataStructsRmrkCollectionInfo extends Struct {
+  readonly issuer: AccountId32;
+  readonly metadata: Bytes;
+  readonly max: Option<u32>;
+  readonly symbol: Bytes;
+  readonly nftsCount: u32;
+}
+
+/** @name UpDataStructsRmrkComposableResource */
+export interface UpDataStructsRmrkComposableResource extends Struct {
+  readonly parts: Vec<u32>;
+  readonly base: u32;
+  readonly src: Option<Bytes>;
+  readonly metadata: Option<Bytes>;
+  readonly license: Option<Bytes>;
+  readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkEquippableList */
+export interface UpDataStructsRmrkEquippableList extends Enum {
+  readonly isAll: boolean;
+  readonly isEmpty: boolean;
+  readonly isCustom: boolean;
+  readonly asCustom: Vec<u32>;
+  readonly type: 'All' | 'Empty' | 'Custom';
+}
+
+/** @name UpDataStructsRmrkFixedPart */
+export interface UpDataStructsRmrkFixedPart extends Struct {
+  readonly id: u32;
+  readonly z: u32;
+  readonly src: Bytes;
+}
+
+/** @name UpDataStructsRmrkNftChild */
+export interface UpDataStructsRmrkNftChild extends Struct {
+  readonly collectionId: u32;
+  readonly nftId: u32;
+}
+
+/** @name UpDataStructsRmrkNftInfo */
+export interface UpDataStructsRmrkNftInfo extends Struct {
+  readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+  readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
+  readonly metadata: Bytes;
+  readonly equipped: bool;
+  readonly pending: bool;
+}
+
+/** @name UpDataStructsRmrkPartType */
+export interface UpDataStructsRmrkPartType extends Enum {
+  readonly isFixedPart: boolean;
+  readonly asFixedPart: UpDataStructsRmrkFixedPart;
+  readonly isSlotPart: boolean;
+  readonly asSlotPart: UpDataStructsRmrkSlotPart;
+  readonly type: 'FixedPart' | 'SlotPart';
+}
+
+/** @name UpDataStructsRmrkPropertyInfo */
+export interface UpDataStructsRmrkPropertyInfo extends Struct {
+  readonly key: Bytes;
+  readonly value: Bytes;
+}
+
+/** @name UpDataStructsRmrkResourceInfo */
+export interface UpDataStructsRmrkResourceInfo extends Struct {
+  readonly id: Bytes;
+  readonly resource: UpDataStructsRmrkResourceTypes;
+  readonly pending: bool;
+  readonly pendingRemoval: bool;
+}
+
+/** @name UpDataStructsRmrkResourceTypes */
+export interface UpDataStructsRmrkResourceTypes extends Enum {
+  readonly isBasic: boolean;
+  readonly asBasic: UpDataStructsRmrkBasicResource;
+  readonly isComposable: boolean;
+  readonly asComposable: UpDataStructsRmrkComposableResource;
+  readonly isSlot: boolean;
+  readonly asSlot: UpDataStructsRmrkSlotResource;
+  readonly type: 'Basic' | 'Composable' | 'Slot';
+}
+
+/** @name UpDataStructsRmrkRoyaltyInfo */
+export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
+  readonly recipient: AccountId32;
+  readonly amount: Permill;
+}
+
+/** @name UpDataStructsRmrkSlotPart */
+export interface UpDataStructsRmrkSlotPart extends Struct {
+  readonly id: u32;
+  readonly equippable: UpDataStructsRmrkEquippableList;
+  readonly src: Bytes;
+  readonly z: u32;
+}
+
+/** @name UpDataStructsRmrkSlotResource */
+export interface UpDataStructsRmrkSlotResource extends Struct {
+  readonly base: u32;
+  readonly src: Option<Bytes>;
+  readonly metadata: Option<Bytes>;
+  readonly slot: u32;
+  readonly license: Option<Bytes>;
+  readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkTheme */
+export interface UpDataStructsRmrkTheme extends Struct {
+  readonly name: Bytes;
+  readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
+  readonly inherit: bool;
+}
+
+/** @name UpDataStructsRmrkThemeProperty */
+export interface UpDataStructsRmrkThemeProperty extends Struct {
+  readonly key: Bytes;
+  readonly value: Bytes;
+}
+
 /** @name UpDataStructsRpcCollection */
 export interface UpDataStructsRpcCollection extends Struct {
   readonly owner: AccountId32;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1674,7 +1674,113 @@
   /** @name PalletStructureCall (206) */
   export type PalletStructureCall = Null;
 
-  /** @name PalletEvmCall (207) */
+  /** @name PalletRmrkCoreCall (207) */
+  export interface PalletRmrkCoreCall extends Enum {
+    readonly isCreateCollection: boolean;
+    readonly asCreateCollection: {
+      readonly metadata: Bytes;
+      readonly max: Option<u32>;
+      readonly symbol: Bytes;
+    } & Struct;
+    readonly isDestroyCollection: boolean;
+    readonly asDestroyCollection: {
+      readonly collectionId: u32;
+    } & Struct;
+    readonly isChangeCollectionIssuer: boolean;
+    readonly asChangeCollectionIssuer: {
+      readonly collectionId: u32;
+      readonly newIssuer: MultiAddress;
+    } & Struct;
+    readonly isLockCollection: boolean;
+    readonly asLockCollection: {
+      readonly collectionId: u32;
+    } & Struct;
+    readonly isMintNft: boolean;
+    readonly asMintNft: {
+      readonly owner: AccountId32;
+      readonly collectionId: u32;
+      readonly recipient: Option<AccountId32>;
+      readonly royaltyAmount: Option<Permill>;
+      readonly metadata: Bytes;
+    } & Struct;
+    readonly isBurnNft: boolean;
+    readonly asBurnNft: {
+      readonly collectionId: u32;
+      readonly nftId: u32;
+    } & Struct;
+    readonly isSetProperty: boolean;
+    readonly asSetProperty: {
+      readonly rmrkCollectionId: Compact<u32>;
+      readonly maybeNftId: Option<u32>;
+      readonly key: Bytes;
+      readonly value: Bytes;
+    } & Struct;
+    readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';
+  }
+
+  /** @name PalletRmrkEquipCall (213) */
+  export interface PalletRmrkEquipCall extends Enum {
+    readonly isCreateBase: boolean;
+    readonly asCreateBase: {
+      readonly baseType: Bytes;
+      readonly symbol: Bytes;
+      readonly parts: Vec<UpDataStructsRmrkPartType>;
+    } & Struct;
+    readonly isThemeAdd: boolean;
+    readonly asThemeAdd: {
+      readonly baseId: u32;
+      readonly theme: UpDataStructsRmrkTheme;
+    } & Struct;
+    readonly type: 'CreateBase' | 'ThemeAdd';
+  }
+
+  /** @name UpDataStructsRmrkPartType (215) */
+  export interface UpDataStructsRmrkPartType extends Enum {
+    readonly isFixedPart: boolean;
+    readonly asFixedPart: UpDataStructsRmrkFixedPart;
+    readonly isSlotPart: boolean;
+    readonly asSlotPart: UpDataStructsRmrkSlotPart;
+    readonly type: 'FixedPart' | 'SlotPart';
+  }
+
+  /** @name UpDataStructsRmrkFixedPart (217) */
+  export interface UpDataStructsRmrkFixedPart extends Struct {
+    readonly id: u32;
+    readonly z: u32;
+    readonly src: Bytes;
+  }
+
+  /** @name UpDataStructsRmrkSlotPart (218) */
+  export interface UpDataStructsRmrkSlotPart extends Struct {
+    readonly id: u32;
+    readonly equippable: UpDataStructsRmrkEquippableList;
+    readonly src: Bytes;
+    readonly z: u32;
+  }
+
+  /** @name UpDataStructsRmrkEquippableList (219) */
+  export interface UpDataStructsRmrkEquippableList extends Enum {
+    readonly isAll: boolean;
+    readonly isEmpty: boolean;
+    readonly isCustom: boolean;
+    readonly asCustom: Vec<u32>;
+    readonly type: 'All' | 'Empty' | 'Custom';
+  }
+
+  /** @name UpDataStructsRmrkTheme (221) */
+  export interface UpDataStructsRmrkTheme extends Struct {
+    readonly name: Bytes;
+    readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
+    readonly inherit: bool;
+  }
+
+  /** @name UpDataStructsRmrkThemeProperty (223) */
+  export interface UpDataStructsRmrkThemeProperty extends Struct {
+    readonly key: Bytes;
+    readonly value: Bytes;
+  }
+
+  /** @name PalletEvmCall (224) */
   export interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -1719,7 +1825,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (213) */
+  /** @name PalletEthereumCall (230) */
   export interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -1728,7 +1834,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (214) */
+  /** @name EthereumTransactionTransactionV2 (231) */
   export interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -1739,7 +1845,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (215) */
+  /** @name EthereumTransactionLegacyTransaction (232) */
   export interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -1750,7 +1856,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (216) */
+  /** @name EthereumTransactionTransactionAction (233) */
   export interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -1758,14 +1864,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (217) */
+  /** @name EthereumTransactionTransactionSignature (234) */
   export interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (219) */
+  /** @name EthereumTransactionEip2930Transaction (236) */
   export interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -1780,13 +1886,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (221) */
+  /** @name EthereumTransactionAccessListItem (238) */
   export interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (222) */
+  /** @name EthereumTransactionEip1559Transaction (239) */
   export interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -1802,7 +1908,7 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmMigrationCall (223) */
+  /** @name PalletEvmMigrationCall (240) */
   export interface PalletEvmMigrationCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
@@ -1821,7 +1927,7 @@
     readonly type: 'Begin' | 'SetData' | 'Finish';
   }
 
-  /** @name PalletSudoEvent (226) */
+  /** @name PalletSudoEvent (243) */
   export interface PalletSudoEvent extends Enum {
     readonly isSudid: boolean;
     readonly asSudid: {
@@ -1838,7 +1944,7 @@
     readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
   }
 
-  /** @name SpRuntimeDispatchError (228) */
+  /** @name SpRuntimeDispatchError (245) */
   export interface SpRuntimeDispatchError extends Enum {
     readonly isOther: boolean;
     readonly isCannotLookup: boolean;
@@ -1857,13 +1963,13 @@
     readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
   }
 
-  /** @name SpRuntimeModuleError (229) */
+  /** @name SpRuntimeModuleError (246) */
   export interface SpRuntimeModuleError extends Struct {
     readonly index: u8;
     readonly error: U8aFixed;
   }
 
-  /** @name SpRuntimeTokenError (230) */
+  /** @name SpRuntimeTokenError (247) */
   export interface SpRuntimeTokenError extends Enum {
     readonly isNoFunds: boolean;
     readonly isWouldDie: boolean;
@@ -1875,7 +1981,7 @@
     readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
   }
 
-  /** @name SpRuntimeArithmeticError (231) */
+  /** @name SpRuntimeArithmeticError (248) */
   export interface SpRuntimeArithmeticError extends Enum {
     readonly isUnderflow: boolean;
     readonly isOverflow: boolean;
@@ -1883,20 +1989,20 @@
     readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
   }
 
-  /** @name SpRuntimeTransactionalError (232) */
+  /** @name SpRuntimeTransactionalError (249) */
   export interface SpRuntimeTransactionalError extends Enum {
     readonly isLimitReached: boolean;
     readonly isNoLayer: boolean;
     readonly type: 'LimitReached' | 'NoLayer';
   }
 
-  /** @name PalletSudoError (233) */
+  /** @name PalletSudoError (250) */
   export interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name FrameSystemAccountInfo (234) */
+  /** @name FrameSystemAccountInfo (251) */
   export interface FrameSystemAccountInfo extends Struct {
     readonly nonce: u32;
     readonly consumers: u32;
@@ -1905,19 +2011,19 @@
     readonly data: PalletBalancesAccountData;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassU64 (235) */
+  /** @name FrameSupportWeightsPerDispatchClassU64 (252) */
   export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
     readonly normal: u64;
     readonly operational: u64;
     readonly mandatory: u64;
   }
 
-  /** @name SpRuntimeDigest (236) */
+  /** @name SpRuntimeDigest (253) */
   export interface SpRuntimeDigest extends Struct {
     readonly logs: Vec<SpRuntimeDigestDigestItem>;
   }
 
-  /** @name SpRuntimeDigestDigestItem (238) */
+  /** @name SpRuntimeDigestDigestItem (255) */
   export interface SpRuntimeDigestDigestItem extends Enum {
     readonly isOther: boolean;
     readonly asOther: Bytes;
@@ -1931,14 +2037,14 @@
     readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
   }
 
-  /** @name FrameSystemEventRecord (240) */
+  /** @name FrameSystemEventRecord (257) */
   export interface FrameSystemEventRecord extends Struct {
     readonly phase: FrameSystemPhase;
     readonly event: Event;
     readonly topics: Vec<H256>;
   }
 
-  /** @name FrameSystemEvent (242) */
+  /** @name FrameSystemEvent (259) */
   export interface FrameSystemEvent extends Enum {
     readonly isExtrinsicSuccess: boolean;
     readonly asExtrinsicSuccess: {
@@ -1966,14 +2072,14 @@
     readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
   }
 
-  /** @name FrameSupportWeightsDispatchInfo (243) */
+  /** @name FrameSupportWeightsDispatchInfo (260) */
   export interface FrameSupportWeightsDispatchInfo extends Struct {
     readonly weight: u64;
     readonly class: FrameSupportWeightsDispatchClass;
     readonly paysFee: FrameSupportWeightsPays;
   }
 
-  /** @name FrameSupportWeightsDispatchClass (244) */
+  /** @name FrameSupportWeightsDispatchClass (261) */
   export interface FrameSupportWeightsDispatchClass extends Enum {
     readonly isNormal: boolean;
     readonly isOperational: boolean;
@@ -1981,14 +2087,14 @@
     readonly type: 'Normal' | 'Operational' | 'Mandatory';
   }
 
-  /** @name FrameSupportWeightsPays (245) */
+  /** @name FrameSupportWeightsPays (262) */
   export interface FrameSupportWeightsPays extends Enum {
     readonly isYes: boolean;
     readonly isNo: boolean;
     readonly type: 'Yes' | 'No';
   }
 
-  /** @name OrmlVestingModuleEvent (246) */
+  /** @name OrmlVestingModuleEvent (263) */
   export interface OrmlVestingModuleEvent extends Enum {
     readonly isVestingScheduleAdded: boolean;
     readonly asVestingScheduleAdded: {
@@ -2008,7 +2114,7 @@
     readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
   }
 
-  /** @name CumulusPalletXcmpQueueEvent (247) */
+  /** @name CumulusPalletXcmpQueueEvent (264) */
   export interface CumulusPalletXcmpQueueEvent extends Enum {
     readonly isSuccess: boolean;
     readonly asSuccess: Option<H256>;
@@ -2029,7 +2135,7 @@
     readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletXcmEvent (248) */
+  /** @name PalletXcmEvent (265) */
   export interface PalletXcmEvent extends Enum {
     readonly isAttempted: boolean;
     readonly asAttempted: XcmV2TraitsOutcome;
@@ -2066,7 +2172,7 @@
     readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
   }
 
-  /** @name XcmV2TraitsOutcome (249) */
+  /** @name XcmV2TraitsOutcome (266) */
   export interface XcmV2TraitsOutcome extends Enum {
     readonly isComplete: boolean;
     readonly asComplete: u64;
@@ -2077,7 +2183,7 @@
     readonly type: 'Complete' | 'Incomplete' | 'Error';
   }
 
-  /** @name CumulusPalletXcmEvent (251) */
+  /** @name CumulusPalletXcmEvent (268) */
   export interface CumulusPalletXcmEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
@@ -2088,7 +2194,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
   }
 
-  /** @name CumulusPalletDmpQueueEvent (252) */
+  /** @name CumulusPalletDmpQueueEvent (269) */
   export interface CumulusPalletDmpQueueEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
@@ -2105,7 +2211,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletUniqueRawEvent (253) */
+  /** @name PalletUniqueRawEvent (270) */
   export interface PalletUniqueRawEvent extends Enum {
     readonly isCollectionSponsorRemoved: boolean;
     readonly asCollectionSponsorRemoved: u32;
@@ -2138,7 +2244,7 @@
     readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';
   }
 
-  /** @name PalletCommonEvent (254) */
+  /** @name PalletCommonEvent (271) */
   export interface PalletCommonEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -2165,14 +2271,68 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
   }
 
-  /** @name PalletStructureEvent (255) */
+  /** @name PalletStructureEvent (272) */
   export interface PalletStructureEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
     readonly type: 'Executed';
   }
 
-  /** @name PalletEvmEvent (256) */
+  /** @name PalletRmrkCoreEvent (273) */
+  export interface PalletRmrkCoreEvent extends Enum {
+    readonly isCollectionCreated: boolean;
+    readonly asCollectionCreated: {
+      readonly issuer: AccountId32;
+      readonly collectionId: u32;
+    } & Struct;
+    readonly isCollectionDestroyed: boolean;
+    readonly asCollectionDestroyed: {
+      readonly issuer: AccountId32;
+      readonly collectionId: u32;
+    } & Struct;
+    readonly isIssuerChanged: boolean;
+    readonly asIssuerChanged: {
+      readonly oldIssuer: AccountId32;
+      readonly newIssuer: AccountId32;
+      readonly collectionId: u32;
+    } & Struct;
+    readonly isCollectionLocked: boolean;
+    readonly asCollectionLocked: {
+      readonly issuer: AccountId32;
+      readonly collectionId: u32;
+    } & Struct;
+    readonly isNftMinted: boolean;
+    readonly asNftMinted: {
+      readonly owner: AccountId32;
+      readonly collectionId: u32;
+      readonly nftId: u32;
+    } & Struct;
+    readonly isNftBurned: boolean;
+    readonly asNftBurned: {
+      readonly owner: AccountId32;
+      readonly nftId: u32;
+    } & Struct;
+    readonly isPropertySet: boolean;
+    readonly asPropertySet: {
+      readonly collectionId: u32;
+      readonly maybeNftId: Option<u32>;
+      readonly key: Bytes;
+      readonly value: Bytes;
+    } & Struct;
+    readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';
+  }
+
+  /** @name PalletRmrkEquipEvent (274) */
+  export interface PalletRmrkEquipEvent extends Enum {
+    readonly isBaseCreated: boolean;
+    readonly asBaseCreated: {
+      readonly issuer: AccountId32;
+      readonly baseId: u32;
+    } & Struct;
+    readonly type: 'BaseCreated';
+  }
+
+  /** @name PalletEvmEvent (275) */
   export interface PalletEvmEvent extends Enum {
     readonly isLog: boolean;
     readonly asLog: EthereumLog;
@@ -2191,21 +2351,21 @@
     readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
   }
 
-  /** @name EthereumLog (257) */
+  /** @name EthereumLog (276) */
   export interface EthereumLog extends Struct {
     readonly address: H160;
     readonly topics: Vec<H256>;
     readonly data: Bytes;
   }
 
-  /** @name PalletEthereumEvent (258) */
+  /** @name PalletEthereumEvent (277) */
   export interface PalletEthereumEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
     readonly type: 'Executed';
   }
 
-  /** @name EvmCoreErrorExitReason (259) */
+  /** @name EvmCoreErrorExitReason (278) */
   export interface EvmCoreErrorExitReason extends Enum {
     readonly isSucceed: boolean;
     readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -2218,7 +2378,7 @@
     readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
   }
 
-  /** @name EvmCoreErrorExitSucceed (260) */
+  /** @name EvmCoreErrorExitSucceed (279) */
   export interface EvmCoreErrorExitSucceed extends Enum {
     readonly isStopped: boolean;
     readonly isReturned: boolean;
@@ -2226,7 +2386,7 @@
     readonly type: 'Stopped' | 'Returned' | 'Suicided';
   }
 
-  /** @name EvmCoreErrorExitError (261) */
+  /** @name EvmCoreErrorExitError (280) */
   export interface EvmCoreErrorExitError extends Enum {
     readonly isStackUnderflow: boolean;
     readonly isStackOverflow: boolean;
@@ -2247,13 +2407,13 @@
     readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
   }
 
-  /** @name EvmCoreErrorExitRevert (264) */
+  /** @name EvmCoreErrorExitRevert (283) */
   export interface EvmCoreErrorExitRevert extends Enum {
     readonly isReverted: boolean;
     readonly type: 'Reverted';
   }
 
-  /** @name EvmCoreErrorExitFatal (265) */
+  /** @name EvmCoreErrorExitFatal (284) */
   export interface EvmCoreErrorExitFatal extends Enum {
     readonly isNotSupported: boolean;
     readonly isUnhandledInterrupt: boolean;
@@ -2264,7 +2424,7 @@
     readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
   }
 
-  /** @name FrameSystemPhase (266) */
+  /** @name FrameSystemPhase (285) */
   export interface FrameSystemPhase extends Enum {
     readonly isApplyExtrinsic: boolean;
     readonly asApplyExtrinsic: u32;
@@ -2273,27 +2433,27 @@
     readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
   }
 
-  /** @name FrameSystemLastRuntimeUpgradeInfo (268) */
+  /** @name FrameSystemLastRuntimeUpgradeInfo (287) */
   export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
     readonly specVersion: Compact<u32>;
     readonly specName: Text;
   }
 
-  /** @name FrameSystemLimitsBlockWeights (269) */
+  /** @name FrameSystemLimitsBlockWeights (288) */
   export interface FrameSystemLimitsBlockWeights extends Struct {
     readonly baseBlock: u64;
     readonly maxBlock: u64;
     readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (270) */
+  /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (289) */
   export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
     readonly normal: FrameSystemLimitsWeightsPerClass;
     readonly operational: FrameSystemLimitsWeightsPerClass;
     readonly mandatory: FrameSystemLimitsWeightsPerClass;
   }
 
-  /** @name FrameSystemLimitsWeightsPerClass (271) */
+  /** @name FrameSystemLimitsWeightsPerClass (290) */
   export interface FrameSystemLimitsWeightsPerClass extends Struct {
     readonly baseExtrinsic: u64;
     readonly maxExtrinsic: Option<u64>;
@@ -2301,25 +2461,25 @@
     readonly reserved: Option<u64>;
   }
 
-  /** @name FrameSystemLimitsBlockLength (273) */
+  /** @name FrameSystemLimitsBlockLength (292) */
   export interface FrameSystemLimitsBlockLength extends Struct {
     readonly max: FrameSupportWeightsPerDispatchClassU32;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassU32 (274) */
+  /** @name FrameSupportWeightsPerDispatchClassU32 (293) */
   export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
     readonly normal: u32;
     readonly operational: u32;
     readonly mandatory: u32;
   }
 
-  /** @name FrameSupportWeightsRuntimeDbWeight (275) */
+  /** @name FrameSupportWeightsRuntimeDbWeight (294) */
   export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
     readonly read: u64;
     readonly write: u64;
   }
 
-  /** @name SpVersionRuntimeVersion (276) */
+  /** @name SpVersionRuntimeVersion (295) */
   export interface SpVersionRuntimeVersion extends Struct {
     readonly specName: Text;
     readonly implName: Text;
@@ -2331,7 +2491,7 @@
     readonly stateVersion: u8;
   }
 
-  /** @name FrameSystemError (280) */
+  /** @name FrameSystemError (299) */
   export interface FrameSystemError extends Enum {
     readonly isInvalidSpecName: boolean;
     readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2342,7 +2502,7 @@
     readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
   }
 
-  /** @name OrmlVestingModuleError (282) */
+  /** @name OrmlVestingModuleError (301) */
   export interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -2353,21 +2513,21 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (284) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (303) */
   export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (285) */
+  /** @name CumulusPalletXcmpQueueInboundState (304) */
   export interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (288) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (307) */
   export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -2375,7 +2535,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (291) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (310) */
   export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2384,14 +2544,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (292) */
+  /** @name CumulusPalletXcmpQueueOutboundState (311) */
   export interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (294) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (313) */
   export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -2401,7 +2561,7 @@
     readonly xcmpMaxIndividualWeight: u64;
   }
 
-  /** @name CumulusPalletXcmpQueueError (296) */
+  /** @name CumulusPalletXcmpQueueError (315) */
   export interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -2411,7 +2571,7 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmError (297) */
+  /** @name PalletXcmError (316) */
   export interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -2429,29 +2589,29 @@
     readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
   }
 
-  /** @name CumulusPalletXcmError (298) */
+  /** @name CumulusPalletXcmError (317) */
   export type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (299) */
+  /** @name CumulusPalletDmpQueueConfigData (318) */
   export interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: u64;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (300) */
+  /** @name CumulusPalletDmpQueuePageIndexData (319) */
   export interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (303) */
+  /** @name CumulusPalletDmpQueueError (322) */
   export interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (307) */
+  /** @name PalletUniqueError (326) */
   export interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isConfirmUnsetSponsorFail: boolean;
@@ -2459,7 +2619,7 @@
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
   }
 
-  /** @name UpDataStructsCollection (308) */
+  /** @name UpDataStructsCollection (327) */
   export interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -2473,7 +2633,7 @@
     readonly limits: UpDataStructsCollectionLimits;
   }
 
-  /** @name UpDataStructsSponsorshipState (309) */
+  /** @name UpDataStructsSponsorshipState (328) */
   export interface UpDataStructsSponsorshipState extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -2483,47 +2643,47 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (310) */
+  /** @name UpDataStructsProperties (329) */
   export interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly spaceLimit: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (311) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (330) */
   export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (316) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (335) */
   export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionField (322) */
+  /** @name UpDataStructsCollectionField (341) */
   export interface UpDataStructsCollectionField extends Enum {
     readonly isConstOnChainSchema: boolean;
     readonly isOffchainSchema: boolean;
     readonly type: 'ConstOnChainSchema' | 'OffchainSchema';
   }
 
-  /** @name UpDataStructsCollectionStats (325) */
+  /** @name UpDataStructsCollectionStats (344) */
   export interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name PhantomTypeUpDataStructsTokenData (326) */
+  /** @name PhantomTypeUpDataStructsTokenData (345) */
   export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}
 
-  /** @name UpDataStructsTokenData (327) */
+  /** @name UpDataStructsTokenData (346) */
   export interface UpDataStructsTokenData extends Struct {
     readonly constData: Bytes;
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
   }
 
-  /** @name PhantomTypeUpDataStructsRpcCollection (330) */
+  /** @name PhantomTypeUpDataStructsRpcCollection (349) */
   export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}
 
-  /** @name UpDataStructsRpcCollection (331) */
+  /** @name UpDataStructsRpcCollection (350) */
   export interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -2541,11 +2701,11 @@
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name PhantomTypeUpDataStructsCollectionInfo (333) */
-  export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<RmrkTypesCollectionInfo> {}
+  /** @name PhantomTypeUpDataStructsCollectionInfo (352) */
+  export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<UpDataStructsRmrkCollectionInfo> {}
 
-  /** @name RmrkTypesCollectionInfo (334) */
-  export interface RmrkTypesCollectionInfo extends Struct {
+  /** @name UpDataStructsRmrkCollectionInfo (353) */
+  export interface UpDataStructsRmrkCollectionInfo extends Struct {
     readonly issuer: AccountId32;
     readonly metadata: Bytes;
     readonly max: Option<u32>;
@@ -2553,20 +2713,20 @@
     readonly nftsCount: u32;
   }
 
-  /** @name PhantomTypeUpDataStructsNftInfo (338) */
-  export interface PhantomTypeUpDataStructsNftInfo extends Vec<RmrkTypesNftInfo> {}
+  /** @name PhantomTypeUpDataStructsNftInfo (355) */
+  export interface PhantomTypeUpDataStructsNftInfo extends Vec<UpDataStructsRmrkNftInfo> {}
 
-  /** @name RmrkTypesNftInfo (339) */
-  export interface RmrkTypesNftInfo extends Struct {
-    readonly owner: RmrkTypesAccountIdOrCollectionNftTuple;
-    readonly royalty: Option<RmrkTypesRoyaltyInfo>;
+  /** @name UpDataStructsRmrkNftInfo (356) */
+  export interface UpDataStructsRmrkNftInfo extends Struct {
+    readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+    readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
     readonly metadata: Bytes;
     readonly equipped: bool;
     readonly pending: bool;
   }
 
-  /** @name RmrkTypesAccountIdOrCollectionNftTuple (340) */
-  export interface RmrkTypesAccountIdOrCollectionNftTuple extends Enum {
+  /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (357) */
+  export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
     readonly isAccountId: boolean;
     readonly asAccountId: AccountId32;
     readonly isCollectionAndNftTuple: boolean;
@@ -2574,110 +2734,97 @@
     readonly type: 'AccountId' | 'CollectionAndNftTuple';
   }
 
-  /** @name RmrkTypesRoyaltyInfo (342) */
-  export interface RmrkTypesRoyaltyInfo extends Struct {
+  /** @name UpDataStructsRmrkRoyaltyInfo (359) */
+  export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
     readonly recipient: AccountId32;
     readonly amount: Permill;
   }
 
-  /** @name PhantomTypeUpDataStructsResourceInfo (344) */
-  export interface PhantomTypeUpDataStructsResourceInfo extends Vec<RmrkTypesResourceInfo> {}
+  /** @name PhantomTypeUpDataStructsResourceInfo (361) */
+  export interface PhantomTypeUpDataStructsResourceInfo extends Vec<UpDataStructsRmrkResourceInfo> {}
 
-  /** @name RmrkTypesResourceInfo (345) */
-  export interface RmrkTypesResourceInfo extends Struct {
+  /** @name UpDataStructsRmrkResourceInfo (362) */
+  export interface UpDataStructsRmrkResourceInfo extends Struct {
     readonly id: Bytes;
+    readonly resource: UpDataStructsRmrkResourceTypes;
     readonly pending: bool;
     readonly pendingRemoval: bool;
-    readonly parts: Option<Vec<u32>>;
-    readonly base: Option<u32>;
+  }
+
+  /** @name UpDataStructsRmrkResourceTypes (365) */
+  export interface UpDataStructsRmrkResourceTypes extends Enum {
+    readonly isBasic: boolean;
+    readonly asBasic: UpDataStructsRmrkBasicResource;
+    readonly isComposable: boolean;
+    readonly asComposable: UpDataStructsRmrkComposableResource;
+    readonly isSlot: boolean;
+    readonly asSlot: UpDataStructsRmrkSlotResource;
+    readonly type: 'Basic' | 'Composable' | 'Slot';
+  }
+
+  /** @name UpDataStructsRmrkBasicResource (366) */
+  export interface UpDataStructsRmrkBasicResource extends Struct {
     readonly src: Option<Bytes>;
     readonly metadata: Option<Bytes>;
-    readonly slot: Option<u32>;
     readonly license: Option<Bytes>;
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name PhantomTypeUpDataStructsPropertyInfo (351) */
-  export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<RmrkTypesPropertyInfo> {}
+  /** @name UpDataStructsRmrkComposableResource (368) */
+  export interface UpDataStructsRmrkComposableResource extends Struct {
+    readonly parts: Vec<u32>;
+    readonly base: u32;
+    readonly src: Option<Bytes>;
+    readonly metadata: Option<Bytes>;
+    readonly license: Option<Bytes>;
+    readonly thumb: Option<Bytes>;
+  }
 
-  /** @name RmrkTypesPropertyInfo (352) */
-  export interface RmrkTypesPropertyInfo extends Struct {
+  /** @name UpDataStructsRmrkSlotResource (369) */
+  export interface UpDataStructsRmrkSlotResource extends Struct {
+    readonly base: u32;
+    readonly src: Option<Bytes>;
+    readonly metadata: Option<Bytes>;
+    readonly slot: u32;
+    readonly license: Option<Bytes>;
+    readonly thumb: Option<Bytes>;
+  }
+
+  /** @name PhantomTypeUpDataStructsPropertyInfo (371) */
+  export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<UpDataStructsRmrkPropertyInfo> {}
+
+  /** @name UpDataStructsRmrkPropertyInfo (372) */
+  export interface UpDataStructsRmrkPropertyInfo extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name PhantomTypeUpDataStructsBaseInfo (356) */
-  export interface PhantomTypeUpDataStructsBaseInfo extends Vec<RmrkTypesBaseInfo> {}
+  /** @name PhantomTypeUpDataStructsBaseInfo (374) */
+  export interface PhantomTypeUpDataStructsBaseInfo extends Vec<UpDataStructsRmrkBaseInfo> {}
 
-  /** @name RmrkTypesBaseInfo (357) */
-  export interface RmrkTypesBaseInfo extends Struct {
+  /** @name UpDataStructsRmrkBaseInfo (375) */
+  export interface UpDataStructsRmrkBaseInfo extends Struct {
     readonly issuer: AccountId32;
     readonly baseType: Bytes;
     readonly symbol: Bytes;
   }
 
-  /** @name PhantomTypeUpDataStructsPartType (359) */
-  export interface PhantomTypeUpDataStructsPartType extends Vec<RmrkTypesPartType> {}
+  /** @name PhantomTypeUpDataStructsPartType (377) */
+  export interface PhantomTypeUpDataStructsPartType extends Vec<UpDataStructsRmrkPartType> {}
 
-  /** @name RmrkTypesPartType (360) */
-  export interface RmrkTypesPartType extends Enum {
-    readonly isFixedPart: boolean;
-    readonly asFixedPart: RmrkTypesFixedPart;
-    readonly isSlotPart: boolean;
-    readonly asSlotPart: RmrkTypesSlotPart;
-    readonly type: 'FixedPart' | 'SlotPart';
-  }
-
-  /** @name RmrkTypesFixedPart (362) */
-  export interface RmrkTypesFixedPart extends Struct {
-    readonly id: u32;
-    readonly z: u32;
-    readonly src: Bytes;
-  }
+  /** @name PhantomTypeUpDataStructsTheme (379) */
+  export interface PhantomTypeUpDataStructsTheme extends Vec<UpDataStructsRmrkTheme> {}
 
-  /** @name RmrkTypesSlotPart (363) */
-  export interface RmrkTypesSlotPart extends Struct {
-    readonly id: u32;
-    readonly equippable: RmrkTypesEquippableList;
-    readonly src: Bytes;
-    readonly z: u32;
-  }
-
-  /** @name RmrkTypesEquippableList (364) */
-  export interface RmrkTypesEquippableList extends Enum {
-    readonly isAll: boolean;
-    readonly isEmpty: boolean;
-    readonly isCustom: boolean;
-    readonly asCustom: Vec<u32>;
-    readonly type: 'All' | 'Empty' | 'Custom';
-  }
+  /** @name PhantomTypeUpDataStructsNftChild (381) */
+  export interface PhantomTypeUpDataStructsNftChild extends Vec<UpDataStructsRmrkNftChild> {}
 
-  /** @name PhantomTypeUpDataStructsTheme (366) */
-  export interface PhantomTypeUpDataStructsTheme extends Vec<RmrkTypesTheme> {}
-
-  /** @name RmrkTypesTheme (367) */
-  export interface RmrkTypesTheme extends Struct {
-    readonly name: Bytes;
-    readonly properties: Vec<RmrkTypesThemeProperty>;
-    readonly inherit: bool;
-  }
-
-  /** @name RmrkTypesThemeProperty (369) */
-  export interface RmrkTypesThemeProperty extends Struct {
-    readonly key: Bytes;
-    readonly value: Bytes;
-  }
-
-  /** @name PhantomTypeUpDataStructsNftChild (371) */
-  export interface PhantomTypeUpDataStructsNftChild extends Vec<RmrkTypesNftChild> {}
-
-  /** @name RmrkTypesNftChild (372) */
-  export interface RmrkTypesNftChild extends Struct {
+  /** @name UpDataStructsRmrkNftChild (382) */
+  export interface UpDataStructsRmrkNftChild extends Struct {
     readonly collectionId: u32;
     readonly nftId: u32;
   }
 
-  /** @name PalletCommonError (374) */
+  /** @name PalletCommonError (384) */
   export interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -2714,7 +2861,7 @@
     readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | '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';
   }
 
-  /** @name PalletFungibleError (376) */
+  /** @name PalletFungibleError (386) */
   export interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -2724,12 +2871,12 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletRefungibleItemData (377) */
+  /** @name PalletRefungibleItemData (387) */
   export interface PalletRefungibleItemData extends Struct {
     readonly constData: Bytes;
   }
 
-  /** @name PalletRefungibleError (381) */
+  /** @name PalletRefungibleError (391) */
   export interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -2738,20 +2885,20 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (382) */
+  /** @name PalletNonfungibleItemData (392) */
   export interface PalletNonfungibleItemData extends Struct {
     readonly constData: Bytes;
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name PalletNonfungibleError (383) */
+  /** @name PalletNonfungibleError (393) */
   export interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
   }
 
-  /** @name PalletStructureError (384) */
+  /** @name PalletStructureError (394) */
   export interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -2759,7 +2906,32 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
   }
 
-  /** @name PalletEvmError (387) */
+  /** @name PalletRmrkCoreError (395) */
+  export interface PalletRmrkCoreError extends Enum {
+    readonly isCorruptedCollectionType: boolean;
+    readonly isNftTypeEncodeError: boolean;
+    readonly isRmrkPropertyKeyIsTooLong: boolean;
+    readonly isRmrkPropertyValueIsTooLong: boolean;
+    readonly isCollectionNotEmpty: boolean;
+    readonly isNoAvailableCollectionId: boolean;
+    readonly isNoAvailableNftId: boolean;
+    readonly isCollectionUnknown: boolean;
+    readonly isNoPermission: boolean;
+    readonly isCollectionFullOrLocked: boolean;
+    readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';
+  }
+
+  /** @name PalletRmrkEquipError (397) */
+  export interface PalletRmrkEquipError extends Enum {
+    readonly isPermissionError: boolean;
+    readonly isNoAvailableBaseId: boolean;
+    readonly isNoAvailablePartId: boolean;
+    readonly isBaseDoesntExist: boolean;
+    readonly isNeedsDefaultThemeFirst: boolean;
+    readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
+  }
+
+  /** @name PalletEvmError (400) */
   export interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -2770,7 +2942,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
   }
 
-  /** @name FpRpcTransactionStatus (390) */
+  /** @name FpRpcTransactionStatus (403) */
   export interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -2781,10 +2953,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (392) */
+  /** @name EthbloomBloom (405) */
   export interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (394) */
+  /** @name EthereumReceiptReceiptV3 (407) */
   export interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -2795,7 +2967,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (395) */
+  /** @name EthereumReceiptEip658ReceiptData (408) */
   export interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -2803,14 +2975,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (396) */
+  /** @name EthereumBlock (409) */
   export interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (397) */
+  /** @name EthereumHeader (410) */
   export interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -2829,24 +3001,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (398) */
+  /** @name EthereumTypesHashH64 (411) */
   export interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (403) */
+  /** @name PalletEthereumError (416) */
   export interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (404) */
+  /** @name PalletEvmCoderSubstrateError (417) */
   export interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (405) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (418) */
   export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -2854,20 +3026,20 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (407) */
+  /** @name PalletEvmContractHelpersError (420) */
   export interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly type: 'NoPermission';
   }
 
-  /** @name PalletEvmMigrationError (408) */
+  /** @name PalletEvmMigrationError (421) */
   export interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
   }
 
-  /** @name SpRuntimeMultiSignature (410) */
+  /** @name SpRuntimeMultiSignature (423) */
   export interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -2878,34 +3050,34 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (411) */
+  /** @name SpCoreEd25519Signature (424) */
   export interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (413) */
+  /** @name SpCoreSr25519Signature (426) */
   export interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (414) */
+  /** @name SpCoreEcdsaSignature (427) */
   export interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (417) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (430) */
   export type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (418) */
+  /** @name FrameSystemExtensionsCheckGenesis (431) */
   export type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (421) */
+  /** @name FrameSystemExtensionsCheckNonce (434) */
   export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (422) */
+  /** @name FrameSystemExtensionsCheckWeight (435) */
   export type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (423) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (436) */
   export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (424) */
+  /** @name OpalRuntimeRuntime (437) */
   export type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (425) */
+  /** @name PalletEthereumFakeTransactionFinalizer (438) */
   export type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module
modifiedtests/src/interfaces/unique/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -1128,6 +1128,145 @@
   readonly constData: Bytes;
 }
 
+/** @name PalletRmrkCoreCall */
+export interface PalletRmrkCoreCall extends Enum {
+  readonly isCreateCollection: boolean;
+  readonly asCreateCollection: {
+    readonly metadata: Bytes;
+    readonly max: Option<u32>;
+    readonly symbol: Bytes;
+  } & Struct;
+  readonly isDestroyCollection: boolean;
+  readonly asDestroyCollection: {
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isChangeCollectionIssuer: boolean;
+  readonly asChangeCollectionIssuer: {
+    readonly collectionId: u32;
+    readonly newIssuer: MultiAddress;
+  } & Struct;
+  readonly isLockCollection: boolean;
+  readonly asLockCollection: {
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isMintNft: boolean;
+  readonly asMintNft: {
+    readonly owner: AccountId32;
+    readonly collectionId: u32;
+    readonly recipient: Option<AccountId32>;
+    readonly royaltyAmount: Option<Permill>;
+    readonly metadata: Bytes;
+  } & Struct;
+  readonly isBurnNft: boolean;
+  readonly asBurnNft: {
+    readonly collectionId: u32;
+    readonly nftId: u32;
+  } & Struct;
+  readonly isSetProperty: boolean;
+  readonly asSetProperty: {
+    readonly rmrkCollectionId: Compact<u32>;
+    readonly maybeNftId: Option<u32>;
+    readonly key: Bytes;
+    readonly value: Bytes;
+  } & Struct;
+  readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';
+}
+
+/** @name PalletRmrkCoreError */
+export interface PalletRmrkCoreError extends Enum {
+  readonly isCorruptedCollectionType: boolean;
+  readonly isNftTypeEncodeError: boolean;
+  readonly isRmrkPropertyKeyIsTooLong: boolean;
+  readonly isRmrkPropertyValueIsTooLong: boolean;
+  readonly isCollectionNotEmpty: boolean;
+  readonly isNoAvailableCollectionId: boolean;
+  readonly isNoAvailableNftId: boolean;
+  readonly isCollectionUnknown: boolean;
+  readonly isNoPermission: boolean;
+  readonly isCollectionFullOrLocked: boolean;
+  readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';
+}
+
+/** @name PalletRmrkCoreEvent */
+export interface PalletRmrkCoreEvent extends Enum {
+  readonly isCollectionCreated: boolean;
+  readonly asCollectionCreated: {
+    readonly issuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isCollectionDestroyed: boolean;
+  readonly asCollectionDestroyed: {
+    readonly issuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isIssuerChanged: boolean;
+  readonly asIssuerChanged: {
+    readonly oldIssuer: AccountId32;
+    readonly newIssuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isCollectionLocked: boolean;
+  readonly asCollectionLocked: {
+    readonly issuer: AccountId32;
+    readonly collectionId: u32;
+  } & Struct;
+  readonly isNftMinted: boolean;
+  readonly asNftMinted: {
+    readonly owner: AccountId32;
+    readonly collectionId: u32;
+    readonly nftId: u32;
+  } & Struct;
+  readonly isNftBurned: boolean;
+  readonly asNftBurned: {
+    readonly owner: AccountId32;
+    readonly nftId: u32;
+  } & Struct;
+  readonly isPropertySet: boolean;
+  readonly asPropertySet: {
+    readonly collectionId: u32;
+    readonly maybeNftId: Option<u32>;
+    readonly key: Bytes;
+    readonly value: Bytes;
+  } & Struct;
+  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';
+}
+
+/** @name PalletRmrkEquipCall */
+export interface PalletRmrkEquipCall extends Enum {
+  readonly isCreateBase: boolean;
+  readonly asCreateBase: {
+    readonly baseType: Bytes;
+    readonly symbol: Bytes;
+    readonly parts: Vec<UpDataStructsRmrkPartType>;
+  } & Struct;
+  readonly isThemeAdd: boolean;
+  readonly asThemeAdd: {
+    readonly baseId: u32;
+    readonly theme: UpDataStructsRmrkTheme;
+  } & Struct;
+  readonly type: 'CreateBase' | 'ThemeAdd';
+}
+
+/** @name PalletRmrkEquipError */
+export interface PalletRmrkEquipError extends Enum {
+  readonly isPermissionError: boolean;
+  readonly isNoAvailableBaseId: boolean;
+  readonly isNoAvailablePartId: boolean;
+  readonly isBaseDoesntExist: boolean;
+  readonly isNeedsDefaultThemeFirst: boolean;
+  readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
+}
+
+/** @name PalletRmrkEquipEvent */
+export interface PalletRmrkEquipEvent extends Enum {
+  readonly isBaseCreated: boolean;
+  readonly asBaseCreated: {
+    readonly issuer: AccountId32;
+    readonly baseId: u32;
+  } & Struct;
+  readonly type: 'BaseCreated';
+}
+
 /** @name PalletStructureCall */
 export interface PalletStructureCall extends Null {}
 
@@ -1615,34 +1754,34 @@
 }
 
 /** @name PhantomTypeUpDataStructsBaseInfo */
-export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup357> {}
+export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup375> {}
 
 /** @name PhantomTypeUpDataStructsCollectionInfo */
-export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup334> {}
+export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup353> {}
 
 /** @name PhantomTypeUpDataStructsNftChild */
-export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup372> {}
+export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup382> {}
 
 /** @name PhantomTypeUpDataStructsNftInfo */
-export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup339> {}
+export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup356> {}
 
 /** @name PhantomTypeUpDataStructsPartType */
-export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup360> {}
+export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup215> {}
 
 /** @name PhantomTypeUpDataStructsPropertyInfo */
-export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup352> {}
+export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup372> {}
 
 /** @name PhantomTypeUpDataStructsResourceInfo */
-export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup345> {}
+export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup362> {}
 
 /** @name PhantomTypeUpDataStructsRpcCollection */
-export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup331> {}
+export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup350> {}
 
 /** @name PhantomTypeUpDataStructsTheme */
-export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup367> {}
+export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup221> {}
 
 /** @name PhantomTypeUpDataStructsTokenData */
-export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup327> {}
+export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup346> {}
 
 /** @name PolkadotCorePrimitivesInboundDownwardMessage */
 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -1705,120 +1844,8 @@
 export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
   readonly isPresent: boolean;
   readonly type: 'Present';
-}
-
-/** @name RmrkTypesAccountIdOrCollectionNftTuple */
-export interface RmrkTypesAccountIdOrCollectionNftTuple extends Enum {
-  readonly isAccountId: boolean;
-  readonly asAccountId: AccountId32;
-  readonly isCollectionAndNftTuple: boolean;
-  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
-  readonly type: 'AccountId' | 'CollectionAndNftTuple';
-}
-
-/** @name RmrkTypesBaseInfo */
-export interface RmrkTypesBaseInfo extends Struct {
-  readonly issuer: AccountId32;
-  readonly baseType: Bytes;
-  readonly symbol: Bytes;
-}
-
-/** @name RmrkTypesCollectionInfo */
-export interface RmrkTypesCollectionInfo extends Struct {
-  readonly issuer: AccountId32;
-  readonly metadata: Bytes;
-  readonly max: Option<u32>;
-  readonly symbol: Bytes;
-  readonly nftsCount: u32;
-}
-
-/** @name RmrkTypesEquippableList */
-export interface RmrkTypesEquippableList extends Enum {
-  readonly isAll: boolean;
-  readonly isEmpty: boolean;
-  readonly isCustom: boolean;
-  readonly asCustom: Vec<u32>;
-  readonly type: 'All' | 'Empty' | 'Custom';
-}
-
-/** @name RmrkTypesFixedPart */
-export interface RmrkTypesFixedPart extends Struct {
-  readonly id: u32;
-  readonly z: u32;
-  readonly src: Bytes;
-}
-
-/** @name RmrkTypesNftChild */
-export interface RmrkTypesNftChild extends Struct {
-  readonly collectionId: u32;
-  readonly nftId: u32;
-}
-
-/** @name RmrkTypesNftInfo */
-export interface RmrkTypesNftInfo extends Struct {
-  readonly owner: RmrkTypesAccountIdOrCollectionNftTuple;
-  readonly royalty: Option<RmrkTypesRoyaltyInfo>;
-  readonly metadata: Bytes;
-  readonly equipped: bool;
-  readonly pending: bool;
-}
-
-/** @name RmrkTypesPartType */
-export interface RmrkTypesPartType extends Enum {
-  readonly isFixedPart: boolean;
-  readonly asFixedPart: RmrkTypesFixedPart;
-  readonly isSlotPart: boolean;
-  readonly asSlotPart: RmrkTypesSlotPart;
-  readonly type: 'FixedPart' | 'SlotPart';
-}
-
-/** @name RmrkTypesPropertyInfo */
-export interface RmrkTypesPropertyInfo extends Struct {
-  readonly key: Bytes;
-  readonly value: Bytes;
-}
-
-/** @name RmrkTypesResourceInfo */
-export interface RmrkTypesResourceInfo extends Struct {
-  readonly id: Bytes;
-  readonly pending: bool;
-  readonly pendingRemoval: bool;
-  readonly parts: Option<Vec<u32>>;
-  readonly base: Option<u32>;
-  readonly src: Option<Bytes>;
-  readonly metadata: Option<Bytes>;
-  readonly slot: Option<u32>;
-  readonly license: Option<Bytes>;
-  readonly thumb: Option<Bytes>;
-}
-
-/** @name RmrkTypesRoyaltyInfo */
-export interface RmrkTypesRoyaltyInfo extends Struct {
-  readonly recipient: AccountId32;
-  readonly amount: Permill;
-}
-
-/** @name RmrkTypesSlotPart */
-export interface RmrkTypesSlotPart extends Struct {
-  readonly id: u32;
-  readonly equippable: RmrkTypesEquippableList;
-  readonly src: Bytes;
-  readonly z: u32;
-}
-
-/** @name RmrkTypesTheme */
-export interface RmrkTypesTheme extends Struct {
-  readonly name: Bytes;
-  readonly properties: Vec<RmrkTypesThemeProperty>;
-  readonly inherit: bool;
 }
 
-/** @name RmrkTypesThemeProperty */
-export interface RmrkTypesThemeProperty extends Struct {
-  readonly key: Bytes;
-  readonly value: Bytes;
-}
-
 /** @name SpCoreEcdsaSignature */
 export interface SpCoreEcdsaSignature extends U8aFixed {}
 
@@ -2096,6 +2123,151 @@
   readonly tokenOwner: bool;
 }
 
+/** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple */
+export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
+  readonly isAccountId: boolean;
+  readonly asAccountId: AccountId32;
+  readonly isCollectionAndNftTuple: boolean;
+  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
+  readonly type: 'AccountId' | 'CollectionAndNftTuple';
+}
+
+/** @name UpDataStructsRmrkBaseInfo */
+export interface UpDataStructsRmrkBaseInfo extends Struct {
+  readonly issuer: AccountId32;
+  readonly baseType: Bytes;
+  readonly symbol: Bytes;
+}
+
+/** @name UpDataStructsRmrkBasicResource */
+export interface UpDataStructsRmrkBasicResource extends Struct {
+  readonly src: Option<Bytes>;
+  readonly metadata: Option<Bytes>;
+  readonly license: Option<Bytes>;
+  readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkCollectionInfo */
+export interface UpDataStructsRmrkCollectionInfo extends Struct {
+  readonly issuer: AccountId32;
+  readonly metadata: Bytes;
+  readonly max: Option<u32>;
+  readonly symbol: Bytes;
+  readonly nftsCount: u32;
+}
+
+/** @name UpDataStructsRmrkComposableResource */
+export interface UpDataStructsRmrkComposableResource extends Struct {
+  readonly parts: Vec<u32>;
+  readonly base: u32;
+  readonly src: Option<Bytes>;
+  readonly metadata: Option<Bytes>;
+  readonly license: Option<Bytes>;
+  readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkEquippableList */
+export interface UpDataStructsRmrkEquippableList extends Enum {
+  readonly isAll: boolean;
+  readonly isEmpty: boolean;
+  readonly isCustom: boolean;
+  readonly asCustom: Vec<u32>;
+  readonly type: 'All' | 'Empty' | 'Custom';
+}
+
+/** @name UpDataStructsRmrkFixedPart */
+export interface UpDataStructsRmrkFixedPart extends Struct {
+  readonly id: u32;
+  readonly z: u32;
+  readonly src: Bytes;
+}
+
+/** @name UpDataStructsRmrkNftChild */
+export interface UpDataStructsRmrkNftChild extends Struct {
+  readonly collectionId: u32;
+  readonly nftId: u32;
+}
+
+/** @name UpDataStructsRmrkNftInfo */
+export interface UpDataStructsRmrkNftInfo extends Struct {
+  readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+  readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
+  readonly metadata: Bytes;
+  readonly equipped: bool;
+  readonly pending: bool;
+}
+
+/** @name UpDataStructsRmrkPartType */
+export interface UpDataStructsRmrkPartType extends Enum {
+  readonly isFixedPart: boolean;
+  readonly asFixedPart: UpDataStructsRmrkFixedPart;
+  readonly isSlotPart: boolean;
+  readonly asSlotPart: UpDataStructsRmrkSlotPart;
+  readonly type: 'FixedPart' | 'SlotPart';
+}
+
+/** @name UpDataStructsRmrkPropertyInfo */
+export interface UpDataStructsRmrkPropertyInfo extends Struct {
+  readonly key: Bytes;
+  readonly value: Bytes;
+}
+
+/** @name UpDataStructsRmrkResourceInfo */
+export interface UpDataStructsRmrkResourceInfo extends Struct {
+  readonly id: Bytes;
+  readonly resource: UpDataStructsRmrkResourceTypes;
+  readonly pending: bool;
+  readonly pendingRemoval: bool;
+}
+
+/** @name UpDataStructsRmrkResourceTypes */
+export interface UpDataStructsRmrkResourceTypes extends Enum {
+  readonly isBasic: boolean;
+  readonly asBasic: UpDataStructsRmrkBasicResource;
+  readonly isComposable: boolean;
+  readonly asComposable: UpDataStructsRmrkComposableResource;
+  readonly isSlot: boolean;
+  readonly asSlot: UpDataStructsRmrkSlotResource;
+  readonly type: 'Basic' | 'Composable' | 'Slot';
+}
+
+/** @name UpDataStructsRmrkRoyaltyInfo */
+export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
+  readonly recipient: AccountId32;
+  readonly amount: Permill;
+}
+
+/** @name UpDataStructsRmrkSlotPart */
+export interface UpDataStructsRmrkSlotPart extends Struct {
+  readonly id: u32;
+  readonly equippable: UpDataStructsRmrkEquippableList;
+  readonly src: Bytes;
+  readonly z: u32;
+}
+
+/** @name UpDataStructsRmrkSlotResource */
+export interface UpDataStructsRmrkSlotResource extends Struct {
+  readonly base: u32;
+  readonly src: Option<Bytes>;
+  readonly metadata: Option<Bytes>;
+  readonly slot: u32;
+  readonly license: Option<Bytes>;
+  readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkTheme */
+export interface UpDataStructsRmrkTheme extends Struct {
+  readonly name: Bytes;
+  readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
+  readonly inherit: bool;
+}
+
+/** @name UpDataStructsRmrkThemeProperty */
+export interface UpDataStructsRmrkThemeProperty extends Struct {
+  readonly key: Bytes;
+  readonly value: Bytes;
+}
+
 /** @name UpDataStructsRpcCollection */
 export interface UpDataStructsRpcCollection extends Struct {
   readonly owner: AccountId32;