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

difftreelog

test disable RMRK

Fahrrader2022-05-30parent: #41b3020.patch.diff
in: master

13 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
@@ -65,6 +65,10 @@
        **/
       CantApproveMoreThanOwned: AugmentedError<ApiType>;
       /**
+       * Destroying only empty collections is allowed
+       **/
+      CantDestroyNotEmptyCollection: AugmentedError<ApiType>;
+      /**
        * Exceeded max admin count
        **/
       CollectionAdminCountExceeded: AugmentedError<ApiType>;
@@ -295,6 +299,10 @@
     };
     nonfungible: {
       /**
+       * Unable to burn NFT with children
+       **/
+      CantBurnNftWithChildren: AugmentedError<ApiType>;
+      /**
        * Used amount > 1 with NFT
        **/
       NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;
@@ -424,33 +432,6 @@
        * Maximum refungibility exceeded
        **/
       WrongRefungiblePieces: AugmentedError<ApiType>;
-      /**
-       * Generic error
-       **/
-      [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
        **/
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -396,26 +396,6 @@
        **/
       [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
@@ -228,6 +228,10 @@
        * Used to enumerate tokens owned by account
        **/
       owned: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]>;
+      /**
+       * Used to enumerate token's children
+       **/
+      tokenChildren: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<bool>, [u32, u32, ITuple<[u32, u32]>]> & QueryableStorageEntry<ApiType, [u32, u32, ITuple<[u32, u32]>]>;
       tokenData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletNonfungibleItemData>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
       tokenProperties: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<UpDataStructsProperties>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
       tokensBurnt: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
@@ -406,21 +410,6 @@
       tokensBurnt: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
       tokensMinted: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
       totalSupply: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<u128>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
-      /**
-       * Generic query
-       **/
-      [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
        **/
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, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkTheme, UpDataStructsRpcCollection, UpDataStructsTokenData } from './default';
+import type { PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenData } from './default';
 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';
@@ -18,11 +18,11 @@
 import type { EthAccount, EthCallRequest, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
 import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
 import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
-import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
+import type { MmrLeafProof } from '@polkadot/types/interfaces/mmr';
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
 import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
-import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
+import type { AccountId, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
 import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
 import type { ApplyExtrinsicResult, ChainProperties, ChainType, Health, NetworkState, NodeRole, PeerInfo, SyncState } from '@polkadot/types/interfaces/system';
 import type { IExtrinsic, Observable } from '@polkadot/types/types';
@@ -355,13 +355,9 @@
     };
     mmr: {
       /**
-       * Generate MMR proof for the given leaf indices.
-       **/
-      generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>;
-      /**
        * Generate MMR proof for given leaf index.
        **/
-      generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;
+      generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>;
     };
     net: {
       /**
@@ -396,60 +392,6 @@
        * Retrieves the fee information for an encoded extrinsic
        **/
       queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;
-    };
-    rmrk: {
-      /**
-       * Get tokens owned by an account in a collection
-       **/
-      accountTokens: AugmentedRpc<(accountId: AccountId32 | string | Uint8Array, collectionId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<u32>>>;
-      /**
-       * Get base info
-       **/
-      base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<UpDataStructsRmrkBaseInfo>>>;
-      /**
-       * Get all Base's parts
-       **/
-      baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkPartType>>>;
-      /**
-       * Get collection by id
-       **/
-      collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<UpDataStructsRmrkCollectionInfo>>>;
-      /**
-       * Get collection properties
-       **/
-      collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkPropertyInfo>>>;
-      /**
-       * Get the latest created collection id
-       **/
-      lastCollectionIdx: AugmentedRpc<(at?: Hash | string | Uint8Array) => Observable<u32>>;
-      /**
-       * Get NFT by collection id and NFT id
-       **/
-      nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<UpDataStructsRmrkNftInfo>>>;
-      /**
-       * Get NFT children
-       **/
-      nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkNftChild>>>;
-      /**
-       * Get NFT properties
-       **/
-      nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkPropertyInfo>>>;
-      /**
-       * Get NFT resource priorities
-       **/
-      nftResourcePriorities: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;
-      /**
-       * Get NFT resources
-       **/
-      nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkResourceInfo>>>;
-      /**
-       * Get Base's theme names
-       **/
-      themeNames: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;
-      /**
-       * 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<UpDataStructsRmrkTheme>>>;
     };
     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, Permill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/api-base/types/submittable' {
   export interface AugmentedSubmittables<ApiType extends ApiTypes> {
@@ -341,27 +341,6 @@
        * fees.
        **/
       teleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;
-      /**
-       * Generic tx
-       **/
-      [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
        **/
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, 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, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';5import type { Data, StorageKey } from '@polkadot/types';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';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 { MmrLeafBatchProof, 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    MmrLeafBatchProof: MmrLeafBatchProof;665    MmrLeafProof: MmrLeafProof;666    MmrRootHash: MmrRootHash;667    ModuleConstantMetadataV10: ModuleConstantMetadataV10;668    ModuleConstantMetadataV11: ModuleConstantMetadataV11;669    ModuleConstantMetadataV12: ModuleConstantMetadataV12;670    ModuleConstantMetadataV13: ModuleConstantMetadataV13;671    ModuleConstantMetadataV9: ModuleConstantMetadataV9;672    ModuleId: ModuleId;673    ModuleMetadataV10: ModuleMetadataV10;674    ModuleMetadataV11: ModuleMetadataV11;675    ModuleMetadataV12: ModuleMetadataV12;676    ModuleMetadataV13: ModuleMetadataV13;677    ModuleMetadataV9: ModuleMetadataV9;678    Moment: Moment;679    MomentOf: MomentOf;680    MoreAttestations: MoreAttestations;681    MortalEra: MortalEra;682    MultiAddress: MultiAddress;683    MultiAsset: MultiAsset;684    MultiAssetFilter: MultiAssetFilter;685    MultiAssetFilterV1: MultiAssetFilterV1;686    MultiAssetFilterV2: MultiAssetFilterV2;687    MultiAssets: MultiAssets;688    MultiAssetsV1: MultiAssetsV1;689    MultiAssetsV2: MultiAssetsV2;690    MultiAssetV0: MultiAssetV0;691    MultiAssetV1: MultiAssetV1;692    MultiAssetV2: MultiAssetV2;693    MultiDisputeStatementSet: MultiDisputeStatementSet;694    MultiLocation: MultiLocation;695    MultiLocationV0: MultiLocationV0;696    MultiLocationV1: MultiLocationV1;697    MultiLocationV2: MultiLocationV2;698    Multiplier: Multiplier;699    Multisig: Multisig;700    MultiSignature: MultiSignature;701    MultiSigner: MultiSigner;702    NetworkId: NetworkId;703    NetworkState: NetworkState;704    NetworkStatePeerset: NetworkStatePeerset;705    NetworkStatePeersetInfo: NetworkStatePeersetInfo;706    NewBidder: NewBidder;707    NextAuthority: NextAuthority;708    NextConfigDescriptor: NextConfigDescriptor;709    NextConfigDescriptorV1: NextConfigDescriptorV1;710    NodeRole: NodeRole;711    Nominations: Nominations;712    NominatorIndex: NominatorIndex;713    NominatorIndexCompact: NominatorIndexCompact;714    NotConnectedPeer: NotConnectedPeer;715    Null: Null;716    OffchainAccuracy: OffchainAccuracy;717    OffchainAccuracyCompact: OffchainAccuracyCompact;718    OffenceDetails: OffenceDetails;719    Offender: Offender;720    OpalRuntimeRuntime: OpalRuntimeRuntime;721    OpaqueCall: OpaqueCall;722    OpaqueMultiaddr: OpaqueMultiaddr;723    OpaqueNetworkState: OpaqueNetworkState;724    OpaquePeerId: OpaquePeerId;725    OpaqueTimeSlot: OpaqueTimeSlot;726    OpenTip: OpenTip;727    OpenTipFinderTo225: OpenTipFinderTo225;728    OpenTipTip: OpenTipTip;729    OpenTipTo225: OpenTipTo225;730    OperatingMode: OperatingMode;731    OptionBool: OptionBool;732    Origin: Origin;733    OriginCaller: OriginCaller;734    OriginKindV0: OriginKindV0;735    OriginKindV1: OriginKindV1;736    OriginKindV2: OriginKindV2;737    OrmlVestingModuleCall: OrmlVestingModuleCall;738    OrmlVestingModuleError: OrmlVestingModuleError;739    OrmlVestingModuleEvent: OrmlVestingModuleEvent;740    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;741    OutboundHrmpMessage: OutboundHrmpMessage;742    OutboundLaneData: OutboundLaneData;743    OutboundMessageFee: OutboundMessageFee;744    OutboundPayload: OutboundPayload;745    OutboundStatus: OutboundStatus;746    Outcome: Outcome;747    OverweightIndex: OverweightIndex;748    Owner: Owner;749    PageCounter: PageCounter;750    PageIndexData: PageIndexData;751    PalletBalancesAccountData: PalletBalancesAccountData;752    PalletBalancesBalanceLock: PalletBalancesBalanceLock;753    PalletBalancesCall: PalletBalancesCall;754    PalletBalancesError: PalletBalancesError;755    PalletBalancesEvent: PalletBalancesEvent;756    PalletBalancesReasons: PalletBalancesReasons;757    PalletBalancesReleases: PalletBalancesReleases;758    PalletBalancesReserveData: PalletBalancesReserveData;759    PalletCallMetadataLatest: PalletCallMetadataLatest;760    PalletCallMetadataV14: PalletCallMetadataV14;761    PalletCommonError: PalletCommonError;762    PalletCommonEvent: PalletCommonEvent;763    PalletConstantMetadataLatest: PalletConstantMetadataLatest;764    PalletConstantMetadataV14: PalletConstantMetadataV14;765    PalletErrorMetadataLatest: PalletErrorMetadataLatest;766    PalletErrorMetadataV14: PalletErrorMetadataV14;767    PalletEthereumCall: PalletEthereumCall;768    PalletEthereumError: PalletEthereumError;769    PalletEthereumEvent: PalletEthereumEvent;770    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;771    PalletEventMetadataLatest: PalletEventMetadataLatest;772    PalletEventMetadataV14: PalletEventMetadataV14;773    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;774    PalletEvmCall: PalletEvmCall;775    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;776    PalletEvmContractHelpersError: PalletEvmContractHelpersError;777    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;778    PalletEvmError: PalletEvmError;779    PalletEvmEvent: PalletEvmEvent;780    PalletEvmMigrationCall: PalletEvmMigrationCall;781    PalletEvmMigrationError: PalletEvmMigrationError;782    PalletFungibleError: PalletFungibleError;783    PalletId: PalletId;784    PalletInflationCall: PalletInflationCall;785    PalletMetadataLatest: PalletMetadataLatest;786    PalletMetadataV14: PalletMetadataV14;787    PalletNonfungibleError: PalletNonfungibleError;788    PalletNonfungibleItemData: PalletNonfungibleItemData;789    PalletRefungibleError: PalletRefungibleError;790    PalletRefungibleItemData: PalletRefungibleItemData;791    PalletRmrkCoreCall: PalletRmrkCoreCall;792    PalletRmrkCoreError: PalletRmrkCoreError;793    PalletRmrkCoreEvent: PalletRmrkCoreEvent;794    PalletRmrkEquipCall: PalletRmrkEquipCall;795    PalletRmrkEquipError: PalletRmrkEquipError;796    PalletRmrkEquipEvent: PalletRmrkEquipEvent;797    PalletsOrigin: PalletsOrigin;798    PalletStorageMetadataLatest: PalletStorageMetadataLatest;799    PalletStorageMetadataV14: PalletStorageMetadataV14;800    PalletStructureCall: PalletStructureCall;801    PalletStructureError: PalletStructureError;802    PalletStructureEvent: PalletStructureEvent;803    PalletSudoCall: PalletSudoCall;804    PalletSudoError: PalletSudoError;805    PalletSudoEvent: PalletSudoEvent;806    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;807    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;808    PalletTimestampCall: PalletTimestampCall;809    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;810    PalletTreasuryCall: PalletTreasuryCall;811    PalletTreasuryError: PalletTreasuryError;812    PalletTreasuryEvent: PalletTreasuryEvent;813    PalletTreasuryProposal: PalletTreasuryProposal;814    PalletUniqueCall: PalletUniqueCall;815    PalletUniqueError: PalletUniqueError;816    PalletUniqueRawEvent: PalletUniqueRawEvent;817    PalletVersion: PalletVersion;818    PalletXcmCall: PalletXcmCall;819    PalletXcmError: PalletXcmError;820    PalletXcmEvent: PalletXcmEvent;821    ParachainDispatchOrigin: ParachainDispatchOrigin;822    ParachainInherentData: ParachainInherentData;823    ParachainProposal: ParachainProposal;824    ParachainsInherentData: ParachainsInherentData;825    ParaGenesisArgs: ParaGenesisArgs;826    ParaId: ParaId;827    ParaInfo: ParaInfo;828    ParaLifecycle: ParaLifecycle;829    Parameter: Parameter;830    ParaPastCodeMeta: ParaPastCodeMeta;831    ParaScheduling: ParaScheduling;832    ParathreadClaim: ParathreadClaim;833    ParathreadClaimQueue: ParathreadClaimQueue;834    ParathreadEntry: ParathreadEntry;835    ParaValidatorIndex: ParaValidatorIndex;836    Pays: Pays;837    Peer: Peer;838    PeerEndpoint: PeerEndpoint;839    PeerEndpointAddr: PeerEndpointAddr;840    PeerInfo: PeerInfo;841    PeerPing: PeerPing;842    PendingChange: PendingChange;843    PendingPause: PendingPause;844    PendingResume: PendingResume;845    Perbill: Perbill;846    Percent: Percent;847    PerDispatchClassU32: PerDispatchClassU32;848    PerDispatchClassWeight: PerDispatchClassWeight;849    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;850    Period: Period;851    Permill: Permill;852    PermissionLatest: PermissionLatest;853    PermissionsV1: PermissionsV1;854    PermissionVersions: PermissionVersions;855    Perquintill: Perquintill;856    PersistedValidationData: PersistedValidationData;857    PerU16: PerU16;858    Phantom: Phantom;859    PhantomData: PhantomData;860    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;861    Phase: Phase;862    PhragmenScore: PhragmenScore;863    Points: Points;864    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;865    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;866    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;867    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;868    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;869    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;870    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;871    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;872    PortableType: PortableType;873    PortableTypeV14: PortableTypeV14;874    Precommits: Precommits;875    PrefabWasmModule: PrefabWasmModule;876    PrefixedStorageKey: PrefixedStorageKey;877    PreimageStatus: PreimageStatus;878    PreimageStatusAvailable: PreimageStatusAvailable;879    PreRuntime: PreRuntime;880    Prevotes: Prevotes;881    Priority: Priority;882    PriorLock: PriorLock;883    PropIndex: PropIndex;884    Proposal: Proposal;885    ProposalIndex: ProposalIndex;886    ProxyAnnouncement: ProxyAnnouncement;887    ProxyDefinition: ProxyDefinition;888    ProxyState: ProxyState;889    ProxyType: ProxyType;890    QueryId: QueryId;891    QueryStatus: QueryStatus;892    QueueConfigData: QueueConfigData;893    QueuedParathread: QueuedParathread;894    Randomness: Randomness;895    Raw: Raw;896    RawAuraPreDigest: RawAuraPreDigest;897    RawBabePreDigest: RawBabePreDigest;898    RawBabePreDigestCompat: RawBabePreDigestCompat;899    RawBabePreDigestPrimary: RawBabePreDigestPrimary;900    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;901    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;902    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;903    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;904    RawBabePreDigestTo159: RawBabePreDigestTo159;905    RawOrigin: RawOrigin;906    RawSolution: RawSolution;907    RawSolutionTo265: RawSolutionTo265;908    RawSolutionWith16: RawSolutionWith16;909    RawSolutionWith24: RawSolutionWith24;910    RawVRFOutput: RawVRFOutput;911    ReadProof: ReadProof;912    ReadySolution: ReadySolution;913    Reasons: Reasons;914    RecoveryConfig: RecoveryConfig;915    RefCount: RefCount;916    RefCountTo259: RefCountTo259;917    ReferendumIndex: ReferendumIndex;918    ReferendumInfo: ReferendumInfo;919    ReferendumInfoFinished: ReferendumInfoFinished;920    ReferendumInfoTo239: ReferendumInfoTo239;921    ReferendumStatus: ReferendumStatus;922    RegisteredParachainInfo: RegisteredParachainInfo;923    RegistrarIndex: RegistrarIndex;924    RegistrarInfo: RegistrarInfo;925    Registration: Registration;926    RegistrationJudgement: RegistrationJudgement;927    RegistrationTo198: RegistrationTo198;928    RelayBlockNumber: RelayBlockNumber;929    RelayChainBlockNumber: RelayChainBlockNumber;930    RelayChainHash: RelayChainHash;931    RelayerId: RelayerId;932    RelayHash: RelayHash;933    Releases: Releases;934    Remark: Remark;935    Renouncing: Renouncing;936    RentProjection: RentProjection;937    ReplacementTimes: ReplacementTimes;938    ReportedRoundStates: ReportedRoundStates;939    Reporter: Reporter;940    ReportIdOf: ReportIdOf;941    ReserveData: ReserveData;942    ReserveIdentifier: ReserveIdentifier;943    Response: Response;944    ResponseV0: ResponseV0;945    ResponseV1: ResponseV1;946    ResponseV2: ResponseV2;947    ResponseV2Error: ResponseV2Error;948    ResponseV2Result: ResponseV2Result;949    Retriable: Retriable;950    RewardDestination: RewardDestination;951    RewardPoint: RewardPoint;952    RoundSnapshot: RoundSnapshot;953    RoundState: RoundState;954    RpcMethods: RpcMethods;955    RuntimeDbWeight: RuntimeDbWeight;956    RuntimeDispatchInfo: RuntimeDispatchInfo;957    RuntimeVersion: RuntimeVersion;958    RuntimeVersionApi: RuntimeVersionApi;959    RuntimeVersionPartial: RuntimeVersionPartial;960    Schedule: Schedule;961    Scheduled: Scheduled;962    ScheduledTo254: ScheduledTo254;963    SchedulePeriod: SchedulePeriod;964    SchedulePriority: SchedulePriority;965    ScheduleTo212: ScheduleTo212;966    ScheduleTo258: ScheduleTo258;967    ScheduleTo264: ScheduleTo264;968    Scheduling: Scheduling;969    Seal: Seal;970    SealV0: SealV0;971    SeatHolder: SeatHolder;972    SeedOf: SeedOf;973    ServiceQuality: ServiceQuality;974    SessionIndex: SessionIndex;975    SessionInfo: SessionInfo;976    SessionInfoValidatorGroup: SessionInfoValidatorGroup;977    SessionKeys1: SessionKeys1;978    SessionKeys10: SessionKeys10;979    SessionKeys10B: SessionKeys10B;980    SessionKeys2: SessionKeys2;981    SessionKeys3: SessionKeys3;982    SessionKeys4: SessionKeys4;983    SessionKeys5: SessionKeys5;984    SessionKeys6: SessionKeys6;985    SessionKeys6B: SessionKeys6B;986    SessionKeys7: SessionKeys7;987    SessionKeys7B: SessionKeys7B;988    SessionKeys8: SessionKeys8;989    SessionKeys8B: SessionKeys8B;990    SessionKeys9: SessionKeys9;991    SessionKeys9B: SessionKeys9B;992    SetId: SetId;993    SetIndex: SetIndex;994    Si0Field: Si0Field;995    Si0LookupTypeId: Si0LookupTypeId;996    Si0Path: Si0Path;997    Si0Type: Si0Type;998    Si0TypeDef: Si0TypeDef;999    Si0TypeDefArray: Si0TypeDefArray;1000    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1001    Si0TypeDefCompact: Si0TypeDefCompact;1002    Si0TypeDefComposite: Si0TypeDefComposite;1003    Si0TypeDefPhantom: Si0TypeDefPhantom;1004    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1005    Si0TypeDefSequence: Si0TypeDefSequence;1006    Si0TypeDefTuple: Si0TypeDefTuple;1007    Si0TypeDefVariant: Si0TypeDefVariant;1008    Si0TypeParameter: Si0TypeParameter;1009    Si0Variant: Si0Variant;1010    Si1Field: Si1Field;1011    Si1LookupTypeId: Si1LookupTypeId;1012    Si1Path: Si1Path;1013    Si1Type: Si1Type;1014    Si1TypeDef: Si1TypeDef;1015    Si1TypeDefArray: Si1TypeDefArray;1016    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1017    Si1TypeDefCompact: Si1TypeDefCompact;1018    Si1TypeDefComposite: Si1TypeDefComposite;1019    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1020    Si1TypeDefSequence: Si1TypeDefSequence;1021    Si1TypeDefTuple: Si1TypeDefTuple;1022    Si1TypeDefVariant: Si1TypeDefVariant;1023    Si1TypeParameter: Si1TypeParameter;1024    Si1Variant: Si1Variant;1025    SiField: SiField;1026    Signature: Signature;1027    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1028    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1029    SignedBlock: SignedBlock;1030    SignedBlockWithJustification: SignedBlockWithJustification;1031    SignedBlockWithJustifications: SignedBlockWithJustifications;1032    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1033    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1034    SignedSubmission: SignedSubmission;1035    SignedSubmissionOf: SignedSubmissionOf;1036    SignedSubmissionTo276: SignedSubmissionTo276;1037    SignerPayload: SignerPayload;1038    SigningContext: SigningContext;1039    SiLookupTypeId: SiLookupTypeId;1040    SiPath: SiPath;1041    SiType: SiType;1042    SiTypeDef: SiTypeDef;1043    SiTypeDefArray: SiTypeDefArray;1044    SiTypeDefBitSequence: SiTypeDefBitSequence;1045    SiTypeDefCompact: SiTypeDefCompact;1046    SiTypeDefComposite: SiTypeDefComposite;1047    SiTypeDefPrimitive: SiTypeDefPrimitive;1048    SiTypeDefSequence: SiTypeDefSequence;1049    SiTypeDefTuple: SiTypeDefTuple;1050    SiTypeDefVariant: SiTypeDefVariant;1051    SiTypeParameter: SiTypeParameter;1052    SiVariant: SiVariant;1053    SlashingSpans: SlashingSpans;1054    SlashingSpansTo204: SlashingSpansTo204;1055    SlashJournalEntry: SlashJournalEntry;1056    Slot: Slot;1057    SlotNumber: SlotNumber;1058    SlotRange: SlotRange;1059    SlotRange10: SlotRange10;1060    SocietyJudgement: SocietyJudgement;1061    SocietyVote: SocietyVote;1062    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1063    SolutionSupport: SolutionSupport;1064    SolutionSupports: SolutionSupports;1065    SpanIndex: SpanIndex;1066    SpanRecord: SpanRecord;1067    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1068    SpCoreEd25519Signature: SpCoreEd25519Signature;1069    SpCoreSr25519Signature: SpCoreSr25519Signature;1070    SpecVersion: SpecVersion;1071    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1072    SpRuntimeDigest: SpRuntimeDigest;1073    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1074    SpRuntimeDispatchError: SpRuntimeDispatchError;1075    SpRuntimeModuleError: SpRuntimeModuleError;1076    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1077    SpRuntimeTokenError: SpRuntimeTokenError;1078    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1079    SpTrieStorageProof: SpTrieStorageProof;1080    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1081    Sr25519Signature: Sr25519Signature;1082    StakingLedger: StakingLedger;1083    StakingLedgerTo223: StakingLedgerTo223;1084    StakingLedgerTo240: StakingLedgerTo240;1085    Statement: Statement;1086    StatementKind: StatementKind;1087    StorageChangeSet: StorageChangeSet;1088    StorageData: StorageData;1089    StorageDeposit: StorageDeposit;1090    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1091    StorageEntryMetadataV10: StorageEntryMetadataV10;1092    StorageEntryMetadataV11: StorageEntryMetadataV11;1093    StorageEntryMetadataV12: StorageEntryMetadataV12;1094    StorageEntryMetadataV13: StorageEntryMetadataV13;1095    StorageEntryMetadataV14: StorageEntryMetadataV14;1096    StorageEntryMetadataV9: StorageEntryMetadataV9;1097    StorageEntryModifierLatest: StorageEntryModifierLatest;1098    StorageEntryModifierV10: StorageEntryModifierV10;1099    StorageEntryModifierV11: StorageEntryModifierV11;1100    StorageEntryModifierV12: StorageEntryModifierV12;1101    StorageEntryModifierV13: StorageEntryModifierV13;1102    StorageEntryModifierV14: StorageEntryModifierV14;1103    StorageEntryModifierV9: StorageEntryModifierV9;1104    StorageEntryTypeLatest: StorageEntryTypeLatest;1105    StorageEntryTypeV10: StorageEntryTypeV10;1106    StorageEntryTypeV11: StorageEntryTypeV11;1107    StorageEntryTypeV12: StorageEntryTypeV12;1108    StorageEntryTypeV13: StorageEntryTypeV13;1109    StorageEntryTypeV14: StorageEntryTypeV14;1110    StorageEntryTypeV9: StorageEntryTypeV9;1111    StorageHasher: StorageHasher;1112    StorageHasherV10: StorageHasherV10;1113    StorageHasherV11: StorageHasherV11;1114    StorageHasherV12: StorageHasherV12;1115    StorageHasherV13: StorageHasherV13;1116    StorageHasherV14: StorageHasherV14;1117    StorageHasherV9: StorageHasherV9;1118    StorageKey: StorageKey;1119    StorageKind: StorageKind;1120    StorageMetadataV10: StorageMetadataV10;1121    StorageMetadataV11: StorageMetadataV11;1122    StorageMetadataV12: StorageMetadataV12;1123    StorageMetadataV13: StorageMetadataV13;1124    StorageMetadataV9: StorageMetadataV9;1125    StorageProof: StorageProof;1126    StoredPendingChange: StoredPendingChange;1127    StoredState: StoredState;1128    StrikeCount: StrikeCount;1129    SubId: SubId;1130    SubmissionIndicesOf: SubmissionIndicesOf;1131    Supports: Supports;1132    SyncState: SyncState;1133    SystemInherentData: SystemInherentData;1134    SystemOrigin: SystemOrigin;1135    Tally: Tally;1136    TaskAddress: TaskAddress;1137    TAssetBalance: TAssetBalance;1138    TAssetDepositBalance: TAssetDepositBalance;1139    Text: Text;1140    Timepoint: Timepoint;1141    TokenError: TokenError;1142    TombstoneContractInfo: TombstoneContractInfo;1143    TraceBlockResponse: TraceBlockResponse;1144    TraceError: TraceError;1145    TransactionInfo: TransactionInfo;1146    TransactionPriority: TransactionPriority;1147    TransactionStorageProof: TransactionStorageProof;1148    TransactionV0: TransactionV0;1149    TransactionV1: TransactionV1;1150    TransactionV2: TransactionV2;1151    TransactionValidityError: TransactionValidityError;1152    TransientValidationData: TransientValidationData;1153    TreasuryProposal: TreasuryProposal;1154    TrieId: TrieId;1155    TrieIndex: TrieIndex;1156    Type: Type;1157    u128: u128;1158    U128: U128;1159    u16: u16;1160    U16: U16;1161    u256: u256;1162    U256: U256;1163    u32: u32;1164    U32: U32;1165    U32F32: U32F32;1166    u64: u64;1167    U64: U64;1168    u8: u8;1169    U8: U8;1170    UnappliedSlash: UnappliedSlash;1171    UnappliedSlashOther: UnappliedSlashOther;1172    UncleEntryItem: UncleEntryItem;1173    UnknownTransaction: UnknownTransaction;1174    UnlockChunk: UnlockChunk;1175    UnrewardedRelayer: UnrewardedRelayer;1176    UnrewardedRelayersState: UnrewardedRelayersState;1177    UpDataStructsAccessMode: UpDataStructsAccessMode;1178    UpDataStructsCollection: UpDataStructsCollection;1179    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1180    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1181    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1182    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1183    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1184    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1185    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1186    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1187    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1188    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1189    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1190    UpDataStructsCreateRefungibleExData: UpDataStructsCreateRefungibleExData;1191    UpDataStructsNestingRule: UpDataStructsNestingRule;1192    UpDataStructsProperties: UpDataStructsProperties;1193    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1194    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1195    UpDataStructsProperty: UpDataStructsProperty;1196    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1197    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1198    UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;1199    UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;1200    UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;1201    UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;1202    UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;1203    UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;1204    UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;1205    UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;1206    UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;1207    UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;1208    UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;1209    UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;1210    UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;1211    UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;1212    UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;1213    UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;1214    UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;1215    UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;1216    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1217    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1218    UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;1219    UpDataStructsTokenData: UpDataStructsTokenData;1220    UpgradeGoAhead: UpgradeGoAhead;1221    UpgradeRestriction: UpgradeRestriction;1222    UpwardMessage: UpwardMessage;1223    usize: usize;1224    USize: USize;1225    ValidationCode: ValidationCode;1226    ValidationCodeHash: ValidationCodeHash;1227    ValidationData: ValidationData;1228    ValidationDataType: ValidationDataType;1229    ValidationFunctionParams: ValidationFunctionParams;1230    ValidatorCount: ValidatorCount;1231    ValidatorId: ValidatorId;1232    ValidatorIdOf: ValidatorIdOf;1233    ValidatorIndex: ValidatorIndex;1234    ValidatorIndexCompact: ValidatorIndexCompact;1235    ValidatorPrefs: ValidatorPrefs;1236    ValidatorPrefsTo145: ValidatorPrefsTo145;1237    ValidatorPrefsTo196: ValidatorPrefsTo196;1238    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1239    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1240    ValidatorSetId: ValidatorSetId;1241    ValidatorSignature: ValidatorSignature;1242    ValidDisputeStatementKind: ValidDisputeStatementKind;1243    ValidityAttestation: ValidityAttestation;1244    VecInboundHrmpMessage: VecInboundHrmpMessage;1245    VersionedMultiAsset: VersionedMultiAsset;1246    VersionedMultiAssets: VersionedMultiAssets;1247    VersionedMultiLocation: VersionedMultiLocation;1248    VersionedResponse: VersionedResponse;1249    VersionedXcm: VersionedXcm;1250    VersionMigrationStage: VersionMigrationStage;1251    VestingInfo: VestingInfo;1252    VestingSchedule: VestingSchedule;1253    Vote: Vote;1254    VoteIndex: VoteIndex;1255    Voter: Voter;1256    VoterInfo: VoterInfo;1257    Votes: Votes;1258    VotesTo230: VotesTo230;1259    VoteThreshold: VoteThreshold;1260    VoteWeight: VoteWeight;1261    Voting: Voting;1262    VotingDelegating: VotingDelegating;1263    VotingDirect: VotingDirect;1264    VotingDirectVote: VotingDirectVote;1265    VouchingStatus: VouchingStatus;1266    VrfData: VrfData;1267    VrfOutput: VrfOutput;1268    VrfProof: VrfProof;1269    Weight: Weight;1270    WeightLimitV2: WeightLimitV2;1271    WeightMultiplier: WeightMultiplier;1272    WeightPerClass: WeightPerClass;1273    WeightToFeeCoefficient: WeightToFeeCoefficient;1274    WildFungibility: WildFungibility;1275    WildFungibilityV0: WildFungibilityV0;1276    WildFungibilityV1: WildFungibilityV1;1277    WildFungibilityV2: WildFungibilityV2;1278    WildMultiAsset: WildMultiAsset;1279    WildMultiAssetV1: WildMultiAssetV1;1280    WildMultiAssetV2: WildMultiAssetV2;1281    WinnersData: WinnersData;1282    WinnersData10: WinnersData10;1283    WinnersDataTuple: WinnersDataTuple;1284    WinnersDataTuple10: WinnersDataTuple10;1285    WinningData: WinningData;1286    WinningData10: WinningData10;1287    WinningDataEntry: WinningDataEntry;1288    WithdrawReasons: WithdrawReasons;1289    Xcm: Xcm;1290    XcmAssetId: XcmAssetId;1291    XcmDoubleEncoded: XcmDoubleEncoded;1292    XcmError: XcmError;1293    XcmErrorV0: XcmErrorV0;1294    XcmErrorV1: XcmErrorV1;1295    XcmErrorV2: XcmErrorV2;1296    XcmOrder: XcmOrder;1297    XcmOrderV0: XcmOrderV0;1298    XcmOrderV1: XcmOrderV1;1299    XcmOrderV2: XcmOrderV2;1300    XcmOrigin: XcmOrigin;1301    XcmOriginKind: XcmOriginKind;1302    XcmpMessageFormat: XcmpMessageFormat;1303    XcmV0: XcmV0;1304    XcmV0Junction: XcmV0Junction;1305    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1306    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1307    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1308    XcmV0MultiAsset: XcmV0MultiAsset;1309    XcmV0MultiLocation: XcmV0MultiLocation;1310    XcmV0Order: XcmV0Order;1311    XcmV0OriginKind: XcmV0OriginKind;1312    XcmV0Response: XcmV0Response;1313    XcmV0Xcm: XcmV0Xcm;1314    XcmV1: XcmV1;1315    XcmV1Junction: XcmV1Junction;1316    XcmV1MultiAsset: XcmV1MultiAsset;1317    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1318    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1319    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1320    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1321    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1322    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1323    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1324    XcmV1MultiLocation: XcmV1MultiLocation;1325    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1326    XcmV1Order: XcmV1Order;1327    XcmV1Response: XcmV1Response;1328    XcmV1Xcm: XcmV1Xcm;1329    XcmV2: XcmV2;1330    XcmV2Instruction: XcmV2Instruction;1331    XcmV2Response: XcmV2Response;1332    XcmV2TraitsError: XcmV2TraitsError;1333    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1334    XcmV2WeightLimit: XcmV2WeightLimit;1335    XcmV2Xcm: XcmV2Xcm;1336    XcmVersion: XcmVersion;1337    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1338    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1339    XcmVersionedXcm: XcmVersionedXcm;1340  } // InterfaceTypes1341} // 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, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';5import type { Data, StorageKey } from '@polkadot/types';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    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;853    Phase: Phase;854    PhragmenScore: PhragmenScore;855    Points: Points;856    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;857    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;858    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;859    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;860    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;861    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;862    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;863    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;864    PortableType: PortableType;865    PortableTypeV14: PortableTypeV14;866    Precommits: Precommits;867    PrefabWasmModule: PrefabWasmModule;868    PrefixedStorageKey: PrefixedStorageKey;869    PreimageStatus: PreimageStatus;870    PreimageStatusAvailable: PreimageStatusAvailable;871    PreRuntime: PreRuntime;872    Prevotes: Prevotes;873    Priority: Priority;874    PriorLock: PriorLock;875    PropIndex: PropIndex;876    Proposal: Proposal;877    ProposalIndex: ProposalIndex;878    ProxyAnnouncement: ProxyAnnouncement;879    ProxyDefinition: ProxyDefinition;880    ProxyState: ProxyState;881    ProxyType: ProxyType;882    QueryId: QueryId;883    QueryStatus: QueryStatus;884    QueueConfigData: QueueConfigData;885    QueuedParathread: QueuedParathread;886    Randomness: Randomness;887    Raw: Raw;888    RawAuraPreDigest: RawAuraPreDigest;889    RawBabePreDigest: RawBabePreDigest;890    RawBabePreDigestCompat: RawBabePreDigestCompat;891    RawBabePreDigestPrimary: RawBabePreDigestPrimary;892    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;893    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;894    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;895    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;896    RawBabePreDigestTo159: RawBabePreDigestTo159;897    RawOrigin: RawOrigin;898    RawSolution: RawSolution;899    RawSolutionTo265: RawSolutionTo265;900    RawSolutionWith16: RawSolutionWith16;901    RawSolutionWith24: RawSolutionWith24;902    RawVRFOutput: RawVRFOutput;903    ReadProof: ReadProof;904    ReadySolution: ReadySolution;905    Reasons: Reasons;906    RecoveryConfig: RecoveryConfig;907    RefCount: RefCount;908    RefCountTo259: RefCountTo259;909    ReferendumIndex: ReferendumIndex;910    ReferendumInfo: ReferendumInfo;911    ReferendumInfoFinished: ReferendumInfoFinished;912    ReferendumInfoTo239: ReferendumInfoTo239;913    ReferendumStatus: ReferendumStatus;914    RegisteredParachainInfo: RegisteredParachainInfo;915    RegistrarIndex: RegistrarIndex;916    RegistrarInfo: RegistrarInfo;917    Registration: Registration;918    RegistrationJudgement: RegistrationJudgement;919    RegistrationTo198: RegistrationTo198;920    RelayBlockNumber: RelayBlockNumber;921    RelayChainBlockNumber: RelayChainBlockNumber;922    RelayChainHash: RelayChainHash;923    RelayerId: RelayerId;924    RelayHash: RelayHash;925    Releases: Releases;926    Remark: Remark;927    Renouncing: Renouncing;928    RentProjection: RentProjection;929    ReplacementTimes: ReplacementTimes;930    ReportedRoundStates: ReportedRoundStates;931    Reporter: Reporter;932    ReportIdOf: ReportIdOf;933    ReserveData: ReserveData;934    ReserveIdentifier: ReserveIdentifier;935    Response: Response;936    ResponseV0: ResponseV0;937    ResponseV1: ResponseV1;938    ResponseV2: ResponseV2;939    ResponseV2Error: ResponseV2Error;940    ResponseV2Result: ResponseV2Result;941    Retriable: Retriable;942    RewardDestination: RewardDestination;943    RewardPoint: RewardPoint;944    RoundSnapshot: RoundSnapshot;945    RoundState: RoundState;946    RpcMethods: RpcMethods;947    RuntimeDbWeight: RuntimeDbWeight;948    RuntimeDispatchInfo: RuntimeDispatchInfo;949    RuntimeVersion: RuntimeVersion;950    RuntimeVersionApi: RuntimeVersionApi;951    RuntimeVersionPartial: RuntimeVersionPartial;952    Schedule: Schedule;953    Scheduled: Scheduled;954    ScheduledTo254: ScheduledTo254;955    SchedulePeriod: SchedulePeriod;956    SchedulePriority: SchedulePriority;957    ScheduleTo212: ScheduleTo212;958    ScheduleTo258: ScheduleTo258;959    ScheduleTo264: ScheduleTo264;960    Scheduling: Scheduling;961    Seal: Seal;962    SealV0: SealV0;963    SeatHolder: SeatHolder;964    SeedOf: SeedOf;965    ServiceQuality: ServiceQuality;966    SessionIndex: SessionIndex;967    SessionInfo: SessionInfo;968    SessionInfoValidatorGroup: SessionInfoValidatorGroup;969    SessionKeys1: SessionKeys1;970    SessionKeys10: SessionKeys10;971    SessionKeys10B: SessionKeys10B;972    SessionKeys2: SessionKeys2;973    SessionKeys3: SessionKeys3;974    SessionKeys4: SessionKeys4;975    SessionKeys5: SessionKeys5;976    SessionKeys6: SessionKeys6;977    SessionKeys6B: SessionKeys6B;978    SessionKeys7: SessionKeys7;979    SessionKeys7B: SessionKeys7B;980    SessionKeys8: SessionKeys8;981    SessionKeys8B: SessionKeys8B;982    SessionKeys9: SessionKeys9;983    SessionKeys9B: SessionKeys9B;984    SetId: SetId;985    SetIndex: SetIndex;986    Si0Field: Si0Field;987    Si0LookupTypeId: Si0LookupTypeId;988    Si0Path: Si0Path;989    Si0Type: Si0Type;990    Si0TypeDef: Si0TypeDef;991    Si0TypeDefArray: Si0TypeDefArray;992    Si0TypeDefBitSequence: Si0TypeDefBitSequence;993    Si0TypeDefCompact: Si0TypeDefCompact;994    Si0TypeDefComposite: Si0TypeDefComposite;995    Si0TypeDefPhantom: Si0TypeDefPhantom;996    Si0TypeDefPrimitive: Si0TypeDefPrimitive;997    Si0TypeDefSequence: Si0TypeDefSequence;998    Si0TypeDefTuple: Si0TypeDefTuple;999    Si0TypeDefVariant: Si0TypeDefVariant;1000    Si0TypeParameter: Si0TypeParameter;1001    Si0Variant: Si0Variant;1002    Si1Field: Si1Field;1003    Si1LookupTypeId: Si1LookupTypeId;1004    Si1Path: Si1Path;1005    Si1Type: Si1Type;1006    Si1TypeDef: Si1TypeDef;1007    Si1TypeDefArray: Si1TypeDefArray;1008    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1009    Si1TypeDefCompact: Si1TypeDefCompact;1010    Si1TypeDefComposite: Si1TypeDefComposite;1011    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1012    Si1TypeDefSequence: Si1TypeDefSequence;1013    Si1TypeDefTuple: Si1TypeDefTuple;1014    Si1TypeDefVariant: Si1TypeDefVariant;1015    Si1TypeParameter: Si1TypeParameter;1016    Si1Variant: Si1Variant;1017    SiField: SiField;1018    Signature: Signature;1019    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1020    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1021    SignedBlock: SignedBlock;1022    SignedBlockWithJustification: SignedBlockWithJustification;1023    SignedBlockWithJustifications: SignedBlockWithJustifications;1024    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1025    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1026    SignedSubmission: SignedSubmission;1027    SignedSubmissionOf: SignedSubmissionOf;1028    SignedSubmissionTo276: SignedSubmissionTo276;1029    SignerPayload: SignerPayload;1030    SigningContext: SigningContext;1031    SiLookupTypeId: SiLookupTypeId;1032    SiPath: SiPath;1033    SiType: SiType;1034    SiTypeDef: SiTypeDef;1035    SiTypeDefArray: SiTypeDefArray;1036    SiTypeDefBitSequence: SiTypeDefBitSequence;1037    SiTypeDefCompact: SiTypeDefCompact;1038    SiTypeDefComposite: SiTypeDefComposite;1039    SiTypeDefPrimitive: SiTypeDefPrimitive;1040    SiTypeDefSequence: SiTypeDefSequence;1041    SiTypeDefTuple: SiTypeDefTuple;1042    SiTypeDefVariant: SiTypeDefVariant;1043    SiTypeParameter: SiTypeParameter;1044    SiVariant: SiVariant;1045    SlashingSpans: SlashingSpans;1046    SlashingSpansTo204: SlashingSpansTo204;1047    SlashJournalEntry: SlashJournalEntry;1048    Slot: Slot;1049    SlotNumber: SlotNumber;1050    SlotRange: SlotRange;1051    SlotRange10: SlotRange10;1052    SocietyJudgement: SocietyJudgement;1053    SocietyVote: SocietyVote;1054    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1055    SolutionSupport: SolutionSupport;1056    SolutionSupports: SolutionSupports;1057    SpanIndex: SpanIndex;1058    SpanRecord: SpanRecord;1059    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1060    SpCoreEd25519Signature: SpCoreEd25519Signature;1061    SpCoreSr25519Signature: SpCoreSr25519Signature;1062    SpecVersion: SpecVersion;1063    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1064    SpRuntimeDigest: SpRuntimeDigest;1065    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1066    SpRuntimeDispatchError: SpRuntimeDispatchError;1067    SpRuntimeModuleError: SpRuntimeModuleError;1068    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1069    SpRuntimeTokenError: SpRuntimeTokenError;1070    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1071    SpTrieStorageProof: SpTrieStorageProof;1072    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1073    Sr25519Signature: Sr25519Signature;1074    StakingLedger: StakingLedger;1075    StakingLedgerTo223: StakingLedgerTo223;1076    StakingLedgerTo240: StakingLedgerTo240;1077    Statement: Statement;1078    StatementKind: StatementKind;1079    StorageChangeSet: StorageChangeSet;1080    StorageData: StorageData;1081    StorageDeposit: StorageDeposit;1082    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1083    StorageEntryMetadataV10: StorageEntryMetadataV10;1084    StorageEntryMetadataV11: StorageEntryMetadataV11;1085    StorageEntryMetadataV12: StorageEntryMetadataV12;1086    StorageEntryMetadataV13: StorageEntryMetadataV13;1087    StorageEntryMetadataV14: StorageEntryMetadataV14;1088    StorageEntryMetadataV9: StorageEntryMetadataV9;1089    StorageEntryModifierLatest: StorageEntryModifierLatest;1090    StorageEntryModifierV10: StorageEntryModifierV10;1091    StorageEntryModifierV11: StorageEntryModifierV11;1092    StorageEntryModifierV12: StorageEntryModifierV12;1093    StorageEntryModifierV13: StorageEntryModifierV13;1094    StorageEntryModifierV14: StorageEntryModifierV14;1095    StorageEntryModifierV9: StorageEntryModifierV9;1096    StorageEntryTypeLatest: StorageEntryTypeLatest;1097    StorageEntryTypeV10: StorageEntryTypeV10;1098    StorageEntryTypeV11: StorageEntryTypeV11;1099    StorageEntryTypeV12: StorageEntryTypeV12;1100    StorageEntryTypeV13: StorageEntryTypeV13;1101    StorageEntryTypeV14: StorageEntryTypeV14;1102    StorageEntryTypeV9: StorageEntryTypeV9;1103    StorageHasher: StorageHasher;1104    StorageHasherV10: StorageHasherV10;1105    StorageHasherV11: StorageHasherV11;1106    StorageHasherV12: StorageHasherV12;1107    StorageHasherV13: StorageHasherV13;1108    StorageHasherV14: StorageHasherV14;1109    StorageHasherV9: StorageHasherV9;1110    StorageKey: StorageKey;1111    StorageKind: StorageKind;1112    StorageMetadataV10: StorageMetadataV10;1113    StorageMetadataV11: StorageMetadataV11;1114    StorageMetadataV12: StorageMetadataV12;1115    StorageMetadataV13: StorageMetadataV13;1116    StorageMetadataV9: StorageMetadataV9;1117    StorageProof: StorageProof;1118    StoredPendingChange: StoredPendingChange;1119    StoredState: StoredState;1120    StrikeCount: StrikeCount;1121    SubId: SubId;1122    SubmissionIndicesOf: SubmissionIndicesOf;1123    Supports: Supports;1124    SyncState: SyncState;1125    SystemInherentData: SystemInherentData;1126    SystemOrigin: SystemOrigin;1127    Tally: Tally;1128    TaskAddress: TaskAddress;1129    TAssetBalance: TAssetBalance;1130    TAssetDepositBalance: TAssetDepositBalance;1131    Text: Text;1132    Timepoint: Timepoint;1133    TokenError: TokenError;1134    TombstoneContractInfo: TombstoneContractInfo;1135    TraceBlockResponse: TraceBlockResponse;1136    TraceError: TraceError;1137    TransactionInfo: TransactionInfo;1138    TransactionPriority: TransactionPriority;1139    TransactionStorageProof: TransactionStorageProof;1140    TransactionV0: TransactionV0;1141    TransactionV1: TransactionV1;1142    TransactionV2: TransactionV2;1143    TransactionValidityError: TransactionValidityError;1144    TransientValidationData: TransientValidationData;1145    TreasuryProposal: TreasuryProposal;1146    TrieId: TrieId;1147    TrieIndex: TrieIndex;1148    Type: Type;1149    u128: u128;1150    U128: U128;1151    u16: u16;1152    U16: U16;1153    u256: u256;1154    U256: U256;1155    u32: u32;1156    U32: U32;1157    U32F32: U32F32;1158    u64: u64;1159    U64: U64;1160    u8: u8;1161    U8: U8;1162    UnappliedSlash: UnappliedSlash;1163    UnappliedSlashOther: UnappliedSlashOther;1164    UncleEntryItem: UncleEntryItem;1165    UnknownTransaction: UnknownTransaction;1166    UnlockChunk: UnlockChunk;1167    UnrewardedRelayer: UnrewardedRelayer;1168    UnrewardedRelayersState: UnrewardedRelayersState;1169    UpDataStructsAccessMode: UpDataStructsAccessMode;1170    UpDataStructsCollection: UpDataStructsCollection;1171    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1172    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1173    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1174    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1175    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1176    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1177    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1178    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1179    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1180    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1181    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1182    UpDataStructsCreateRefungibleExData: UpDataStructsCreateRefungibleExData;1183    UpDataStructsNestingRule: UpDataStructsNestingRule;1184    UpDataStructsProperties: UpDataStructsProperties;1185    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1186    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1187    UpDataStructsProperty: UpDataStructsProperty;1188    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1189    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1190    UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;1191    UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;1192    UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;1193    UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;1194    UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;1195    UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;1196    UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;1197    UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;1198    UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;1199    UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;1200    UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;1201    UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;1202    UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;1203    UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;1204    UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;1205    UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;1206    UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;1207    UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;1208    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1209    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1210    UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;1211    UpDataStructsTokenData: UpDataStructsTokenData;1212    UpgradeGoAhead: UpgradeGoAhead;1213    UpgradeRestriction: UpgradeRestriction;1214    UpwardMessage: UpwardMessage;1215    usize: usize;1216    USize: USize;1217    ValidationCode: ValidationCode;1218    ValidationCodeHash: ValidationCodeHash;1219    ValidationData: ValidationData;1220    ValidationDataType: ValidationDataType;1221    ValidationFunctionParams: ValidationFunctionParams;1222    ValidatorCount: ValidatorCount;1223    ValidatorId: ValidatorId;1224    ValidatorIdOf: ValidatorIdOf;1225    ValidatorIndex: ValidatorIndex;1226    ValidatorIndexCompact: ValidatorIndexCompact;1227    ValidatorPrefs: ValidatorPrefs;1228    ValidatorPrefsTo145: ValidatorPrefsTo145;1229    ValidatorPrefsTo196: ValidatorPrefsTo196;1230    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1231    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1232    ValidatorSetId: ValidatorSetId;1233    ValidatorSignature: ValidatorSignature;1234    ValidDisputeStatementKind: ValidDisputeStatementKind;1235    ValidityAttestation: ValidityAttestation;1236    VecInboundHrmpMessage: VecInboundHrmpMessage;1237    VersionedMultiAsset: VersionedMultiAsset;1238    VersionedMultiAssets: VersionedMultiAssets;1239    VersionedMultiLocation: VersionedMultiLocation;1240    VersionedResponse: VersionedResponse;1241    VersionedXcm: VersionedXcm;1242    VersionMigrationStage: VersionMigrationStage;1243    VestingInfo: VestingInfo;1244    VestingSchedule: VestingSchedule;1245    Vote: Vote;1246    VoteIndex: VoteIndex;1247    Voter: Voter;1248    VoterInfo: VoterInfo;1249    Votes: Votes;1250    VotesTo230: VotesTo230;1251    VoteThreshold: VoteThreshold;1252    VoteWeight: VoteWeight;1253    Voting: Voting;1254    VotingDelegating: VotingDelegating;1255    VotingDirect: VotingDirect;1256    VotingDirectVote: VotingDirectVote;1257    VouchingStatus: VouchingStatus;1258    VrfData: VrfData;1259    VrfOutput: VrfOutput;1260    VrfProof: VrfProof;1261    Weight: Weight;1262    WeightLimitV2: WeightLimitV2;1263    WeightMultiplier: WeightMultiplier;1264    WeightPerClass: WeightPerClass;1265    WeightToFeeCoefficient: WeightToFeeCoefficient;1266    WildFungibility: WildFungibility;1267    WildFungibilityV0: WildFungibilityV0;1268    WildFungibilityV1: WildFungibilityV1;1269    WildFungibilityV2: WildFungibilityV2;1270    WildMultiAsset: WildMultiAsset;1271    WildMultiAssetV1: WildMultiAssetV1;1272    WildMultiAssetV2: WildMultiAssetV2;1273    WinnersData: WinnersData;1274    WinnersData10: WinnersData10;1275    WinnersDataTuple: WinnersDataTuple;1276    WinnersDataTuple10: WinnersDataTuple10;1277    WinningData: WinningData;1278    WinningData10: WinningData10;1279    WinningDataEntry: WinningDataEntry;1280    WithdrawReasons: WithdrawReasons;1281    Xcm: Xcm;1282    XcmAssetId: XcmAssetId;1283    XcmDoubleEncoded: XcmDoubleEncoded;1284    XcmError: XcmError;1285    XcmErrorV0: XcmErrorV0;1286    XcmErrorV1: XcmErrorV1;1287    XcmErrorV2: XcmErrorV2;1288    XcmOrder: XcmOrder;1289    XcmOrderV0: XcmOrderV0;1290    XcmOrderV1: XcmOrderV1;1291    XcmOrderV2: XcmOrderV2;1292    XcmOrigin: XcmOrigin;1293    XcmOriginKind: XcmOriginKind;1294    XcmpMessageFormat: XcmpMessageFormat;1295    XcmV0: XcmV0;1296    XcmV0Junction: XcmV0Junction;1297    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1298    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1299    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1300    XcmV0MultiAsset: XcmV0MultiAsset;1301    XcmV0MultiLocation: XcmV0MultiLocation;1302    XcmV0Order: XcmV0Order;1303    XcmV0OriginKind: XcmV0OriginKind;1304    XcmV0Response: XcmV0Response;1305    XcmV0Xcm: XcmV0Xcm;1306    XcmV1: XcmV1;1307    XcmV1Junction: XcmV1Junction;1308    XcmV1MultiAsset: XcmV1MultiAsset;1309    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1310    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1311    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1312    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1313    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1314    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1315    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1316    XcmV1MultiLocation: XcmV1MultiLocation;1317    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1318    XcmV1Order: XcmV1Order;1319    XcmV1Response: XcmV1Response;1320    XcmV1Xcm: XcmV1Xcm;1321    XcmV2: XcmV2;1322    XcmV2Instruction: XcmV2Instruction;1323    XcmV2Response: XcmV2Response;1324    XcmV2TraitsError: XcmV2TraitsError;1325    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1326    XcmV2WeightLimit: XcmV2WeightLimit;1327    XcmV2Xcm: XcmV2Xcm;1328    XcmVersion: XcmVersion;1329    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1330    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1331    XcmVersionedXcm: XcmVersionedXcm;1332  } // InterfaceTypes1333} // declare module
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, OptionBool, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
 import type { Event } from '@polkadot/types/interfaces/system';
@@ -866,6 +866,7 @@
   readonly isCollectionNotFound: boolean;
   readonly isMustBeTokenOwner: boolean;
   readonly isNoPermission: boolean;
+  readonly isCantDestroyNotEmptyCollection: boolean;
   readonly isPublicMintingNotAllowed: boolean;
   readonly isAddressNotInAllowlist: boolean;
   readonly isCollectionNameLimitExceeded: boolean;
@@ -895,7 +896,7 @@
   readonly isPropertyKeyIsTooLong: boolean;
   readonly isInvalidCharacterInPropertyKey: boolean;
   readonly isEmptyPropertyKey: boolean;
-  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';
+  readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';
 }
 
 /** @name PalletCommonEvent */
@@ -1105,7 +1106,8 @@
 export interface PalletNonfungibleError extends Enum {
   readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
   readonly isNonfungibleItemsHaveNoAmount: boolean;
-  readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
+  readonly isCantBurnNftWithChildren: boolean;
+  readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
 }
 
 /** @name PalletNonfungibleItemData */
@@ -1125,147 +1127,8 @@
 /** @name PalletRefungibleItemData */
 export interface PalletRefungibleItemData extends Struct {
   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 {}
 
@@ -1925,9 +1788,9 @@
   readonly tokenLimit: Option<u32>;
   readonly sponsorTransferTimeout: Option<u32>;
   readonly sponsorApproveTimeout: Option<u32>;
-  readonly ownerCanTransfer: OptionBool;
-  readonly ownerCanDestroy: OptionBool;
-  readonly transfersEnabled: OptionBool;
+  readonly ownerCanTransfer: Option<bool>;
+  readonly ownerCanDestroy: Option<bool>;
+  readonly transfersEnabled: Option<bool>;
 }
 
 /** @name UpDataStructsCollectionMode */
@@ -1942,7 +1805,7 @@
 /** @name UpDataStructsCollectionPermissions */
 export interface UpDataStructsCollectionPermissions extends Struct {
   readonly access: Option<UpDataStructsAccessMode>;
-  readonly mintMode: OptionBool;
+  readonly mintMode: Option<bool>;
   readonly nesting: Option<UpDataStructsNestingRule>;
 }
 
modifiedtests/src/interfaces/definitions.tsdiffbeforeafterboth
--- a/tests/src/interfaces/definitions.ts
+++ b/tests/src/interfaces/definitions.ts
@@ -15,5 +15,5 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 export {default as unique} from './unique/definitions';
-export {default as rmrk} from './rmrk/definitions';
+// TODO free RMRK! export {default as rmrk} from './rmrk/definitions';
 export {default as default} from './default/definitions';
\ No newline at end of file
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1403,9 +1403,9 @@
     tokenLimit: 'Option<u32>',
     sponsorTransferTimeout: 'Option<u32>',
     sponsorApproveTimeout: 'Option<u32>',
-    ownerCanTransfer: 'OptionBool',
-    ownerCanDestroy: 'OptionBool',
-    transfersEnabled: 'OptionBool'
+    ownerCanTransfer: 'Option<bool>',
+    ownerCanDestroy: 'Option<bool>',
+    transfersEnabled: 'Option<bool>'
   },
   /**
    * Lookup164: up_data_structs::SponsoringRateLimit
@@ -1421,7 +1421,7 @@
    **/
   UpDataStructsCollectionPermissions: {
     access: 'Option<UpDataStructsAccessMode>',
-    mintMode: 'OptionBool',
+    mintMode: 'Option<bool>',
     nesting: 'Option<UpDataStructsNestingRule>'
   },
   /**
@@ -1529,114 +1529,8 @@
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup206: 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'
-      }
-    }
-  },
-  /**
-   * Lookup212: pallet_rmrk_equip::pallet::Call<T>
-   **/
-  PalletRmrkEquipCall: {
-    _enum: {
-      create_base: {
-        baseType: 'Bytes',
-        symbol: 'Bytes',
-        parts: 'Vec<UpDataStructsRmrkPartType>',
-      },
-      theme_add: {
-        baseId: 'u32',
-        theme: 'UpDataStructsRmrkTheme'
-      }
-    }
-  },
-  /**
-   * Lookup214: 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'
-    }
-  },
-  /**
-   * Lookup216: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup206: pallet_evm::pallet::Call<T>
    **/
-  UpDataStructsRmrkFixedPart: {
-    id: 'u32',
-    z: 'u32',
-    src: 'Bytes'
-  },
-  /**
-   * Lookup217: 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'
-  },
-  /**
-   * Lookup218: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
-   **/
-  UpDataStructsRmrkEquippableList: {
-    _enum: {
-      All: 'Null',
-      Empty: 'Null',
-      Custom: 'Vec<u32>'
-    }
-  },
-  /**
-   * Lookup220: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
-   **/
-  UpDataStructsRmrkTheme: {
-    name: 'Bytes',
-    properties: 'Vec<UpDataStructsRmrkThemeProperty>',
-    inherit: 'bool'
-  },
-  /**
-   * Lookup222: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
-   **/
-  UpDataStructsRmrkThemeProperty: {
-    key: 'Bytes',
-    value: 'Bytes'
-  },
-  /**
-   * Lookup223: pallet_evm::pallet::Call<T>
-   **/
   PalletEvmCall: {
     _enum: {
       withdraw: {
@@ -1678,7 +1572,7 @@
     }
   },
   /**
-   * Lookup229: pallet_ethereum::pallet::Call<T>
+   * Lookup212: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -1688,7 +1582,7 @@
     }
   },
   /**
-   * Lookup230: ethereum::transaction::TransactionV2
+   * Lookup213: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -1698,7 +1592,7 @@
     }
   },
   /**
-   * Lookup231: ethereum::transaction::LegacyTransaction
+   * Lookup214: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -1710,7 +1604,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup232: ethereum::transaction::TransactionAction
+   * Lookup215: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -1719,7 +1613,7 @@
     }
   },
   /**
-   * Lookup233: ethereum::transaction::TransactionSignature
+   * Lookup216: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -1727,7 +1621,7 @@
     s: 'H256'
   },
   /**
-   * Lookup235: ethereum::transaction::EIP2930Transaction
+   * Lookup218: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -1743,14 +1637,14 @@
     s: 'H256'
   },
   /**
-   * Lookup237: ethereum::transaction::AccessListItem
+   * Lookup220: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup238: ethereum::transaction::EIP1559Transaction
+   * Lookup221: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -1767,7 +1661,7 @@
     s: 'H256'
   },
   /**
-   * Lookup239: pallet_evm_migration::pallet::Call<T>
+   * Lookup222: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -1785,7 +1679,7 @@
     }
   },
   /**
-   * Lookup242: pallet_sudo::pallet::Event<T>
+   * Lookup225: pallet_sudo::pallet::Event<T>
    **/
   PalletSudoEvent: {
     _enum: {
@@ -1801,7 +1695,7 @@
     }
   },
   /**
-   * Lookup244: sp_runtime::DispatchError
+   * Lookup227: sp_runtime::DispatchError
    **/
   SpRuntimeDispatchError: {
     _enum: {
@@ -1818,38 +1712,38 @@
     }
   },
   /**
-   * Lookup245: sp_runtime::ModuleError
+   * Lookup228: sp_runtime::ModuleError
    **/
   SpRuntimeModuleError: {
     index: 'u8',
     error: '[u8;4]'
   },
   /**
-   * Lookup246: sp_runtime::TokenError
+   * Lookup229: sp_runtime::TokenError
    **/
   SpRuntimeTokenError: {
     _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
   },
   /**
-   * Lookup247: sp_runtime::ArithmeticError
+   * Lookup230: sp_runtime::ArithmeticError
    **/
   SpRuntimeArithmeticError: {
     _enum: ['Underflow', 'Overflow', 'DivisionByZero']
   },
   /**
-   * Lookup248: sp_runtime::TransactionalError
+   * Lookup231: sp_runtime::TransactionalError
    **/
   SpRuntimeTransactionalError: {
     _enum: ['LimitReached', 'NoLayer']
   },
   /**
-   * Lookup249: pallet_sudo::pallet::Error<T>
+   * Lookup232: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup250: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+   * Lookup233: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
    **/
   FrameSystemAccountInfo: {
     nonce: 'u32',
@@ -1859,7 +1753,7 @@
     data: 'PalletBalancesAccountData'
   },
   /**
-   * Lookup251: frame_support::weights::PerDispatchClass<T>
+   * Lookup234: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU64: {
     normal: 'u64',
@@ -1867,13 +1761,13 @@
     mandatory: 'u64'
   },
   /**
-   * Lookup252: sp_runtime::generic::digest::Digest
+   * Lookup235: sp_runtime::generic::digest::Digest
    **/
   SpRuntimeDigest: {
     logs: 'Vec<SpRuntimeDigestDigestItem>'
   },
   /**
-   * Lookup254: sp_runtime::generic::digest::DigestItem
+   * Lookup237: sp_runtime::generic::digest::DigestItem
    **/
   SpRuntimeDigestDigestItem: {
     _enum: {
@@ -1889,7 +1783,7 @@
     }
   },
   /**
-   * Lookup256: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+   * Lookup239: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
    **/
   FrameSystemEventRecord: {
     phase: 'FrameSystemPhase',
@@ -1897,7 +1791,7 @@
     topics: 'Vec<H256>'
   },
   /**
-   * Lookup258: frame_system::pallet::Event<T>
+   * Lookup241: frame_system::pallet::Event<T>
    **/
   FrameSystemEvent: {
     _enum: {
@@ -1925,7 +1819,7 @@
     }
   },
   /**
-   * Lookup259: frame_support::weights::DispatchInfo
+   * Lookup242: frame_support::weights::DispatchInfo
    **/
   FrameSupportWeightsDispatchInfo: {
     weight: 'u64',
@@ -1933,19 +1827,19 @@
     paysFee: 'FrameSupportWeightsPays'
   },
   /**
-   * Lookup260: frame_support::weights::DispatchClass
+   * Lookup243: frame_support::weights::DispatchClass
    **/
   FrameSupportWeightsDispatchClass: {
     _enum: ['Normal', 'Operational', 'Mandatory']
   },
   /**
-   * Lookup261: frame_support::weights::Pays
+   * Lookup244: frame_support::weights::Pays
    **/
   FrameSupportWeightsPays: {
     _enum: ['Yes', 'No']
   },
   /**
-   * Lookup262: orml_vesting::module::Event<T>
+   * Lookup245: orml_vesting::module::Event<T>
    **/
   OrmlVestingModuleEvent: {
     _enum: {
@@ -1964,7 +1858,7 @@
     }
   },
   /**
-   * Lookup263: cumulus_pallet_xcmp_queue::pallet::Event<T>
+   * Lookup246: cumulus_pallet_xcmp_queue::pallet::Event<T>
    **/
   CumulusPalletXcmpQueueEvent: {
     _enum: {
@@ -1979,7 +1873,7 @@
     }
   },
   /**
-   * Lookup264: pallet_xcm::pallet::Event<T>
+   * Lookup247: pallet_xcm::pallet::Event<T>
    **/
   PalletXcmEvent: {
     _enum: {
@@ -2002,7 +1896,7 @@
     }
   },
   /**
-   * Lookup265: xcm::v2::traits::Outcome
+   * Lookup248: xcm::v2::traits::Outcome
    **/
   XcmV2TraitsOutcome: {
     _enum: {
@@ -2012,7 +1906,7 @@
     }
   },
   /**
-   * Lookup267: cumulus_pallet_xcm::pallet::Event<T>
+   * Lookup250: cumulus_pallet_xcm::pallet::Event<T>
    **/
   CumulusPalletXcmEvent: {
     _enum: {
@@ -2022,7 +1916,7 @@
     }
   },
   /**
-   * Lookup268: cumulus_pallet_dmp_queue::pallet::Event<T>
+   * Lookup251: cumulus_pallet_dmp_queue::pallet::Event<T>
    **/
   CumulusPalletDmpQueueEvent: {
     _enum: {
@@ -2035,7 +1929,7 @@
     }
   },
   /**
-   * Lookup269: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup252: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletUniqueRawEvent: {
     _enum: {
@@ -2052,7 +1946,7 @@
     }
   },
   /**
-   * Lookup270: pallet_common::pallet::Event<T>
+   * Lookup253: pallet_common::pallet::Event<T>
    **/
   PalletCommonEvent: {
     _enum: {
@@ -2070,65 +1964,15 @@
     }
   },
   /**
-   * Lookup271: pallet_structure::pallet::Event<T>
+   * Lookup254: pallet_structure::pallet::Event<T>
    **/
   PalletStructureEvent: {
     _enum: {
       Executed: 'Result<Null, SpRuntimeDispatchError>'
-    }
-  },
-  /**
-   * Lookup272: 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'
-      }
-    }
-  },
-  /**
-   * Lookup273: pallet_rmrk_equip::pallet::Event<T>
-   **/
-  PalletRmrkEquipEvent: {
-    _enum: {
-      BaseCreated: {
-        issuer: 'AccountId32',
-        baseId: 'u32'
-      }
     }
   },
   /**
-   * Lookup274: pallet_evm::pallet::Event<T>
+   * Lookup255: pallet_evm::pallet::Event<T>
    **/
   PalletEvmEvent: {
     _enum: {
@@ -2142,7 +1986,7 @@
     }
   },
   /**
-   * Lookup275: ethereum::log::Log
+   * Lookup256: ethereum::log::Log
    **/
   EthereumLog: {
     address: 'H160',
@@ -2150,7 +1994,7 @@
     data: 'Bytes'
   },
   /**
-   * Lookup276: pallet_ethereum::pallet::Event
+   * Lookup257: pallet_ethereum::pallet::Event
    **/
   PalletEthereumEvent: {
     _enum: {
@@ -2158,7 +2002,7 @@
     }
   },
   /**
-   * Lookup277: evm_core::error::ExitReason
+   * Lookup258: evm_core::error::ExitReason
    **/
   EvmCoreErrorExitReason: {
     _enum: {
@@ -2169,13 +2013,13 @@
     }
   },
   /**
-   * Lookup278: evm_core::error::ExitSucceed
+   * Lookup259: evm_core::error::ExitSucceed
    **/
   EvmCoreErrorExitSucceed: {
     _enum: ['Stopped', 'Returned', 'Suicided']
   },
   /**
-   * Lookup279: evm_core::error::ExitError
+   * Lookup260: evm_core::error::ExitError
    **/
   EvmCoreErrorExitError: {
     _enum: {
@@ -2197,13 +2041,13 @@
     }
   },
   /**
-   * Lookup282: evm_core::error::ExitRevert
+   * Lookup263: evm_core::error::ExitRevert
    **/
   EvmCoreErrorExitRevert: {
     _enum: ['Reverted']
   },
   /**
-   * Lookup283: evm_core::error::ExitFatal
+   * Lookup264: evm_core::error::ExitFatal
    **/
   EvmCoreErrorExitFatal: {
     _enum: {
@@ -2214,7 +2058,7 @@
     }
   },
   /**
-   * Lookup284: frame_system::Phase
+   * Lookup265: frame_system::Phase
    **/
   FrameSystemPhase: {
     _enum: {
@@ -2224,14 +2068,14 @@
     }
   },
   /**
-   * Lookup286: frame_system::LastRuntimeUpgradeInfo
+   * Lookup267: frame_system::LastRuntimeUpgradeInfo
    **/
   FrameSystemLastRuntimeUpgradeInfo: {
     specVersion: 'Compact<u32>',
     specName: 'Text'
   },
   /**
-   * Lookup287: frame_system::limits::BlockWeights
+   * Lookup268: frame_system::limits::BlockWeights
    **/
   FrameSystemLimitsBlockWeights: {
     baseBlock: 'u64',
@@ -2239,7 +2083,7 @@
     perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
   },
   /**
-   * Lookup288: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+   * Lookup269: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
    **/
   FrameSupportWeightsPerDispatchClassWeightsPerClass: {
     normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2247,7 +2091,7 @@
     mandatory: 'FrameSystemLimitsWeightsPerClass'
   },
   /**
-   * Lookup289: frame_system::limits::WeightsPerClass
+   * Lookup270: frame_system::limits::WeightsPerClass
    **/
   FrameSystemLimitsWeightsPerClass: {
     baseExtrinsic: 'u64',
@@ -2256,13 +2100,13 @@
     reserved: 'Option<u64>'
   },
   /**
-   * Lookup291: frame_system::limits::BlockLength
+   * Lookup272: frame_system::limits::BlockLength
    **/
   FrameSystemLimitsBlockLength: {
     max: 'FrameSupportWeightsPerDispatchClassU32'
   },
   /**
-   * Lookup292: frame_support::weights::PerDispatchClass<T>
+   * Lookup273: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU32: {
     normal: 'u32',
@@ -2270,14 +2114,14 @@
     mandatory: 'u32'
   },
   /**
-   * Lookup293: frame_support::weights::RuntimeDbWeight
+   * Lookup274: frame_support::weights::RuntimeDbWeight
    **/
   FrameSupportWeightsRuntimeDbWeight: {
     read: 'u64',
     write: 'u64'
   },
   /**
-   * Lookup294: sp_version::RuntimeVersion
+   * Lookup275: sp_version::RuntimeVersion
    **/
   SpVersionRuntimeVersion: {
     specName: 'Text',
@@ -2290,19 +2134,19 @@
     stateVersion: 'u8'
   },
   /**
-   * Lookup298: frame_system::pallet::Error<T>
+   * Lookup279: frame_system::pallet::Error<T>
    **/
   FrameSystemError: {
     _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
   },
   /**
-   * Lookup300: orml_vesting::module::Error<T>
+   * Lookup281: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup302: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup283: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -2310,19 +2154,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup303: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup284: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup306: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup287: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup309: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup290: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -2332,13 +2176,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup310: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup291: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup312: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup293: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -2349,29 +2193,29 @@
     xcmpMaxIndividualWeight: 'u64'
   },
   /**
-   * Lookup314: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup295: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup315: pallet_xcm::pallet::Error<T>
+   * Lookup296: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
   },
   /**
-   * Lookup316: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup297: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup317: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup298: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'u64'
   },
   /**
-   * Lookup318: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup299: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -2379,19 +2223,19 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup321: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup302: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup325: pallet_unique::Error<T>
+   * Lookup306: pallet_unique::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
   },
   /**
-   * Lookup326: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup307: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -2404,7 +2248,7 @@
     permissions: 'UpDataStructsCollectionPermissions'
   },
   /**
-   * Lookup327: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup308: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipState: {
     _enum: {
@@ -2414,7 +2258,7 @@
     }
   },
   /**
-   * Lookup328: up_data_structs::Properties
+   * Lookup309: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2422,15 +2266,15 @@
     spaceLimit: 'u32'
   },
   /**
-   * Lookup329: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup310: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup334: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup315: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup341: up_data_structs::CollectionStats
+   * Lookup322: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -2438,18 +2282,18 @@
     alive: 'u32'
   },
   /**
-   * Lookup342: PhantomType::up_data_structs<T>
+   * Lookup323: PhantomType::up_data_structs<T>
    **/
   PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpDataStructsRmrkCollectionInfo,UpDataStructsRmrkNftInfo,UpDataStructsRmrkResourceInfo,UpDataStructsRmrkPropertyInfo,UpDataStructsRmrkBaseInfo,UpDataStructsRmrkPartType,UpDataStructsRmrkTheme,UpDataStructsRmrkNftChild);0]',
   /**
-   * Lookup344: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup325: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     properties: 'Vec<UpDataStructsProperty>',
     owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
   },
   /**
-   * Lookup346: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup327: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -2464,7 +2308,7 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup347: 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>
+   * Lookup328: 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>
    **/
   UpDataStructsRmrkCollectionInfo: {
     issuer: 'AccountId32',
@@ -2474,7 +2318,7 @@
     nftsCount: 'u32'
   },
   /**
-   * Lookup348: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup331: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsRmrkNftInfo: {
     owner: 'UpDataStructsRmrkAccountIdOrCollectionNftTuple',
@@ -2484,7 +2328,7 @@
     pending: 'bool'
   },
   /**
-   * Lookup349: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+   * Lookup332: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRmrkAccountIdOrCollectionNftTuple: {
     _enum: {
@@ -2493,14 +2337,14 @@
     }
   },
   /**
-   * Lookup351: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+   * Lookup334: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
    **/
   UpDataStructsRmrkRoyaltyInfo: {
     recipient: 'AccountId32',
     amount: 'Permill'
   },
   /**
-   * Lookup352: 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>>
+   * Lookup335: 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>>
    **/
   UpDataStructsRmrkResourceInfo: {
     id: 'Bytes',
@@ -2509,7 +2353,7 @@
     pendingRemoval: 'bool'
   },
   /**
-   * Lookup355: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup338: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsRmrkResourceTypes: {
     _enum: {
@@ -2519,7 +2363,7 @@
     }
   },
   /**
-   * Lookup356: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup339: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsRmrkBasicResource: {
     src: 'Option<Bytes>',
@@ -2528,7 +2372,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup358: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup341: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsRmrkComposableResource: {
     parts: 'Vec<u32>',
@@ -2539,7 +2383,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup359: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup342: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsRmrkSlotResource: {
     base: 'u32',
@@ -2550,14 +2394,14 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup360: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup343: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsRmrkPropertyInfo: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup361: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup346: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsRmrkBaseInfo: {
     issuer: 'AccountId32',
@@ -2565,74 +2409,113 @@
     symbol: 'Bytes'
   },
   /**
-   * Lookup362: up_data_structs::rmrk::NftChild
+   * Lookup347: 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'
+    }
+  },
+  /**
+   * Lookup349: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsRmrkFixedPart: {
+    id: 'u32',
+    z: 'u32',
+    src: 'Bytes'
+  },
+  /**
+   * Lookup350: 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'
+  },
+  /**
+   * Lookup351: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsRmrkEquippableList: {
+    _enum: {
+      All: 'Null',
+      Empty: 'Null',
+      Custom: 'Vec<u32>'
+    }
+  },
+  /**
+   * Lookup352: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
    **/
+  UpDataStructsRmrkTheme: {
+    name: 'Bytes',
+    properties: 'Vec<UpDataStructsRmrkThemeProperty>',
+    inherit: 'bool'
+  },
+  /**
+   * Lookup354: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   **/
+  UpDataStructsRmrkThemeProperty: {
+    key: 'Bytes',
+    value: 'Bytes'
+  },
+  /**
+   * Lookup355: up_data_structs::rmrk::NftChild
+   **/
   UpDataStructsRmrkNftChild: {
     collectionId: 'u32',
     nftId: 'u32'
   },
   /**
-   * Lookup364: pallet_common::pallet::Error<T>
+   * Lookup357: 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']
+    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']
   },
   /**
-   * Lookup366: pallet_fungible::pallet::Error<T>
+   * Lookup359: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup367: pallet_refungible::ItemData
+   * Lookup360: pallet_refungible::ItemData
    **/
   PalletRefungibleItemData: {
     constData: 'Bytes'
   },
   /**
-   * Lookup371: pallet_refungible::pallet::Error<T>
+   * Lookup364: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup372: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup365: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup373: pallet_nonfungible::pallet::Error<T>
+   * Lookup367: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
-    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
+    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
   },
   /**
-   * Lookup374: pallet_structure::pallet::Error<T>
+   * Lookup368: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
   },
   /**
-   * Lookup375: pallet_rmrk_core::pallet::Error<T>
-   **/
-  PalletRmrkCoreError: {
-    _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'CollectionFullOrLocked']
-  },
-  /**
-   * Lookup377: pallet_rmrk_equip::pallet::Error<T>
-   **/
-  PalletRmrkEquipError: {
-    _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst']
-  },
-  /**
-   * Lookup380: pallet_evm::pallet::Error<T>
+   * Lookup371: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
   },
   /**
-   * Lookup383: fp_rpc::TransactionStatus
+   * Lookup374: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -2644,11 +2527,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup385: ethbloom::Bloom
+   * Lookup376: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup387: ethereum::receipt::ReceiptV3
+   * Lookup378: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -2658,7 +2541,7 @@
     }
   },
   /**
-   * Lookup388: ethereum::receipt::EIP658ReceiptData
+   * Lookup379: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -2667,7 +2550,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup389: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup380: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -2675,7 +2558,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup390: ethereum::header::Header
+   * Lookup381: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -2695,41 +2578,41 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup391: ethereum_types::hash::H64
+   * Lookup382: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup396: pallet_ethereum::pallet::Error<T>
+   * Lookup387: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup397: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup388: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup398: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup389: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup400: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup391: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission']
   },
   /**
-   * Lookup401: pallet_evm_migration::pallet::Error<T>
+   * Lookup392: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
   },
   /**
-   * Lookup403: sp_runtime::MultiSignature
+   * Lookup394: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -2739,43 +2622,43 @@
     }
   },
   /**
-   * Lookup404: sp_core::ed25519::Signature
+   * Lookup395: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup406: sp_core::sr25519::Signature
+   * Lookup397: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup407: sp_core::ecdsa::Signature
+   * Lookup398: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup410: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup401: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup411: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup402: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup414: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup405: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup415: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup406: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup416: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup407: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup417: opal_runtime::Runtime
+   * Lookup408: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup418: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup409: 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, 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, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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,12 +104,6 @@
     PalletNonfungibleItemData: PalletNonfungibleItemData;
     PalletRefungibleError: PalletRefungibleError;
     PalletRefungibleItemData: PalletRefungibleItemData;
-    PalletRmrkCoreCall: PalletRmrkCoreCall;
-    PalletRmrkCoreError: PalletRmrkCoreError;
-    PalletRmrkCoreEvent: PalletRmrkCoreEvent;
-    PalletRmrkEquipCall: PalletRmrkEquipCall;
-    PalletRmrkEquipError: PalletRmrkEquipError;
-    PalletRmrkEquipEvent: PalletRmrkEquipEvent;
     PalletStructureCall: PalletStructureCall;
     PalletStructureError: PalletStructureError;
     PalletStructureEvent: PalletStructureEvent;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -2,7 +2,7 @@
 /* eslint-disable */
 
 declare module '@polkadot/types/lookup' {
-  import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, OptionBool, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+  import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
   import type { ITuple } from '@polkadot/types-codec/types';
   import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
   import type { Event } from '@polkadot/types/interfaces/system';
@@ -1534,9 +1534,9 @@
     readonly tokenLimit: Option<u32>;
     readonly sponsorTransferTimeout: Option<u32>;
     readonly sponsorApproveTimeout: Option<u32>;
-    readonly ownerCanTransfer: OptionBool;
-    readonly ownerCanDestroy: OptionBool;
-    readonly transfersEnabled: OptionBool;
+    readonly ownerCanTransfer: Option<bool>;
+    readonly ownerCanDestroy: Option<bool>;
+    readonly transfersEnabled: Option<bool>;
   }
 
   /** @name UpDataStructsSponsoringRateLimit (164) */
@@ -1550,7 +1550,7 @@
   /** @name UpDataStructsCollectionPermissions (167) */
   export interface UpDataStructsCollectionPermissions extends Struct {
     readonly access: Option<UpDataStructsAccessMode>;
-    readonly mintMode: OptionBool;
+    readonly mintMode: Option<bool>;
     readonly nesting: Option<UpDataStructsNestingRule>;
   }
 
@@ -1650,113 +1650,7 @@
   /** @name PalletStructureCall (205) */
   export type PalletStructureCall = Null;
 
-  /** @name PalletRmrkCoreCall (206) */
-  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 (212) */
-  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 (214) */
-  export interface UpDataStructsRmrkPartType extends Enum {
-    readonly isFixedPart: boolean;
-    readonly asFixedPart: UpDataStructsRmrkFixedPart;
-    readonly isSlotPart: boolean;
-    readonly asSlotPart: UpDataStructsRmrkSlotPart;
-    readonly type: 'FixedPart' | 'SlotPart';
-  }
-
-  /** @name UpDataStructsRmrkFixedPart (216) */
-  export interface UpDataStructsRmrkFixedPart extends Struct {
-    readonly id: u32;
-    readonly z: u32;
-    readonly src: Bytes;
-  }
-
-  /** @name UpDataStructsRmrkSlotPart (217) */
-  export interface UpDataStructsRmrkSlotPart extends Struct {
-    readonly id: u32;
-    readonly equippable: UpDataStructsRmrkEquippableList;
-    readonly src: Bytes;
-    readonly z: u32;
-  }
-
-  /** @name UpDataStructsRmrkEquippableList (218) */
-  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 (220) */
-  export interface UpDataStructsRmrkTheme extends Struct {
-    readonly name: Bytes;
-    readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
-    readonly inherit: bool;
-  }
-
-  /** @name UpDataStructsRmrkThemeProperty (222) */
-  export interface UpDataStructsRmrkThemeProperty extends Struct {
-    readonly key: Bytes;
-    readonly value: Bytes;
-  }
-
-  /** @name PalletEvmCall (223) */
+  /** @name PalletEvmCall (206) */
   export interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -1801,7 +1695,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (229) */
+  /** @name PalletEthereumCall (212) */
   export interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -1810,7 +1704,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (230) */
+  /** @name EthereumTransactionTransactionV2 (213) */
   export interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -1821,7 +1715,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (231) */
+  /** @name EthereumTransactionLegacyTransaction (214) */
   export interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -1832,7 +1726,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (232) */
+  /** @name EthereumTransactionTransactionAction (215) */
   export interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -1840,14 +1734,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (233) */
+  /** @name EthereumTransactionTransactionSignature (216) */
   export interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (235) */
+  /** @name EthereumTransactionEip2930Transaction (218) */
   export interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -1862,13 +1756,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (237) */
+  /** @name EthereumTransactionAccessListItem (220) */
   export interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (238) */
+  /** @name EthereumTransactionEip1559Transaction (221) */
   export interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -1884,7 +1778,7 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmMigrationCall (239) */
+  /** @name PalletEvmMigrationCall (222) */
   export interface PalletEvmMigrationCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
@@ -1903,7 +1797,7 @@
     readonly type: 'Begin' | 'SetData' | 'Finish';
   }
 
-  /** @name PalletSudoEvent (242) */
+  /** @name PalletSudoEvent (225) */
   export interface PalletSudoEvent extends Enum {
     readonly isSudid: boolean;
     readonly asSudid: {
@@ -1920,7 +1814,7 @@
     readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
   }
 
-  /** @name SpRuntimeDispatchError (244) */
+  /** @name SpRuntimeDispatchError (227) */
   export interface SpRuntimeDispatchError extends Enum {
     readonly isOther: boolean;
     readonly isCannotLookup: boolean;
@@ -1939,13 +1833,13 @@
     readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
   }
 
-  /** @name SpRuntimeModuleError (245) */
+  /** @name SpRuntimeModuleError (228) */
   export interface SpRuntimeModuleError extends Struct {
     readonly index: u8;
     readonly error: U8aFixed;
   }
 
-  /** @name SpRuntimeTokenError (246) */
+  /** @name SpRuntimeTokenError (229) */
   export interface SpRuntimeTokenError extends Enum {
     readonly isNoFunds: boolean;
     readonly isWouldDie: boolean;
@@ -1957,7 +1851,7 @@
     readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
   }
 
-  /** @name SpRuntimeArithmeticError (247) */
+  /** @name SpRuntimeArithmeticError (230) */
   export interface SpRuntimeArithmeticError extends Enum {
     readonly isUnderflow: boolean;
     readonly isOverflow: boolean;
@@ -1965,20 +1859,20 @@
     readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
   }
 
-  /** @name SpRuntimeTransactionalError (248) */
+  /** @name SpRuntimeTransactionalError (231) */
   export interface SpRuntimeTransactionalError extends Enum {
     readonly isLimitReached: boolean;
     readonly isNoLayer: boolean;
     readonly type: 'LimitReached' | 'NoLayer';
   }
 
-  /** @name PalletSudoError (249) */
+  /** @name PalletSudoError (232) */
   export interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name FrameSystemAccountInfo (250) */
+  /** @name FrameSystemAccountInfo (233) */
   export interface FrameSystemAccountInfo extends Struct {
     readonly nonce: u32;
     readonly consumers: u32;
@@ -1987,19 +1881,19 @@
     readonly data: PalletBalancesAccountData;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassU64 (251) */
+  /** @name FrameSupportWeightsPerDispatchClassU64 (234) */
   export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
     readonly normal: u64;
     readonly operational: u64;
     readonly mandatory: u64;
   }
 
-  /** @name SpRuntimeDigest (252) */
+  /** @name SpRuntimeDigest (235) */
   export interface SpRuntimeDigest extends Struct {
     readonly logs: Vec<SpRuntimeDigestDigestItem>;
   }
 
-  /** @name SpRuntimeDigestDigestItem (254) */
+  /** @name SpRuntimeDigestDigestItem (237) */
   export interface SpRuntimeDigestDigestItem extends Enum {
     readonly isOther: boolean;
     readonly asOther: Bytes;
@@ -2013,14 +1907,14 @@
     readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
   }
 
-  /** @name FrameSystemEventRecord (256) */
+  /** @name FrameSystemEventRecord (239) */
   export interface FrameSystemEventRecord extends Struct {
     readonly phase: FrameSystemPhase;
     readonly event: Event;
     readonly topics: Vec<H256>;
   }
 
-  /** @name FrameSystemEvent (258) */
+  /** @name FrameSystemEvent (241) */
   export interface FrameSystemEvent extends Enum {
     readonly isExtrinsicSuccess: boolean;
     readonly asExtrinsicSuccess: {
@@ -2048,14 +1942,14 @@
     readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
   }
 
-  /** @name FrameSupportWeightsDispatchInfo (259) */
+  /** @name FrameSupportWeightsDispatchInfo (242) */
   export interface FrameSupportWeightsDispatchInfo extends Struct {
     readonly weight: u64;
     readonly class: FrameSupportWeightsDispatchClass;
     readonly paysFee: FrameSupportWeightsPays;
   }
 
-  /** @name FrameSupportWeightsDispatchClass (260) */
+  /** @name FrameSupportWeightsDispatchClass (243) */
   export interface FrameSupportWeightsDispatchClass extends Enum {
     readonly isNormal: boolean;
     readonly isOperational: boolean;
@@ -2063,14 +1957,14 @@
     readonly type: 'Normal' | 'Operational' | 'Mandatory';
   }
 
-  /** @name FrameSupportWeightsPays (261) */
+  /** @name FrameSupportWeightsPays (244) */
   export interface FrameSupportWeightsPays extends Enum {
     readonly isYes: boolean;
     readonly isNo: boolean;
     readonly type: 'Yes' | 'No';
   }
 
-  /** @name OrmlVestingModuleEvent (262) */
+  /** @name OrmlVestingModuleEvent (245) */
   export interface OrmlVestingModuleEvent extends Enum {
     readonly isVestingScheduleAdded: boolean;
     readonly asVestingScheduleAdded: {
@@ -2090,7 +1984,7 @@
     readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
   }
 
-  /** @name CumulusPalletXcmpQueueEvent (263) */
+  /** @name CumulusPalletXcmpQueueEvent (246) */
   export interface CumulusPalletXcmpQueueEvent extends Enum {
     readonly isSuccess: boolean;
     readonly asSuccess: Option<H256>;
@@ -2111,7 +2005,7 @@
     readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletXcmEvent (264) */
+  /** @name PalletXcmEvent (247) */
   export interface PalletXcmEvent extends Enum {
     readonly isAttempted: boolean;
     readonly asAttempted: XcmV2TraitsOutcome;
@@ -2148,7 +2042,7 @@
     readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
   }
 
-  /** @name XcmV2TraitsOutcome (265) */
+  /** @name XcmV2TraitsOutcome (248) */
   export interface XcmV2TraitsOutcome extends Enum {
     readonly isComplete: boolean;
     readonly asComplete: u64;
@@ -2159,7 +2053,7 @@
     readonly type: 'Complete' | 'Incomplete' | 'Error';
   }
 
-  /** @name CumulusPalletXcmEvent (267) */
+  /** @name CumulusPalletXcmEvent (250) */
   export interface CumulusPalletXcmEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
@@ -2170,7 +2064,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
   }
 
-  /** @name CumulusPalletDmpQueueEvent (268) */
+  /** @name CumulusPalletDmpQueueEvent (251) */
   export interface CumulusPalletDmpQueueEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
@@ -2187,7 +2081,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletUniqueRawEvent (269) */
+  /** @name PalletUniqueRawEvent (252) */
   export interface PalletUniqueRawEvent extends Enum {
     readonly isCollectionSponsorRemoved: boolean;
     readonly asCollectionSponsorRemoved: u32;
@@ -2212,7 +2106,7 @@
     readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
   }
 
-  /** @name PalletCommonEvent (270) */
+  /** @name PalletCommonEvent (253) */
   export interface PalletCommonEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -2239,68 +2133,14 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
   }
 
-  /** @name PalletStructureEvent (271) */
+  /** @name PalletStructureEvent (254) */
   export interface PalletStructureEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
     readonly type: 'Executed';
   }
 
-  /** @name PalletRmrkCoreEvent (272) */
-  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 (273) */
-  export interface PalletRmrkEquipEvent extends Enum {
-    readonly isBaseCreated: boolean;
-    readonly asBaseCreated: {
-      readonly issuer: AccountId32;
-      readonly baseId: u32;
-    } & Struct;
-    readonly type: 'BaseCreated';
-  }
-
-  /** @name PalletEvmEvent (274) */
+  /** @name PalletEvmEvent (255) */
   export interface PalletEvmEvent extends Enum {
     readonly isLog: boolean;
     readonly asLog: EthereumLog;
@@ -2319,21 +2159,21 @@
     readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
   }
 
-  /** @name EthereumLog (275) */
+  /** @name EthereumLog (256) */
   export interface EthereumLog extends Struct {
     readonly address: H160;
     readonly topics: Vec<H256>;
     readonly data: Bytes;
   }
 
-  /** @name PalletEthereumEvent (276) */
+  /** @name PalletEthereumEvent (257) */
   export interface PalletEthereumEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
     readonly type: 'Executed';
   }
 
-  /** @name EvmCoreErrorExitReason (277) */
+  /** @name EvmCoreErrorExitReason (258) */
   export interface EvmCoreErrorExitReason extends Enum {
     readonly isSucceed: boolean;
     readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -2346,7 +2186,7 @@
     readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
   }
 
-  /** @name EvmCoreErrorExitSucceed (278) */
+  /** @name EvmCoreErrorExitSucceed (259) */
   export interface EvmCoreErrorExitSucceed extends Enum {
     readonly isStopped: boolean;
     readonly isReturned: boolean;
@@ -2354,7 +2194,7 @@
     readonly type: 'Stopped' | 'Returned' | 'Suicided';
   }
 
-  /** @name EvmCoreErrorExitError (279) */
+  /** @name EvmCoreErrorExitError (260) */
   export interface EvmCoreErrorExitError extends Enum {
     readonly isStackUnderflow: boolean;
     readonly isStackOverflow: boolean;
@@ -2375,13 +2215,13 @@
     readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
   }
 
-  /** @name EvmCoreErrorExitRevert (282) */
+  /** @name EvmCoreErrorExitRevert (263) */
   export interface EvmCoreErrorExitRevert extends Enum {
     readonly isReverted: boolean;
     readonly type: 'Reverted';
   }
 
-  /** @name EvmCoreErrorExitFatal (283) */
+  /** @name EvmCoreErrorExitFatal (264) */
   export interface EvmCoreErrorExitFatal extends Enum {
     readonly isNotSupported: boolean;
     readonly isUnhandledInterrupt: boolean;
@@ -2392,7 +2232,7 @@
     readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
   }
 
-  /** @name FrameSystemPhase (284) */
+  /** @name FrameSystemPhase (265) */
   export interface FrameSystemPhase extends Enum {
     readonly isApplyExtrinsic: boolean;
     readonly asApplyExtrinsic: u32;
@@ -2401,27 +2241,27 @@
     readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
   }
 
-  /** @name FrameSystemLastRuntimeUpgradeInfo (286) */
+  /** @name FrameSystemLastRuntimeUpgradeInfo (267) */
   export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
     readonly specVersion: Compact<u32>;
     readonly specName: Text;
   }
 
-  /** @name FrameSystemLimitsBlockWeights (287) */
+  /** @name FrameSystemLimitsBlockWeights (268) */
   export interface FrameSystemLimitsBlockWeights extends Struct {
     readonly baseBlock: u64;
     readonly maxBlock: u64;
     readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (288) */
+  /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (269) */
   export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
     readonly normal: FrameSystemLimitsWeightsPerClass;
     readonly operational: FrameSystemLimitsWeightsPerClass;
     readonly mandatory: FrameSystemLimitsWeightsPerClass;
   }
 
-  /** @name FrameSystemLimitsWeightsPerClass (289) */
+  /** @name FrameSystemLimitsWeightsPerClass (270) */
   export interface FrameSystemLimitsWeightsPerClass extends Struct {
     readonly baseExtrinsic: u64;
     readonly maxExtrinsic: Option<u64>;
@@ -2429,25 +2269,25 @@
     readonly reserved: Option<u64>;
   }
 
-  /** @name FrameSystemLimitsBlockLength (291) */
+  /** @name FrameSystemLimitsBlockLength (272) */
   export interface FrameSystemLimitsBlockLength extends Struct {
     readonly max: FrameSupportWeightsPerDispatchClassU32;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassU32 (292) */
+  /** @name FrameSupportWeightsPerDispatchClassU32 (273) */
   export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
     readonly normal: u32;
     readonly operational: u32;
     readonly mandatory: u32;
   }
 
-  /** @name FrameSupportWeightsRuntimeDbWeight (293) */
+  /** @name FrameSupportWeightsRuntimeDbWeight (274) */
   export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
     readonly read: u64;
     readonly write: u64;
   }
 
-  /** @name SpVersionRuntimeVersion (294) */
+  /** @name SpVersionRuntimeVersion (275) */
   export interface SpVersionRuntimeVersion extends Struct {
     readonly specName: Text;
     readonly implName: Text;
@@ -2459,7 +2299,7 @@
     readonly stateVersion: u8;
   }
 
-  /** @name FrameSystemError (298) */
+  /** @name FrameSystemError (279) */
   export interface FrameSystemError extends Enum {
     readonly isInvalidSpecName: boolean;
     readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2470,7 +2310,7 @@
     readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
   }
 
-  /** @name OrmlVestingModuleError (300) */
+  /** @name OrmlVestingModuleError (281) */
   export interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -2481,21 +2321,21 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (302) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (283) */
   export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (303) */
+  /** @name CumulusPalletXcmpQueueInboundState (284) */
   export interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (306) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (287) */
   export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -2503,7 +2343,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (309) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (290) */
   export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2512,14 +2352,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (310) */
+  /** @name CumulusPalletXcmpQueueOutboundState (291) */
   export interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (312) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (293) */
   export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -2529,7 +2369,7 @@
     readonly xcmpMaxIndividualWeight: u64;
   }
 
-  /** @name CumulusPalletXcmpQueueError (314) */
+  /** @name CumulusPalletXcmpQueueError (295) */
   export interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -2539,7 +2379,7 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmError (315) */
+  /** @name PalletXcmError (296) */
   export interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -2557,29 +2397,29 @@
     readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
   }
 
-  /** @name CumulusPalletXcmError (316) */
+  /** @name CumulusPalletXcmError (297) */
   export type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (317) */
+  /** @name CumulusPalletDmpQueueConfigData (298) */
   export interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: u64;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (318) */
+  /** @name CumulusPalletDmpQueuePageIndexData (299) */
   export interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (321) */
+  /** @name CumulusPalletDmpQueueError (302) */
   export interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (325) */
+  /** @name PalletUniqueError (306) */
   export interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isConfirmUnsetSponsorFail: boolean;
@@ -2587,7 +2427,7 @@
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
   }
 
-  /** @name UpDataStructsCollection (326) */
+  /** @name UpDataStructsCollection (307) */
   export interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -2599,7 +2439,7 @@
     readonly permissions: UpDataStructsCollectionPermissions;
   }
 
-  /** @name UpDataStructsSponsorshipState (327) */
+  /** @name UpDataStructsSponsorshipState (308) */
   export interface UpDataStructsSponsorshipState extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -2609,36 +2449,36 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (328) */
+  /** @name UpDataStructsProperties (309) */
   export interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly spaceLimit: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (329) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (310) */
   export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (334) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (315) */
   export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionStats (341) */
+  /** @name UpDataStructsCollectionStats (322) */
   export interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name PhantomTypeUpDataStructs (342) */
+  /** @name PhantomTypeUpDataStructs (323) */
   export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsRmrkNftChild]>> {}
 
-  /** @name UpDataStructsTokenData (344) */
+  /** @name UpDataStructsTokenData (325) */
   export interface UpDataStructsTokenData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
   }
 
-  /** @name UpDataStructsRpcCollection (346) */
+  /** @name UpDataStructsRpcCollection (327) */
   export interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -2652,7 +2492,7 @@
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsRmrkCollectionInfo (347) */
+  /** @name UpDataStructsRmrkCollectionInfo (328) */
   export interface UpDataStructsRmrkCollectionInfo extends Struct {
     readonly issuer: AccountId32;
     readonly metadata: Bytes;
@@ -2661,7 +2501,7 @@
     readonly nftsCount: u32;
   }
 
-  /** @name UpDataStructsRmrkNftInfo (348) */
+  /** @name UpDataStructsRmrkNftInfo (331) */
   export interface UpDataStructsRmrkNftInfo extends Struct {
     readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
     readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
@@ -2670,7 +2510,7 @@
     readonly pending: bool;
   }
 
-  /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (349) */
+  /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (332) */
   export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
     readonly isAccountId: boolean;
     readonly asAccountId: AccountId32;
@@ -2679,13 +2519,13 @@
     readonly type: 'AccountId' | 'CollectionAndNftTuple';
   }
 
-  /** @name UpDataStructsRmrkRoyaltyInfo (351) */
+  /** @name UpDataStructsRmrkRoyaltyInfo (334) */
   export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
     readonly recipient: AccountId32;
     readonly amount: Permill;
   }
 
-  /** @name UpDataStructsRmrkResourceInfo (352) */
+  /** @name UpDataStructsRmrkResourceInfo (335) */
   export interface UpDataStructsRmrkResourceInfo extends Struct {
     readonly id: Bytes;
     readonly resource: UpDataStructsRmrkResourceTypes;
@@ -2693,7 +2533,7 @@
     readonly pendingRemoval: bool;
   }
 
-  /** @name UpDataStructsRmrkResourceTypes (355) */
+  /** @name UpDataStructsRmrkResourceTypes (338) */
   export interface UpDataStructsRmrkResourceTypes extends Enum {
     readonly isBasic: boolean;
     readonly asBasic: UpDataStructsRmrkBasicResource;
@@ -2704,7 +2544,7 @@
     readonly type: 'Basic' | 'Composable' | 'Slot';
   }
 
-  /** @name UpDataStructsRmrkBasicResource (356) */
+  /** @name UpDataStructsRmrkBasicResource (339) */
   export interface UpDataStructsRmrkBasicResource extends Struct {
     readonly src: Option<Bytes>;
     readonly metadata: Option<Bytes>;
@@ -2712,7 +2552,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name UpDataStructsRmrkComposableResource (358) */
+  /** @name UpDataStructsRmrkComposableResource (341) */
   export interface UpDataStructsRmrkComposableResource extends Struct {
     readonly parts: Vec<u32>;
     readonly base: u32;
@@ -2722,7 +2562,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name UpDataStructsRmrkSlotResource (359) */
+  /** @name UpDataStructsRmrkSlotResource (342) */
   export interface UpDataStructsRmrkSlotResource extends Struct {
     readonly base: u32;
     readonly src: Option<Bytes>;
@@ -2732,30 +2572,77 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name UpDataStructsRmrkPropertyInfo (360) */
+  /** @name UpDataStructsRmrkPropertyInfo (343) */
   export interface UpDataStructsRmrkPropertyInfo extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name UpDataStructsRmrkBaseInfo (361) */
+  /** @name UpDataStructsRmrkBaseInfo (346) */
   export interface UpDataStructsRmrkBaseInfo extends Struct {
     readonly issuer: AccountId32;
     readonly baseType: Bytes;
     readonly symbol: Bytes;
   }
 
-  /** @name UpDataStructsRmrkNftChild (362) */
+  /** @name UpDataStructsRmrkPartType (347) */
+  export interface UpDataStructsRmrkPartType extends Enum {
+    readonly isFixedPart: boolean;
+    readonly asFixedPart: UpDataStructsRmrkFixedPart;
+    readonly isSlotPart: boolean;
+    readonly asSlotPart: UpDataStructsRmrkSlotPart;
+    readonly type: 'FixedPart' | 'SlotPart';
+  }
+
+  /** @name UpDataStructsRmrkFixedPart (349) */
+  export interface UpDataStructsRmrkFixedPart extends Struct {
+    readonly id: u32;
+    readonly z: u32;
+    readonly src: Bytes;
+  }
+
+  /** @name UpDataStructsRmrkSlotPart (350) */
+  export interface UpDataStructsRmrkSlotPart extends Struct {
+    readonly id: u32;
+    readonly equippable: UpDataStructsRmrkEquippableList;
+    readonly src: Bytes;
+    readonly z: u32;
+  }
+
+  /** @name UpDataStructsRmrkEquippableList (351) */
+  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 (352) */
+  export interface UpDataStructsRmrkTheme extends Struct {
+    readonly name: Bytes;
+    readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
+    readonly inherit: bool;
+  }
+
+  /** @name UpDataStructsRmrkThemeProperty (354) */
+  export interface UpDataStructsRmrkThemeProperty extends Struct {
+    readonly key: Bytes;
+    readonly value: Bytes;
+  }
+
+  /** @name UpDataStructsRmrkNftChild (355) */
   export interface UpDataStructsRmrkNftChild extends Struct {
     readonly collectionId: u32;
     readonly nftId: u32;
   }
 
-  /** @name PalletCommonError (364) */
+  /** @name PalletCommonError (357) */
   export interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
     readonly isNoPermission: boolean;
+    readonly isCantDestroyNotEmptyCollection: boolean;
     readonly isPublicMintingNotAllowed: boolean;
     readonly isAddressNotInAllowlist: boolean;
     readonly isCollectionNameLimitExceeded: boolean;
@@ -2785,10 +2672,10 @@
     readonly isPropertyKeyIsTooLong: boolean;
     readonly isInvalidCharacterInPropertyKey: boolean;
     readonly isEmptyPropertyKey: boolean;
-    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';
+    readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';
   }
 
-  /** @name PalletFungibleError (366) */
+  /** @name PalletFungibleError (359) */
   export interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -2798,12 +2685,12 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletRefungibleItemData (367) */
+  /** @name PalletRefungibleItemData (360) */
   export interface PalletRefungibleItemData extends Struct {
     readonly constData: Bytes;
   }
 
-  /** @name PalletRefungibleError (371) */
+  /** @name PalletRefungibleError (364) */
   export interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -2812,19 +2699,20 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (372) */
+  /** @name PalletNonfungibleItemData (365) */
   export interface PalletNonfungibleItemData extends Struct {
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name PalletNonfungibleError (373) */
+  /** @name PalletNonfungibleError (367) */
   export interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
-    readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
+    readonly isCantBurnNftWithChildren: boolean;
+    readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
   }
 
-  /** @name PalletStructureError (374) */
+  /** @name PalletStructureError (368) */
   export interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -2832,32 +2720,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
   }
 
-  /** @name PalletRmrkCoreError (375) */
-  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 (377) */
-  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 (380) */
+  /** @name PalletEvmError (371) */
   export interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -2868,7 +2731,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
   }
 
-  /** @name FpRpcTransactionStatus (383) */
+  /** @name FpRpcTransactionStatus (374) */
   export interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -2879,10 +2742,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (385) */
+  /** @name EthbloomBloom (376) */
   export interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (387) */
+  /** @name EthereumReceiptReceiptV3 (378) */
   export interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -2893,7 +2756,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (388) */
+  /** @name EthereumReceiptEip658ReceiptData (379) */
   export interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -2901,14 +2764,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (389) */
+  /** @name EthereumBlock (380) */
   export interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (390) */
+  /** @name EthereumHeader (381) */
   export interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -2927,24 +2790,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (391) */
+  /** @name EthereumTypesHashH64 (382) */
   export interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (396) */
+  /** @name PalletEthereumError (387) */
   export interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (397) */
+  /** @name PalletEvmCoderSubstrateError (388) */
   export interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (398) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (389) */
   export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -2952,20 +2815,20 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (400) */
+  /** @name PalletEvmContractHelpersError (391) */
   export interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly type: 'NoPermission';
   }
 
-  /** @name PalletEvmMigrationError (401) */
+  /** @name PalletEvmMigrationError (392) */
   export interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
   }
 
-  /** @name SpRuntimeMultiSignature (403) */
+  /** @name SpRuntimeMultiSignature (394) */
   export interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -2976,34 +2839,34 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (404) */
+  /** @name SpCoreEd25519Signature (395) */
   export interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (406) */
+  /** @name SpCoreSr25519Signature (397) */
   export interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (407) */
+  /** @name SpCoreEcdsaSignature (398) */
   export interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (410) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (401) */
   export type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (411) */
+  /** @name FrameSystemExtensionsCheckGenesis (402) */
   export type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (414) */
+  /** @name FrameSystemExtensionsCheckNonce (405) */
   export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (415) */
+  /** @name FrameSystemExtensionsCheckWeight (406) */
   export type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (416) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (407) */
   export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (417) */
+  /** @name OpalRuntimeRuntime (408) */
   export type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (418) */
+  /** @name PalletEthereumFakeTransactionFinalizer (409) */
   export type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module
modifiedtests/src/interfaces/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types.ts
+++ b/tests/src/interfaces/types.ts
@@ -2,5 +2,4 @@
 /* eslint-disable */
 
 export * from './unique/types';
-export * from './rmrk/types';
 export * from './default/types';
modifiedtests/src/substrate/substrate-api.tsdiffbeforeafterboth
--- a/tests/src/substrate/substrate-api.ts
+++ b/tests/src/substrate/substrate-api.ts
@@ -41,7 +41,7 @@
     },
     rpc: {
       unique: defs.unique.rpc,
-      rmrk: defs.rmrk.rpc,
+      // TODO free RMRK! rmrk: defs.rmrk.rpc,
       eth: {
         feeHistory: {
           description: 'Dummy',