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
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,9 +1,9 @@
 // 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 './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, 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';
 import type { Data, StorageKey } from '@polkadot/types';
-import 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';
+import 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';
 import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
 import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';
 import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';
@@ -36,7 +36,7 @@
 import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
 import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
 import 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';
-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 { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
 import 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';
@@ -661,7 +661,6 @@
     MetadataV14: MetadataV14;
     MetadataV9: MetadataV9;
     MigrationStatusResult: MigrationStatusResult;
-    MmrLeafBatchProof: MmrLeafBatchProof;
     MmrLeafProof: MmrLeafProof;
     MmrRootHash: MmrRootHash;
     ModuleConstantMetadataV10: ModuleConstantMetadataV10;
@@ -728,7 +727,6 @@
     OpenTipTip: OpenTipTip;
     OpenTipTo225: OpenTipTo225;
     OperatingMode: OperatingMode;
-    OptionBool: OptionBool;
     Origin: Origin;
     OriginCaller: OriginCaller;
     OriginKindV0: OriginKindV0;
@@ -788,12 +786,6 @@
     PalletNonfungibleItemData: PalletNonfungibleItemData;
     PalletRefungibleError: PalletRefungibleError;
     PalletRefungibleItemData: PalletRefungibleItemData;
-    PalletRmrkCoreCall: PalletRmrkCoreCall;
-    PalletRmrkCoreError: PalletRmrkCoreError;
-    PalletRmrkCoreEvent: PalletRmrkCoreEvent;
-    PalletRmrkEquipCall: PalletRmrkEquipCall;
-    PalletRmrkEquipError: PalletRmrkEquipError;
-    PalletRmrkEquipEvent: PalletRmrkEquipEvent;
     PalletsOrigin: PalletsOrigin;
     PalletStorageMetadataLatest: PalletStorageMetadataLatest;
     PalletStorageMetadataV14: PalletStorageMetadataV14;
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
2/* eslint-disable */2/* eslint-disable */
33
4declare module '@polkadot/types/lookup' {4declare module '@polkadot/types/lookup' {
5 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';5 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';
6 import type { ITuple } from '@polkadot/types-codec/types';6 import type { ITuple } from '@polkadot/types-codec/types';
7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
8 import type { Event } from '@polkadot/types/interfaces/system';8 import type { Event } from '@polkadot/types/interfaces/system';
1534 readonly tokenLimit: Option<u32>;1534 readonly tokenLimit: Option<u32>;
1535 readonly sponsorTransferTimeout: Option<u32>;1535 readonly sponsorTransferTimeout: Option<u32>;
1536 readonly sponsorApproveTimeout: Option<u32>;1536 readonly sponsorApproveTimeout: Option<u32>;
1537 readonly ownerCanTransfer: OptionBool;1537 readonly ownerCanTransfer: Option<bool>;
1538 readonly ownerCanDestroy: OptionBool;1538 readonly ownerCanDestroy: Option<bool>;
1539 readonly transfersEnabled: OptionBool;1539 readonly transfersEnabled: Option<bool>;
1540 }1540 }
15411541
1542 /** @name UpDataStructsSponsoringRateLimit (164) */1542 /** @name UpDataStructsSponsoringRateLimit (164) */
1550 /** @name UpDataStructsCollectionPermissions (167) */1550 /** @name UpDataStructsCollectionPermissions (167) */
1551 export interface UpDataStructsCollectionPermissions extends Struct {1551 export interface UpDataStructsCollectionPermissions extends Struct {
1552 readonly access: Option<UpDataStructsAccessMode>;1552 readonly access: Option<UpDataStructsAccessMode>;
1553 readonly mintMode: OptionBool;1553 readonly mintMode: Option<bool>;
1554 readonly nesting: Option<UpDataStructsNestingRule>;1554 readonly nesting: Option<UpDataStructsNestingRule>;
1555 }1555 }
15561556
1650 /** @name PalletStructureCall (205) */1650 /** @name PalletStructureCall (205) */
1651 export type PalletStructureCall = Null;1651 export type PalletStructureCall = Null;
1652
1653 /** @name PalletRmrkCoreCall (206) */
1654 export interface PalletRmrkCoreCall extends Enum {
1655 readonly isCreateCollection: boolean;
1656 readonly asCreateCollection: {
1657 readonly metadata: Bytes;
1658 readonly max: Option<u32>;
1659 readonly symbol: Bytes;
1660 } & Struct;
1661 readonly isDestroyCollection: boolean;
1662 readonly asDestroyCollection: {
1663 readonly collectionId: u32;
1664 } & Struct;
1665 readonly isChangeCollectionIssuer: boolean;
1666 readonly asChangeCollectionIssuer: {
1667 readonly collectionId: u32;
1668 readonly newIssuer: MultiAddress;
1669 } & Struct;
1670 readonly isLockCollection: boolean;
1671 readonly asLockCollection: {
1672 readonly collectionId: u32;
1673 } & Struct;
1674 readonly isMintNft: boolean;
1675 readonly asMintNft: {
1676 readonly owner: AccountId32;
1677 readonly collectionId: u32;
1678 readonly recipient: Option<AccountId32>;
1679 readonly royaltyAmount: Option<Permill>;
1680 readonly metadata: Bytes;
1681 } & Struct;
1682 readonly isBurnNft: boolean;
1683 readonly asBurnNft: {
1684 readonly collectionId: u32;
1685 readonly nftId: u32;
1686 } & Struct;
1687 readonly isSetProperty: boolean;
1688 readonly asSetProperty: {
1689 readonly rmrkCollectionId: Compact<u32>;
1690 readonly maybeNftId: Option<u32>;
1691 readonly key: Bytes;
1692 readonly value: Bytes;
1693 } & Struct;
1694 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';
1695 }
1696
1697 /** @name PalletRmrkEquipCall (212) */
1698 export interface PalletRmrkEquipCall extends Enum {
1699 readonly isCreateBase: boolean;
1700 readonly asCreateBase: {
1701 readonly baseType: Bytes;
1702 readonly symbol: Bytes;
1703 readonly parts: Vec<UpDataStructsRmrkPartType>;
1704 } & Struct;
1705 readonly isThemeAdd: boolean;
1706 readonly asThemeAdd: {
1707 readonly baseId: u32;
1708 readonly theme: UpDataStructsRmrkTheme;
1709 } & Struct;
1710 readonly type: 'CreateBase' | 'ThemeAdd';
1711 }
1712
1713 /** @name UpDataStructsRmrkPartType (214) */
1714 export interface UpDataStructsRmrkPartType extends Enum {
1715 readonly isFixedPart: boolean;
1716 readonly asFixedPart: UpDataStructsRmrkFixedPart;
1717 readonly isSlotPart: boolean;
1718 readonly asSlotPart: UpDataStructsRmrkSlotPart;
1719 readonly type: 'FixedPart' | 'SlotPart';
1720 }
1721
1722 /** @name UpDataStructsRmrkFixedPart (216) */
1723 export interface UpDataStructsRmrkFixedPart extends Struct {
1724 readonly id: u32;
1725 readonly z: u32;
1726 readonly src: Bytes;
1727 }
1728
1729 /** @name UpDataStructsRmrkSlotPart (217) */
1730 export interface UpDataStructsRmrkSlotPart extends Struct {
1731 readonly id: u32;
1732 readonly equippable: UpDataStructsRmrkEquippableList;
1733 readonly src: Bytes;
1734 readonly z: u32;
1735 }
1736
1737 /** @name UpDataStructsRmrkEquippableList (218) */
1738 export interface UpDataStructsRmrkEquippableList extends Enum {
1739 readonly isAll: boolean;
1740 readonly isEmpty: boolean;
1741 readonly isCustom: boolean;
1742 readonly asCustom: Vec<u32>;
1743 readonly type: 'All' | 'Empty' | 'Custom';
1744 }
1745
1746 /** @name UpDataStructsRmrkTheme (220) */
1747 export interface UpDataStructsRmrkTheme extends Struct {
1748 readonly name: Bytes;
1749 readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
1750 readonly inherit: bool;
1751 }
1752
1753 /** @name UpDataStructsRmrkThemeProperty (222) */
1754 export interface UpDataStructsRmrkThemeProperty extends Struct {
1755 readonly key: Bytes;
1756 readonly value: Bytes;
1757 }
17581652
1759 /** @name PalletEvmCall (223) */1653 /** @name PalletEvmCall (206) */
1760 export interface PalletEvmCall extends Enum {1654 export interface PalletEvmCall extends Enum {
1761 readonly isWithdraw: boolean;1655 readonly isWithdraw: boolean;
1762 readonly asWithdraw: {1656 readonly asWithdraw: {
1801 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1695 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
1802 }1696 }
18031697
1804 /** @name PalletEthereumCall (229) */1698 /** @name PalletEthereumCall (212) */
1805 export interface PalletEthereumCall extends Enum {1699 export interface PalletEthereumCall extends Enum {
1806 readonly isTransact: boolean;1700 readonly isTransact: boolean;
1807 readonly asTransact: {1701 readonly asTransact: {
1810 readonly type: 'Transact';1704 readonly type: 'Transact';
1811 }1705 }
18121706
1813 /** @name EthereumTransactionTransactionV2 (230) */1707 /** @name EthereumTransactionTransactionV2 (213) */
1814 export interface EthereumTransactionTransactionV2 extends Enum {1708 export interface EthereumTransactionTransactionV2 extends Enum {
1815 readonly isLegacy: boolean;1709 readonly isLegacy: boolean;
1816 readonly asLegacy: EthereumTransactionLegacyTransaction;1710 readonly asLegacy: EthereumTransactionLegacyTransaction;
1821 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1715 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
1822 }1716 }
18231717
1824 /** @name EthereumTransactionLegacyTransaction (231) */1718 /** @name EthereumTransactionLegacyTransaction (214) */
1825 export interface EthereumTransactionLegacyTransaction extends Struct {1719 export interface EthereumTransactionLegacyTransaction extends Struct {
1826 readonly nonce: U256;1720 readonly nonce: U256;
1827 readonly gasPrice: U256;1721 readonly gasPrice: U256;
1832 readonly signature: EthereumTransactionTransactionSignature;1726 readonly signature: EthereumTransactionTransactionSignature;
1833 }1727 }
18341728
1835 /** @name EthereumTransactionTransactionAction (232) */1729 /** @name EthereumTransactionTransactionAction (215) */
1836 export interface EthereumTransactionTransactionAction extends Enum {1730 export interface EthereumTransactionTransactionAction extends Enum {
1837 readonly isCall: boolean;1731 readonly isCall: boolean;
1838 readonly asCall: H160;1732 readonly asCall: H160;
1839 readonly isCreate: boolean;1733 readonly isCreate: boolean;
1840 readonly type: 'Call' | 'Create';1734 readonly type: 'Call' | 'Create';
1841 }1735 }
18421736
1843 /** @name EthereumTransactionTransactionSignature (233) */1737 /** @name EthereumTransactionTransactionSignature (216) */
1844 export interface EthereumTransactionTransactionSignature extends Struct {1738 export interface EthereumTransactionTransactionSignature extends Struct {
1845 readonly v: u64;1739 readonly v: u64;
1846 readonly r: H256;1740 readonly r: H256;
1847 readonly s: H256;1741 readonly s: H256;
1848 }1742 }
18491743
1850 /** @name EthereumTransactionEip2930Transaction (235) */1744 /** @name EthereumTransactionEip2930Transaction (218) */
1851 export interface EthereumTransactionEip2930Transaction extends Struct {1745 export interface EthereumTransactionEip2930Transaction extends Struct {
1852 readonly chainId: u64;1746 readonly chainId: u64;
1853 readonly nonce: U256;1747 readonly nonce: U256;
1862 readonly s: H256;1756 readonly s: H256;
1863 }1757 }
18641758
1865 /** @name EthereumTransactionAccessListItem (237) */1759 /** @name EthereumTransactionAccessListItem (220) */
1866 export interface EthereumTransactionAccessListItem extends Struct {1760 export interface EthereumTransactionAccessListItem extends Struct {
1867 readonly address: H160;1761 readonly address: H160;
1868 readonly storageKeys: Vec<H256>;1762 readonly storageKeys: Vec<H256>;
1869 }1763 }
18701764
1871 /** @name EthereumTransactionEip1559Transaction (238) */1765 /** @name EthereumTransactionEip1559Transaction (221) */
1872 export interface EthereumTransactionEip1559Transaction extends Struct {1766 export interface EthereumTransactionEip1559Transaction extends Struct {
1873 readonly chainId: u64;1767 readonly chainId: u64;
1874 readonly nonce: U256;1768 readonly nonce: U256;
1884 readonly s: H256;1778 readonly s: H256;
1885 }1779 }
18861780
1887 /** @name PalletEvmMigrationCall (239) */1781 /** @name PalletEvmMigrationCall (222) */
1888 export interface PalletEvmMigrationCall extends Enum {1782 export interface PalletEvmMigrationCall extends Enum {
1889 readonly isBegin: boolean;1783 readonly isBegin: boolean;
1890 readonly asBegin: {1784 readonly asBegin: {
1903 readonly type: 'Begin' | 'SetData' | 'Finish';1797 readonly type: 'Begin' | 'SetData' | 'Finish';
1904 }1798 }
19051799
1906 /** @name PalletSudoEvent (242) */1800 /** @name PalletSudoEvent (225) */
1907 export interface PalletSudoEvent extends Enum {1801 export interface PalletSudoEvent extends Enum {
1908 readonly isSudid: boolean;1802 readonly isSudid: boolean;
1909 readonly asSudid: {1803 readonly asSudid: {
1920 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1814 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
1921 }1815 }
19221816
1923 /** @name SpRuntimeDispatchError (244) */1817 /** @name SpRuntimeDispatchError (227) */
1924 export interface SpRuntimeDispatchError extends Enum {1818 export interface SpRuntimeDispatchError extends Enum {
1925 readonly isOther: boolean;1819 readonly isOther: boolean;
1926 readonly isCannotLookup: boolean;1820 readonly isCannotLookup: boolean;
1939 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1833 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
1940 }1834 }
19411835
1942 /** @name SpRuntimeModuleError (245) */1836 /** @name SpRuntimeModuleError (228) */
1943 export interface SpRuntimeModuleError extends Struct {1837 export interface SpRuntimeModuleError extends Struct {
1944 readonly index: u8;1838 readonly index: u8;
1945 readonly error: U8aFixed;1839 readonly error: U8aFixed;
1946 }1840 }
19471841
1948 /** @name SpRuntimeTokenError (246) */1842 /** @name SpRuntimeTokenError (229) */
1949 export interface SpRuntimeTokenError extends Enum {1843 export interface SpRuntimeTokenError extends Enum {
1950 readonly isNoFunds: boolean;1844 readonly isNoFunds: boolean;
1951 readonly isWouldDie: boolean;1845 readonly isWouldDie: boolean;
1957 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1851 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
1958 }1852 }
19591853
1960 /** @name SpRuntimeArithmeticError (247) */1854 /** @name SpRuntimeArithmeticError (230) */
1961 export interface SpRuntimeArithmeticError extends Enum {1855 export interface SpRuntimeArithmeticError extends Enum {
1962 readonly isUnderflow: boolean;1856 readonly isUnderflow: boolean;
1963 readonly isOverflow: boolean;1857 readonly isOverflow: boolean;
1964 readonly isDivisionByZero: boolean;1858 readonly isDivisionByZero: boolean;
1965 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1859 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
1966 }1860 }
19671861
1968 /** @name SpRuntimeTransactionalError (248) */1862 /** @name SpRuntimeTransactionalError (231) */
1969 export interface SpRuntimeTransactionalError extends Enum {1863 export interface SpRuntimeTransactionalError extends Enum {
1970 readonly isLimitReached: boolean;1864 readonly isLimitReached: boolean;
1971 readonly isNoLayer: boolean;1865 readonly isNoLayer: boolean;
1972 readonly type: 'LimitReached' | 'NoLayer';1866 readonly type: 'LimitReached' | 'NoLayer';
1973 }1867 }
19741868
1975 /** @name PalletSudoError (249) */1869 /** @name PalletSudoError (232) */
1976 export interface PalletSudoError extends Enum {1870 export interface PalletSudoError extends Enum {
1977 readonly isRequireSudo: boolean;1871 readonly isRequireSudo: boolean;
1978 readonly type: 'RequireSudo';1872 readonly type: 'RequireSudo';
1979 }1873 }
19801874
1981 /** @name FrameSystemAccountInfo (250) */1875 /** @name FrameSystemAccountInfo (233) */
1982 export interface FrameSystemAccountInfo extends Struct {1876 export interface FrameSystemAccountInfo extends Struct {
1983 readonly nonce: u32;1877 readonly nonce: u32;
1984 readonly consumers: u32;1878 readonly consumers: u32;
1987 readonly data: PalletBalancesAccountData;1881 readonly data: PalletBalancesAccountData;
1988 }1882 }
19891883
1990 /** @name FrameSupportWeightsPerDispatchClassU64 (251) */1884 /** @name FrameSupportWeightsPerDispatchClassU64 (234) */
1991 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1885 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
1992 readonly normal: u64;1886 readonly normal: u64;
1993 readonly operational: u64;1887 readonly operational: u64;
1994 readonly mandatory: u64;1888 readonly mandatory: u64;
1995 }1889 }
19961890
1997 /** @name SpRuntimeDigest (252) */1891 /** @name SpRuntimeDigest (235) */
1998 export interface SpRuntimeDigest extends Struct {1892 export interface SpRuntimeDigest extends Struct {
1999 readonly logs: Vec<SpRuntimeDigestDigestItem>;1893 readonly logs: Vec<SpRuntimeDigestDigestItem>;
2000 }1894 }
20011895
2002 /** @name SpRuntimeDigestDigestItem (254) */1896 /** @name SpRuntimeDigestDigestItem (237) */
2003 export interface SpRuntimeDigestDigestItem extends Enum {1897 export interface SpRuntimeDigestDigestItem extends Enum {
2004 readonly isOther: boolean;1898 readonly isOther: boolean;
2005 readonly asOther: Bytes;1899 readonly asOther: Bytes;
2013 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1907 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
2014 }1908 }
20151909
2016 /** @name FrameSystemEventRecord (256) */1910 /** @name FrameSystemEventRecord (239) */
2017 export interface FrameSystemEventRecord extends Struct {1911 export interface FrameSystemEventRecord extends Struct {
2018 readonly phase: FrameSystemPhase;1912 readonly phase: FrameSystemPhase;
2019 readonly event: Event;1913 readonly event: Event;
2020 readonly topics: Vec<H256>;1914 readonly topics: Vec<H256>;
2021 }1915 }
20221916
2023 /** @name FrameSystemEvent (258) */1917 /** @name FrameSystemEvent (241) */
2024 export interface FrameSystemEvent extends Enum {1918 export interface FrameSystemEvent extends Enum {
2025 readonly isExtrinsicSuccess: boolean;1919 readonly isExtrinsicSuccess: boolean;
2026 readonly asExtrinsicSuccess: {1920 readonly asExtrinsicSuccess: {
2048 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1942 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
2049 }1943 }
20501944
2051 /** @name FrameSupportWeightsDispatchInfo (259) */1945 /** @name FrameSupportWeightsDispatchInfo (242) */
2052 export interface FrameSupportWeightsDispatchInfo extends Struct {1946 export interface FrameSupportWeightsDispatchInfo extends Struct {
2053 readonly weight: u64;1947 readonly weight: u64;
2054 readonly class: FrameSupportWeightsDispatchClass;1948 readonly class: FrameSupportWeightsDispatchClass;
2055 readonly paysFee: FrameSupportWeightsPays;1949 readonly paysFee: FrameSupportWeightsPays;
2056 }1950 }
20571951
2058 /** @name FrameSupportWeightsDispatchClass (260) */1952 /** @name FrameSupportWeightsDispatchClass (243) */
2059 export interface FrameSupportWeightsDispatchClass extends Enum {1953 export interface FrameSupportWeightsDispatchClass extends Enum {
2060 readonly isNormal: boolean;1954 readonly isNormal: boolean;
2061 readonly isOperational: boolean;1955 readonly isOperational: boolean;
2062 readonly isMandatory: boolean;1956 readonly isMandatory: boolean;
2063 readonly type: 'Normal' | 'Operational' | 'Mandatory';1957 readonly type: 'Normal' | 'Operational' | 'Mandatory';
2064 }1958 }
20651959
2066 /** @name FrameSupportWeightsPays (261) */1960 /** @name FrameSupportWeightsPays (244) */
2067 export interface FrameSupportWeightsPays extends Enum {1961 export interface FrameSupportWeightsPays extends Enum {
2068 readonly isYes: boolean;1962 readonly isYes: boolean;
2069 readonly isNo: boolean;1963 readonly isNo: boolean;
2070 readonly type: 'Yes' | 'No';1964 readonly type: 'Yes' | 'No';
2071 }1965 }
20721966
2073 /** @name OrmlVestingModuleEvent (262) */1967 /** @name OrmlVestingModuleEvent (245) */
2074 export interface OrmlVestingModuleEvent extends Enum {1968 export interface OrmlVestingModuleEvent extends Enum {
2075 readonly isVestingScheduleAdded: boolean;1969 readonly isVestingScheduleAdded: boolean;
2076 readonly asVestingScheduleAdded: {1970 readonly asVestingScheduleAdded: {
2090 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';1984 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
2091 }1985 }
20921986
2093 /** @name CumulusPalletXcmpQueueEvent (263) */1987 /** @name CumulusPalletXcmpQueueEvent (246) */
2094 export interface CumulusPalletXcmpQueueEvent extends Enum {1988 export interface CumulusPalletXcmpQueueEvent extends Enum {
2095 readonly isSuccess: boolean;1989 readonly isSuccess: boolean;
2096 readonly asSuccess: Option<H256>;1990 readonly asSuccess: Option<H256>;
2111 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2005 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
2112 }2006 }
21132007
2114 /** @name PalletXcmEvent (264) */2008 /** @name PalletXcmEvent (247) */
2115 export interface PalletXcmEvent extends Enum {2009 export interface PalletXcmEvent extends Enum {
2116 readonly isAttempted: boolean;2010 readonly isAttempted: boolean;
2117 readonly asAttempted: XcmV2TraitsOutcome;2011 readonly asAttempted: XcmV2TraitsOutcome;
2148 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2042 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
2149 }2043 }
21502044
2151 /** @name XcmV2TraitsOutcome (265) */2045 /** @name XcmV2TraitsOutcome (248) */
2152 export interface XcmV2TraitsOutcome extends Enum {2046 export interface XcmV2TraitsOutcome extends Enum {
2153 readonly isComplete: boolean;2047 readonly isComplete: boolean;
2154 readonly asComplete: u64;2048 readonly asComplete: u64;
2159 readonly type: 'Complete' | 'Incomplete' | 'Error';2053 readonly type: 'Complete' | 'Incomplete' | 'Error';
2160 }2054 }
21612055
2162 /** @name CumulusPalletXcmEvent (267) */2056 /** @name CumulusPalletXcmEvent (250) */
2163 export interface CumulusPalletXcmEvent extends Enum {2057 export interface CumulusPalletXcmEvent extends Enum {
2164 readonly isInvalidFormat: boolean;2058 readonly isInvalidFormat: boolean;
2165 readonly asInvalidFormat: U8aFixed;2059 readonly asInvalidFormat: U8aFixed;
2170 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2064 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
2171 }2065 }
21722066
2173 /** @name CumulusPalletDmpQueueEvent (268) */2067 /** @name CumulusPalletDmpQueueEvent (251) */
2174 export interface CumulusPalletDmpQueueEvent extends Enum {2068 export interface CumulusPalletDmpQueueEvent extends Enum {
2175 readonly isInvalidFormat: boolean;2069 readonly isInvalidFormat: boolean;
2176 readonly asInvalidFormat: U8aFixed;2070 readonly asInvalidFormat: U8aFixed;
2187 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2081 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
2188 }2082 }
21892083
2190 /** @name PalletUniqueRawEvent (269) */2084 /** @name PalletUniqueRawEvent (252) */
2191 export interface PalletUniqueRawEvent extends Enum {2085 export interface PalletUniqueRawEvent extends Enum {
2192 readonly isCollectionSponsorRemoved: boolean;2086 readonly isCollectionSponsorRemoved: boolean;
2193 readonly asCollectionSponsorRemoved: u32;2087 readonly asCollectionSponsorRemoved: u32;
2212 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2106 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
2213 }2107 }
22142108
2215 /** @name PalletCommonEvent (270) */2109 /** @name PalletCommonEvent (253) */
2216 export interface PalletCommonEvent extends Enum {2110 export interface PalletCommonEvent extends Enum {
2217 readonly isCollectionCreated: boolean;2111 readonly isCollectionCreated: boolean;
2218 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2112 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
2239 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2133 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
2240 }2134 }
22412135
2242 /** @name PalletStructureEvent (271) */2136 /** @name PalletStructureEvent (254) */
2243 export interface PalletStructureEvent extends Enum {2137 export interface PalletStructureEvent extends Enum {
2244 readonly isExecuted: boolean;2138 readonly isExecuted: boolean;
2245 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2139 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
2246 readonly type: 'Executed';2140 readonly type: 'Executed';
2247 }2141 }
2248
2249 /** @name PalletRmrkCoreEvent (272) */
2250 export interface PalletRmrkCoreEvent extends Enum {
2251 readonly isCollectionCreated: boolean;
2252 readonly asCollectionCreated: {
2253 readonly issuer: AccountId32;
2254 readonly collectionId: u32;
2255 } & Struct;
2256 readonly isCollectionDestroyed: boolean;
2257 readonly asCollectionDestroyed: {
2258 readonly issuer: AccountId32;
2259 readonly collectionId: u32;
2260 } & Struct;
2261 readonly isIssuerChanged: boolean;
2262 readonly asIssuerChanged: {
2263 readonly oldIssuer: AccountId32;
2264 readonly newIssuer: AccountId32;
2265 readonly collectionId: u32;
2266 } & Struct;
2267 readonly isCollectionLocked: boolean;
2268 readonly asCollectionLocked: {
2269 readonly issuer: AccountId32;
2270 readonly collectionId: u32;
2271 } & Struct;
2272 readonly isNftMinted: boolean;
2273 readonly asNftMinted: {
2274 readonly owner: AccountId32;
2275 readonly collectionId: u32;
2276 readonly nftId: u32;
2277 } & Struct;
2278 readonly isNftBurned: boolean;
2279 readonly asNftBurned: {
2280 readonly owner: AccountId32;
2281 readonly nftId: u32;
2282 } & Struct;
2283 readonly isPropertySet: boolean;
2284 readonly asPropertySet: {
2285 readonly collectionId: u32;
2286 readonly maybeNftId: Option<u32>;
2287 readonly key: Bytes;
2288 readonly value: Bytes;
2289 } & Struct;
2290 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';
2291 }
2292
2293 /** @name PalletRmrkEquipEvent (273) */
2294 export interface PalletRmrkEquipEvent extends Enum {
2295 readonly isBaseCreated: boolean;
2296 readonly asBaseCreated: {
2297 readonly issuer: AccountId32;
2298 readonly baseId: u32;
2299 } & Struct;
2300 readonly type: 'BaseCreated';
2301 }
23022142
2303 /** @name PalletEvmEvent (274) */2143 /** @name PalletEvmEvent (255) */
2304 export interface PalletEvmEvent extends Enum {2144 export interface PalletEvmEvent extends Enum {
2305 readonly isLog: boolean;2145 readonly isLog: boolean;
2306 readonly asLog: EthereumLog;2146 readonly asLog: EthereumLog;
2319 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2159 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
2320 }2160 }
23212161
2322 /** @name EthereumLog (275) */2162 /** @name EthereumLog (256) */
2323 export interface EthereumLog extends Struct {2163 export interface EthereumLog extends Struct {
2324 readonly address: H160;2164 readonly address: H160;
2325 readonly topics: Vec<H256>;2165 readonly topics: Vec<H256>;
2326 readonly data: Bytes;2166 readonly data: Bytes;
2327 }2167 }
23282168
2329 /** @name PalletEthereumEvent (276) */2169 /** @name PalletEthereumEvent (257) */
2330 export interface PalletEthereumEvent extends Enum {2170 export interface PalletEthereumEvent extends Enum {
2331 readonly isExecuted: boolean;2171 readonly isExecuted: boolean;
2332 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2172 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
2333 readonly type: 'Executed';2173 readonly type: 'Executed';
2334 }2174 }
23352175
2336 /** @name EvmCoreErrorExitReason (277) */2176 /** @name EvmCoreErrorExitReason (258) */
2337 export interface EvmCoreErrorExitReason extends Enum {2177 export interface EvmCoreErrorExitReason extends Enum {
2338 readonly isSucceed: boolean;2178 readonly isSucceed: boolean;
2339 readonly asSucceed: EvmCoreErrorExitSucceed;2179 readonly asSucceed: EvmCoreErrorExitSucceed;
2346 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2186 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
2347 }2187 }
23482188
2349 /** @name EvmCoreErrorExitSucceed (278) */2189 /** @name EvmCoreErrorExitSucceed (259) */
2350 export interface EvmCoreErrorExitSucceed extends Enum {2190 export interface EvmCoreErrorExitSucceed extends Enum {
2351 readonly isStopped: boolean;2191 readonly isStopped: boolean;
2352 readonly isReturned: boolean;2192 readonly isReturned: boolean;
2353 readonly isSuicided: boolean;2193 readonly isSuicided: boolean;
2354 readonly type: 'Stopped' | 'Returned' | 'Suicided';2194 readonly type: 'Stopped' | 'Returned' | 'Suicided';
2355 }2195 }
23562196
2357 /** @name EvmCoreErrorExitError (279) */2197 /** @name EvmCoreErrorExitError (260) */
2358 export interface EvmCoreErrorExitError extends Enum {2198 export interface EvmCoreErrorExitError extends Enum {
2359 readonly isStackUnderflow: boolean;2199 readonly isStackUnderflow: boolean;
2360 readonly isStackOverflow: boolean;2200 readonly isStackOverflow: boolean;
2375 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2215 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
2376 }2216 }
23772217
2378 /** @name EvmCoreErrorExitRevert (282) */2218 /** @name EvmCoreErrorExitRevert (263) */
2379 export interface EvmCoreErrorExitRevert extends Enum {2219 export interface EvmCoreErrorExitRevert extends Enum {
2380 readonly isReverted: boolean;2220 readonly isReverted: boolean;
2381 readonly type: 'Reverted';2221 readonly type: 'Reverted';
2382 }2222 }
23832223
2384 /** @name EvmCoreErrorExitFatal (283) */2224 /** @name EvmCoreErrorExitFatal (264) */
2385 export interface EvmCoreErrorExitFatal extends Enum {2225 export interface EvmCoreErrorExitFatal extends Enum {
2386 readonly isNotSupported: boolean;2226 readonly isNotSupported: boolean;
2387 readonly isUnhandledInterrupt: boolean;2227 readonly isUnhandledInterrupt: boolean;
2392 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2232 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
2393 }2233 }
23942234
2395 /** @name FrameSystemPhase (284) */2235 /** @name FrameSystemPhase (265) */
2396 export interface FrameSystemPhase extends Enum {2236 export interface FrameSystemPhase extends Enum {
2397 readonly isApplyExtrinsic: boolean;2237 readonly isApplyExtrinsic: boolean;
2398 readonly asApplyExtrinsic: u32;2238 readonly asApplyExtrinsic: u32;
2401 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2241 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
2402 }2242 }
24032243
2404 /** @name FrameSystemLastRuntimeUpgradeInfo (286) */2244 /** @name FrameSystemLastRuntimeUpgradeInfo (267) */
2405 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2245 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
2406 readonly specVersion: Compact<u32>;2246 readonly specVersion: Compact<u32>;
2407 readonly specName: Text;2247 readonly specName: Text;
2408 }2248 }
24092249
2410 /** @name FrameSystemLimitsBlockWeights (287) */2250 /** @name FrameSystemLimitsBlockWeights (268) */
2411 export interface FrameSystemLimitsBlockWeights extends Struct {2251 export interface FrameSystemLimitsBlockWeights extends Struct {
2412 readonly baseBlock: u64;2252 readonly baseBlock: u64;
2413 readonly maxBlock: u64;2253 readonly maxBlock: u64;
2414 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2254 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
2415 }2255 }
24162256
2417 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (288) */2257 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (269) */
2418 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2258 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
2419 readonly normal: FrameSystemLimitsWeightsPerClass;2259 readonly normal: FrameSystemLimitsWeightsPerClass;
2420 readonly operational: FrameSystemLimitsWeightsPerClass;2260 readonly operational: FrameSystemLimitsWeightsPerClass;
2421 readonly mandatory: FrameSystemLimitsWeightsPerClass;2261 readonly mandatory: FrameSystemLimitsWeightsPerClass;
2422 }2262 }
24232263
2424 /** @name FrameSystemLimitsWeightsPerClass (289) */2264 /** @name FrameSystemLimitsWeightsPerClass (270) */
2425 export interface FrameSystemLimitsWeightsPerClass extends Struct {2265 export interface FrameSystemLimitsWeightsPerClass extends Struct {
2426 readonly baseExtrinsic: u64;2266 readonly baseExtrinsic: u64;
2427 readonly maxExtrinsic: Option<u64>;2267 readonly maxExtrinsic: Option<u64>;
2428 readonly maxTotal: Option<u64>;2268 readonly maxTotal: Option<u64>;
2429 readonly reserved: Option<u64>;2269 readonly reserved: Option<u64>;
2430 }2270 }
24312271
2432 /** @name FrameSystemLimitsBlockLength (291) */2272 /** @name FrameSystemLimitsBlockLength (272) */
2433 export interface FrameSystemLimitsBlockLength extends Struct {2273 export interface FrameSystemLimitsBlockLength extends Struct {
2434 readonly max: FrameSupportWeightsPerDispatchClassU32;2274 readonly max: FrameSupportWeightsPerDispatchClassU32;
2435 }2275 }
24362276
2437 /** @name FrameSupportWeightsPerDispatchClassU32 (292) */2277 /** @name FrameSupportWeightsPerDispatchClassU32 (273) */
2438 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2278 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
2439 readonly normal: u32;2279 readonly normal: u32;
2440 readonly operational: u32;2280 readonly operational: u32;
2441 readonly mandatory: u32;2281 readonly mandatory: u32;
2442 }2282 }
24432283
2444 /** @name FrameSupportWeightsRuntimeDbWeight (293) */2284 /** @name FrameSupportWeightsRuntimeDbWeight (274) */
2445 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2285 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
2446 readonly read: u64;2286 readonly read: u64;
2447 readonly write: u64;2287 readonly write: u64;
2448 }2288 }
24492289
2450 /** @name SpVersionRuntimeVersion (294) */2290 /** @name SpVersionRuntimeVersion (275) */
2451 export interface SpVersionRuntimeVersion extends Struct {2291 export interface SpVersionRuntimeVersion extends Struct {
2452 readonly specName: Text;2292 readonly specName: Text;
2453 readonly implName: Text;2293 readonly implName: Text;
2459 readonly stateVersion: u8;2299 readonly stateVersion: u8;
2460 }2300 }
24612301
2462 /** @name FrameSystemError (298) */2302 /** @name FrameSystemError (279) */
2463 export interface FrameSystemError extends Enum {2303 export interface FrameSystemError extends Enum {
2464 readonly isInvalidSpecName: boolean;2304 readonly isInvalidSpecName: boolean;
2465 readonly isSpecVersionNeedsToIncrease: boolean;2305 readonly isSpecVersionNeedsToIncrease: boolean;
2470 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2310 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
2471 }2311 }
24722312
2473 /** @name OrmlVestingModuleError (300) */2313 /** @name OrmlVestingModuleError (281) */
2474 export interface OrmlVestingModuleError extends Enum {2314 export interface OrmlVestingModuleError extends Enum {
2475 readonly isZeroVestingPeriod: boolean;2315 readonly isZeroVestingPeriod: boolean;
2476 readonly isZeroVestingPeriodCount: boolean;2316 readonly isZeroVestingPeriodCount: boolean;
2481 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2321 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
2482 }2322 }
24832323
2484 /** @name CumulusPalletXcmpQueueInboundChannelDetails (302) */2324 /** @name CumulusPalletXcmpQueueInboundChannelDetails (283) */
2485 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2325 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
2486 readonly sender: u32;2326 readonly sender: u32;
2487 readonly state: CumulusPalletXcmpQueueInboundState;2327 readonly state: CumulusPalletXcmpQueueInboundState;
2488 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2328 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
2489 }2329 }
24902330
2491 /** @name CumulusPalletXcmpQueueInboundState (303) */2331 /** @name CumulusPalletXcmpQueueInboundState (284) */
2492 export interface CumulusPalletXcmpQueueInboundState extends Enum {2332 export interface CumulusPalletXcmpQueueInboundState extends Enum {
2493 readonly isOk: boolean;2333 readonly isOk: boolean;
2494 readonly isSuspended: boolean;2334 readonly isSuspended: boolean;
2495 readonly type: 'Ok' | 'Suspended';2335 readonly type: 'Ok' | 'Suspended';
2496 }2336 }
24972337
2498 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (306) */2338 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (287) */
2499 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2339 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
2500 readonly isConcatenatedVersionedXcm: boolean;2340 readonly isConcatenatedVersionedXcm: boolean;
2501 readonly isConcatenatedEncodedBlob: boolean;2341 readonly isConcatenatedEncodedBlob: boolean;
2502 readonly isSignals: boolean;2342 readonly isSignals: boolean;
2503 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2343 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
2504 }2344 }
25052345
2506 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (309) */2346 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (290) */
2507 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2347 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
2508 readonly recipient: u32;2348 readonly recipient: u32;
2509 readonly state: CumulusPalletXcmpQueueOutboundState;2349 readonly state: CumulusPalletXcmpQueueOutboundState;
2512 readonly lastIndex: u16;2352 readonly lastIndex: u16;
2513 }2353 }
25142354
2515 /** @name CumulusPalletXcmpQueueOutboundState (310) */2355 /** @name CumulusPalletXcmpQueueOutboundState (291) */
2516 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2356 export interface CumulusPalletXcmpQueueOutboundState extends Enum {
2517 readonly isOk: boolean;2357 readonly isOk: boolean;
2518 readonly isSuspended: boolean;2358 readonly isSuspended: boolean;
2519 readonly type: 'Ok' | 'Suspended';2359 readonly type: 'Ok' | 'Suspended';
2520 }2360 }
25212361
2522 /** @name CumulusPalletXcmpQueueQueueConfigData (312) */2362 /** @name CumulusPalletXcmpQueueQueueConfigData (293) */
2523 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2363 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
2524 readonly suspendThreshold: u32;2364 readonly suspendThreshold: u32;
2525 readonly dropThreshold: u32;2365 readonly dropThreshold: u32;
2529 readonly xcmpMaxIndividualWeight: u64;2369 readonly xcmpMaxIndividualWeight: u64;
2530 }2370 }
25312371
2532 /** @name CumulusPalletXcmpQueueError (314) */2372 /** @name CumulusPalletXcmpQueueError (295) */
2533 export interface CumulusPalletXcmpQueueError extends Enum {2373 export interface CumulusPalletXcmpQueueError extends Enum {
2534 readonly isFailedToSend: boolean;2374 readonly isFailedToSend: boolean;
2535 readonly isBadXcmOrigin: boolean;2375 readonly isBadXcmOrigin: boolean;
2539 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2379 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
2540 }2380 }
25412381
2542 /** @name PalletXcmError (315) */2382 /** @name PalletXcmError (296) */
2543 export interface PalletXcmError extends Enum {2383 export interface PalletXcmError extends Enum {
2544 readonly isUnreachable: boolean;2384 readonly isUnreachable: boolean;
2545 readonly isSendFailure: boolean;2385 readonly isSendFailure: boolean;
2557 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2397 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
2558 }2398 }
25592399
2560 /** @name CumulusPalletXcmError (316) */2400 /** @name CumulusPalletXcmError (297) */
2561 export type CumulusPalletXcmError = Null;2401 export type CumulusPalletXcmError = Null;
25622402
2563 /** @name CumulusPalletDmpQueueConfigData (317) */2403 /** @name CumulusPalletDmpQueueConfigData (298) */
2564 export interface CumulusPalletDmpQueueConfigData extends Struct {2404 export interface CumulusPalletDmpQueueConfigData extends Struct {
2565 readonly maxIndividual: u64;2405 readonly maxIndividual: u64;
2566 }2406 }
25672407
2568 /** @name CumulusPalletDmpQueuePageIndexData (318) */2408 /** @name CumulusPalletDmpQueuePageIndexData (299) */
2569 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2409 export interface CumulusPalletDmpQueuePageIndexData extends Struct {
2570 readonly beginUsed: u32;2410 readonly beginUsed: u32;
2571 readonly endUsed: u32;2411 readonly endUsed: u32;
2572 readonly overweightCount: u64;2412 readonly overweightCount: u64;
2573 }2413 }
25742414
2575 /** @name CumulusPalletDmpQueueError (321) */2415 /** @name CumulusPalletDmpQueueError (302) */
2576 export interface CumulusPalletDmpQueueError extends Enum {2416 export interface CumulusPalletDmpQueueError extends Enum {
2577 readonly isUnknown: boolean;2417 readonly isUnknown: boolean;
2578 readonly isOverLimit: boolean;2418 readonly isOverLimit: boolean;
2579 readonly type: 'Unknown' | 'OverLimit';2419 readonly type: 'Unknown' | 'OverLimit';
2580 }2420 }
25812421
2582 /** @name PalletUniqueError (325) */2422 /** @name PalletUniqueError (306) */
2583 export interface PalletUniqueError extends Enum {2423 export interface PalletUniqueError extends Enum {
2584 readonly isCollectionDecimalPointLimitExceeded: boolean;2424 readonly isCollectionDecimalPointLimitExceeded: boolean;
2585 readonly isConfirmUnsetSponsorFail: boolean;2425 readonly isConfirmUnsetSponsorFail: boolean;
2586 readonly isEmptyArgument: boolean;2426 readonly isEmptyArgument: boolean;
2587 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2427 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
2588 }2428 }
25892429
2590 /** @name UpDataStructsCollection (326) */2430 /** @name UpDataStructsCollection (307) */
2591 export interface UpDataStructsCollection extends Struct {2431 export interface UpDataStructsCollection extends Struct {
2592 readonly owner: AccountId32;2432 readonly owner: AccountId32;
2593 readonly mode: UpDataStructsCollectionMode;2433 readonly mode: UpDataStructsCollectionMode;
2599 readonly permissions: UpDataStructsCollectionPermissions;2439 readonly permissions: UpDataStructsCollectionPermissions;
2600 }2440 }
26012441
2602 /** @name UpDataStructsSponsorshipState (327) */2442 /** @name UpDataStructsSponsorshipState (308) */
2603 export interface UpDataStructsSponsorshipState extends Enum {2443 export interface UpDataStructsSponsorshipState extends Enum {
2604 readonly isDisabled: boolean;2444 readonly isDisabled: boolean;
2605 readonly isUnconfirmed: boolean;2445 readonly isUnconfirmed: boolean;
2609 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2449 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
2610 }2450 }
26112451
2612 /** @name UpDataStructsProperties (328) */2452 /** @name UpDataStructsProperties (309) */
2613 export interface UpDataStructsProperties extends Struct {2453 export interface UpDataStructsProperties extends Struct {
2614 readonly map: UpDataStructsPropertiesMapBoundedVec;2454 readonly map: UpDataStructsPropertiesMapBoundedVec;
2615 readonly consumedSpace: u32;2455 readonly consumedSpace: u32;
2616 readonly spaceLimit: u32;2456 readonly spaceLimit: u32;
2617 }2457 }
26182458
2619 /** @name UpDataStructsPropertiesMapBoundedVec (329) */2459 /** @name UpDataStructsPropertiesMapBoundedVec (310) */
2620 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}2460 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
26212461
2622 /** @name UpDataStructsPropertiesMapPropertyPermission (334) */2462 /** @name UpDataStructsPropertiesMapPropertyPermission (315) */
2623 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}2463 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
26242464
2625 /** @name UpDataStructsCollectionStats (341) */2465 /** @name UpDataStructsCollectionStats (322) */
2626 export interface UpDataStructsCollectionStats extends Struct {2466 export interface UpDataStructsCollectionStats extends Struct {
2627 readonly created: u32;2467 readonly created: u32;
2628 readonly destroyed: u32;2468 readonly destroyed: u32;
2629 readonly alive: u32;2469 readonly alive: u32;
2630 }2470 }
26312471
2632 /** @name PhantomTypeUpDataStructs (342) */2472 /** @name PhantomTypeUpDataStructs (323) */
2633 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsRmrkNftChild]>> {}2473 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsRmrkNftChild]>> {}
26342474
2635 /** @name UpDataStructsTokenData (344) */2475 /** @name UpDataStructsTokenData (325) */
2636 export interface UpDataStructsTokenData extends Struct {2476 export interface UpDataStructsTokenData extends Struct {
2637 readonly properties: Vec<UpDataStructsProperty>;2477 readonly properties: Vec<UpDataStructsProperty>;
2638 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2478 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
2639 }2479 }
26402480
2641 /** @name UpDataStructsRpcCollection (346) */2481 /** @name UpDataStructsRpcCollection (327) */
2642 export interface UpDataStructsRpcCollection extends Struct {2482 export interface UpDataStructsRpcCollection extends Struct {
2643 readonly owner: AccountId32;2483 readonly owner: AccountId32;
2644 readonly mode: UpDataStructsCollectionMode;2484 readonly mode: UpDataStructsCollectionMode;
2652 readonly properties: Vec<UpDataStructsProperty>;2492 readonly properties: Vec<UpDataStructsProperty>;
2653 }2493 }
26542494
2655 /** @name UpDataStructsRmrkCollectionInfo (347) */2495 /** @name UpDataStructsRmrkCollectionInfo (328) */
2656 export interface UpDataStructsRmrkCollectionInfo extends Struct {2496 export interface UpDataStructsRmrkCollectionInfo extends Struct {
2657 readonly issuer: AccountId32;2497 readonly issuer: AccountId32;
2658 readonly metadata: Bytes;2498 readonly metadata: Bytes;
2661 readonly nftsCount: u32;2501 readonly nftsCount: u32;
2662 }2502 }
26632503
2664 /** @name UpDataStructsRmrkNftInfo (348) */2504 /** @name UpDataStructsRmrkNftInfo (331) */
2665 export interface UpDataStructsRmrkNftInfo extends Struct {2505 export interface UpDataStructsRmrkNftInfo extends Struct {
2666 readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;2506 readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
2667 readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;2507 readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
2670 readonly pending: bool;2510 readonly pending: bool;
2671 }2511 }
26722512
2673 /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (349) */2513 /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (332) */
2674 export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {2514 export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
2675 readonly isAccountId: boolean;2515 readonly isAccountId: boolean;
2676 readonly asAccountId: AccountId32;2516 readonly asAccountId: AccountId32;
2679 readonly type: 'AccountId' | 'CollectionAndNftTuple';2519 readonly type: 'AccountId' | 'CollectionAndNftTuple';
2680 }2520 }
26812521
2682 /** @name UpDataStructsRmrkRoyaltyInfo (351) */2522 /** @name UpDataStructsRmrkRoyaltyInfo (334) */
2683 export interface UpDataStructsRmrkRoyaltyInfo extends Struct {2523 export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
2684 readonly recipient: AccountId32;2524 readonly recipient: AccountId32;
2685 readonly amount: Permill;2525 readonly amount: Permill;
2686 }2526 }
26872527
2688 /** @name UpDataStructsRmrkResourceInfo (352) */2528 /** @name UpDataStructsRmrkResourceInfo (335) */
2689 export interface UpDataStructsRmrkResourceInfo extends Struct {2529 export interface UpDataStructsRmrkResourceInfo extends Struct {
2690 readonly id: Bytes;2530 readonly id: Bytes;
2691 readonly resource: UpDataStructsRmrkResourceTypes;2531 readonly resource: UpDataStructsRmrkResourceTypes;
2692 readonly pending: bool;2532 readonly pending: bool;
2693 readonly pendingRemoval: bool;2533 readonly pendingRemoval: bool;
2694 }2534 }
26952535
2696 /** @name UpDataStructsRmrkResourceTypes (355) */2536 /** @name UpDataStructsRmrkResourceTypes (338) */
2697 export interface UpDataStructsRmrkResourceTypes extends Enum {2537 export interface UpDataStructsRmrkResourceTypes extends Enum {
2698 readonly isBasic: boolean;2538 readonly isBasic: boolean;
2699 readonly asBasic: UpDataStructsRmrkBasicResource;2539 readonly asBasic: UpDataStructsRmrkBasicResource;
2704 readonly type: 'Basic' | 'Composable' | 'Slot';2544 readonly type: 'Basic' | 'Composable' | 'Slot';
2705 }2545 }
27062546
2707 /** @name UpDataStructsRmrkBasicResource (356) */2547 /** @name UpDataStructsRmrkBasicResource (339) */
2708 export interface UpDataStructsRmrkBasicResource extends Struct {2548 export interface UpDataStructsRmrkBasicResource extends Struct {
2709 readonly src: Option<Bytes>;2549 readonly src: Option<Bytes>;
2710 readonly metadata: Option<Bytes>;2550 readonly metadata: Option<Bytes>;
2711 readonly license: Option<Bytes>;2551 readonly license: Option<Bytes>;
2712 readonly thumb: Option<Bytes>;2552 readonly thumb: Option<Bytes>;
2713 }2553 }
27142554
2715 /** @name UpDataStructsRmrkComposableResource (358) */2555 /** @name UpDataStructsRmrkComposableResource (341) */
2716 export interface UpDataStructsRmrkComposableResource extends Struct {2556 export interface UpDataStructsRmrkComposableResource extends Struct {
2717 readonly parts: Vec<u32>;2557 readonly parts: Vec<u32>;
2718 readonly base: u32;2558 readonly base: u32;
2722 readonly thumb: Option<Bytes>;2562 readonly thumb: Option<Bytes>;
2723 }2563 }
27242564
2725 /** @name UpDataStructsRmrkSlotResource (359) */2565 /** @name UpDataStructsRmrkSlotResource (342) */
2726 export interface UpDataStructsRmrkSlotResource extends Struct {2566 export interface UpDataStructsRmrkSlotResource extends Struct {
2727 readonly base: u32;2567 readonly base: u32;
2728 readonly src: Option<Bytes>;2568 readonly src: Option<Bytes>;
2732 readonly thumb: Option<Bytes>;2572 readonly thumb: Option<Bytes>;
2733 }2573 }
27342574
2735 /** @name UpDataStructsRmrkPropertyInfo (360) */2575 /** @name UpDataStructsRmrkPropertyInfo (343) */
2736 export interface UpDataStructsRmrkPropertyInfo extends Struct {2576 export interface UpDataStructsRmrkPropertyInfo extends Struct {
2737 readonly key: Bytes;2577 readonly key: Bytes;
2738 readonly value: Bytes;2578 readonly value: Bytes;
2739 }2579 }
27402580
2741 /** @name UpDataStructsRmrkBaseInfo (361) */2581 /** @name UpDataStructsRmrkBaseInfo (346) */
2742 export interface UpDataStructsRmrkBaseInfo extends Struct {2582 export interface UpDataStructsRmrkBaseInfo extends Struct {
2743 readonly issuer: AccountId32;2583 readonly issuer: AccountId32;
2744 readonly baseType: Bytes;2584 readonly baseType: Bytes;
2745 readonly symbol: Bytes;2585 readonly symbol: Bytes;
2746 }2586 }
2587
2588 /** @name UpDataStructsRmrkPartType (347) */
2589 export interface UpDataStructsRmrkPartType extends Enum {
2590 readonly isFixedPart: boolean;
2591 readonly asFixedPart: UpDataStructsRmrkFixedPart;
2592 readonly isSlotPart: boolean;
2593 readonly asSlotPart: UpDataStructsRmrkSlotPart;
2594 readonly type: 'FixedPart' | 'SlotPart';
2595 }
2596
2597 /** @name UpDataStructsRmrkFixedPart (349) */
2598 export interface UpDataStructsRmrkFixedPart extends Struct {
2599 readonly id: u32;
2600 readonly z: u32;
2601 readonly src: Bytes;
2602 }
2603
2604 /** @name UpDataStructsRmrkSlotPart (350) */
2605 export interface UpDataStructsRmrkSlotPart extends Struct {
2606 readonly id: u32;
2607 readonly equippable: UpDataStructsRmrkEquippableList;
2608 readonly src: Bytes;
2609 readonly z: u32;
2610 }
2611
2612 /** @name UpDataStructsRmrkEquippableList (351) */
2613 export interface UpDataStructsRmrkEquippableList extends Enum {
2614 readonly isAll: boolean;
2615 readonly isEmpty: boolean;
2616 readonly isCustom: boolean;
2617 readonly asCustom: Vec<u32>;
2618 readonly type: 'All' | 'Empty' | 'Custom';
2619 }
2620
2621 /** @name UpDataStructsRmrkTheme (352) */
2622 export interface UpDataStructsRmrkTheme extends Struct {
2623 readonly name: Bytes;
2624 readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
2625 readonly inherit: bool;
2626 }
2627
2628 /** @name UpDataStructsRmrkThemeProperty (354) */
2629 export interface UpDataStructsRmrkThemeProperty extends Struct {
2630 readonly key: Bytes;
2631 readonly value: Bytes;
2632 }
27472633
2748 /** @name UpDataStructsRmrkNftChild (362) */2634 /** @name UpDataStructsRmrkNftChild (355) */
2749 export interface UpDataStructsRmrkNftChild extends Struct {2635 export interface UpDataStructsRmrkNftChild extends Struct {
2750 readonly collectionId: u32;2636 readonly collectionId: u32;
2751 readonly nftId: u32;2637 readonly nftId: u32;
2752 }2638 }
27532639
2754 /** @name PalletCommonError (364) */2640 /** @name PalletCommonError (357) */
2755 export interface PalletCommonError extends Enum {2641 export interface PalletCommonError extends Enum {
2756 readonly isCollectionNotFound: boolean;2642 readonly isCollectionNotFound: boolean;
2757 readonly isMustBeTokenOwner: boolean;2643 readonly isMustBeTokenOwner: boolean;
2758 readonly isNoPermission: boolean;2644 readonly isNoPermission: boolean;
2645 readonly isCantDestroyNotEmptyCollection: boolean;
2759 readonly isPublicMintingNotAllowed: boolean;2646 readonly isPublicMintingNotAllowed: boolean;
2760 readonly isAddressNotInAllowlist: boolean;2647 readonly isAddressNotInAllowlist: boolean;
2761 readonly isCollectionNameLimitExceeded: boolean;2648 readonly isCollectionNameLimitExceeded: boolean;
2785 readonly isPropertyKeyIsTooLong: boolean;2672 readonly isPropertyKeyIsTooLong: boolean;
2786 readonly isInvalidCharacterInPropertyKey: boolean;2673 readonly isInvalidCharacterInPropertyKey: boolean;
2787 readonly isEmptyPropertyKey: boolean;2674 readonly isEmptyPropertyKey: boolean;
2788 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';2675 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';
2789 }2676 }
27902677
2791 /** @name PalletFungibleError (366) */2678 /** @name PalletFungibleError (359) */
2792 export interface PalletFungibleError extends Enum {2679 export interface PalletFungibleError extends Enum {
2793 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2680 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
2794 readonly isFungibleItemsHaveNoId: boolean;2681 readonly isFungibleItemsHaveNoId: boolean;
2798 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2685 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
2799 }2686 }
28002687
2801 /** @name PalletRefungibleItemData (367) */2688 /** @name PalletRefungibleItemData (360) */
2802 export interface PalletRefungibleItemData extends Struct {2689 export interface PalletRefungibleItemData extends Struct {
2803 readonly constData: Bytes;2690 readonly constData: Bytes;
2804 }2691 }
28052692
2806 /** @name PalletRefungibleError (371) */2693 /** @name PalletRefungibleError (364) */
2807 export interface PalletRefungibleError extends Enum {2694 export interface PalletRefungibleError extends Enum {
2808 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2695 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
2809 readonly isWrongRefungiblePieces: boolean;2696 readonly isWrongRefungiblePieces: boolean;
2812 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2699 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
2813 }2700 }
28142701
2815 /** @name PalletNonfungibleItemData (372) */2702 /** @name PalletNonfungibleItemData (365) */
2816 export interface PalletNonfungibleItemData extends Struct {2703 export interface PalletNonfungibleItemData extends Struct {
2817 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2704 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2818 }2705 }
28192706
2820 /** @name PalletNonfungibleError (373) */2707 /** @name PalletNonfungibleError (367) */
2821 export interface PalletNonfungibleError extends Enum {2708 export interface PalletNonfungibleError extends Enum {
2822 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2709 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
2823 readonly isNonfungibleItemsHaveNoAmount: boolean;2710 readonly isNonfungibleItemsHaveNoAmount: boolean;
2711 readonly isCantBurnNftWithChildren: boolean;
2824 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2712 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
2825 }2713 }
28262714
2827 /** @name PalletStructureError (374) */2715 /** @name PalletStructureError (368) */
2828 export interface PalletStructureError extends Enum {2716 export interface PalletStructureError extends Enum {
2829 readonly isOuroborosDetected: boolean;2717 readonly isOuroborosDetected: boolean;
2830 readonly isDepthLimit: boolean;2718 readonly isDepthLimit: boolean;
2831 readonly isTokenNotFound: boolean;2719 readonly isTokenNotFound: boolean;
2832 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2720 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
2833 }2721 }
2834
2835 /** @name PalletRmrkCoreError (375) */
2836 export interface PalletRmrkCoreError extends Enum {
2837 readonly isCorruptedCollectionType: boolean;
2838 readonly isNftTypeEncodeError: boolean;
2839 readonly isRmrkPropertyKeyIsTooLong: boolean;
2840 readonly isRmrkPropertyValueIsTooLong: boolean;
2841 readonly isCollectionNotEmpty: boolean;
2842 readonly isNoAvailableCollectionId: boolean;
2843 readonly isNoAvailableNftId: boolean;
2844 readonly isCollectionUnknown: boolean;
2845 readonly isNoPermission: boolean;
2846 readonly isCollectionFullOrLocked: boolean;
2847 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';
2848 }
2849
2850 /** @name PalletRmrkEquipError (377) */
2851 export interface PalletRmrkEquipError extends Enum {
2852 readonly isPermissionError: boolean;
2853 readonly isNoAvailableBaseId: boolean;
2854 readonly isNoAvailablePartId: boolean;
2855 readonly isBaseDoesntExist: boolean;
2856 readonly isNeedsDefaultThemeFirst: boolean;
2857 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
2858 }
28592722
2860 /** @name PalletEvmError (380) */2723 /** @name PalletEvmError (371) */
2861 export interface PalletEvmError extends Enum {2724 export interface PalletEvmError extends Enum {
2862 readonly isBalanceLow: boolean;2725 readonly isBalanceLow: boolean;
2863 readonly isFeeOverflow: boolean;2726 readonly isFeeOverflow: boolean;
2868 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2731 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
2869 }2732 }
28702733
2871 /** @name FpRpcTransactionStatus (383) */2734 /** @name FpRpcTransactionStatus (374) */
2872 export interface FpRpcTransactionStatus extends Struct {2735 export interface FpRpcTransactionStatus extends Struct {
2873 readonly transactionHash: H256;2736 readonly transactionHash: H256;
2874 readonly transactionIndex: u32;2737 readonly transactionIndex: u32;
2879 readonly logsBloom: EthbloomBloom;2742 readonly logsBloom: EthbloomBloom;
2880 }2743 }
28812744
2882 /** @name EthbloomBloom (385) */2745 /** @name EthbloomBloom (376) */
2883 export interface EthbloomBloom extends U8aFixed {}2746 export interface EthbloomBloom extends U8aFixed {}
28842747
2885 /** @name EthereumReceiptReceiptV3 (387) */2748 /** @name EthereumReceiptReceiptV3 (378) */
2886 export interface EthereumReceiptReceiptV3 extends Enum {2749 export interface EthereumReceiptReceiptV3 extends Enum {
2887 readonly isLegacy: boolean;2750 readonly isLegacy: boolean;
2888 readonly asLegacy: EthereumReceiptEip658ReceiptData;2751 readonly asLegacy: EthereumReceiptEip658ReceiptData;
2893 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2756 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
2894 }2757 }
28952758
2896 /** @name EthereumReceiptEip658ReceiptData (388) */2759 /** @name EthereumReceiptEip658ReceiptData (379) */
2897 export interface EthereumReceiptEip658ReceiptData extends Struct {2760 export interface EthereumReceiptEip658ReceiptData extends Struct {
2898 readonly statusCode: u8;2761 readonly statusCode: u8;
2899 readonly usedGas: U256;2762 readonly usedGas: U256;
2900 readonly logsBloom: EthbloomBloom;2763 readonly logsBloom: EthbloomBloom;
2901 readonly logs: Vec<EthereumLog>;2764 readonly logs: Vec<EthereumLog>;
2902 }2765 }
29032766
2904 /** @name EthereumBlock (389) */2767 /** @name EthereumBlock (380) */
2905 export interface EthereumBlock extends Struct {2768 export interface EthereumBlock extends Struct {
2906 readonly header: EthereumHeader;2769 readonly header: EthereumHeader;
2907 readonly transactions: Vec<EthereumTransactionTransactionV2>;2770 readonly transactions: Vec<EthereumTransactionTransactionV2>;
2908 readonly ommers: Vec<EthereumHeader>;2771 readonly ommers: Vec<EthereumHeader>;
2909 }2772 }
29102773
2911 /** @name EthereumHeader (390) */2774 /** @name EthereumHeader (381) */
2912 export interface EthereumHeader extends Struct {2775 export interface EthereumHeader extends Struct {
2913 readonly parentHash: H256;2776 readonly parentHash: H256;
2914 readonly ommersHash: H256;2777 readonly ommersHash: H256;
2927 readonly nonce: EthereumTypesHashH64;2790 readonly nonce: EthereumTypesHashH64;
2928 }2791 }
29292792
2930 /** @name EthereumTypesHashH64 (391) */2793 /** @name EthereumTypesHashH64 (382) */
2931 export interface EthereumTypesHashH64 extends U8aFixed {}2794 export interface EthereumTypesHashH64 extends U8aFixed {}
29322795
2933 /** @name PalletEthereumError (396) */2796 /** @name PalletEthereumError (387) */
2934 export interface PalletEthereumError extends Enum {2797 export interface PalletEthereumError extends Enum {
2935 readonly isInvalidSignature: boolean;2798 readonly isInvalidSignature: boolean;
2936 readonly isPreLogExists: boolean;2799 readonly isPreLogExists: boolean;
2937 readonly type: 'InvalidSignature' | 'PreLogExists';2800 readonly type: 'InvalidSignature' | 'PreLogExists';
2938 }2801 }
29392802
2940 /** @name PalletEvmCoderSubstrateError (397) */2803 /** @name PalletEvmCoderSubstrateError (388) */
2941 export interface PalletEvmCoderSubstrateError extends Enum {2804 export interface PalletEvmCoderSubstrateError extends Enum {
2942 readonly isOutOfGas: boolean;2805 readonly isOutOfGas: boolean;
2943 readonly isOutOfFund: boolean;2806 readonly isOutOfFund: boolean;
2944 readonly type: 'OutOfGas' | 'OutOfFund';2807 readonly type: 'OutOfGas' | 'OutOfFund';
2945 }2808 }
29462809
2947 /** @name PalletEvmContractHelpersSponsoringModeT (398) */2810 /** @name PalletEvmContractHelpersSponsoringModeT (389) */
2948 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2811 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
2949 readonly isDisabled: boolean;2812 readonly isDisabled: boolean;
2950 readonly isAllowlisted: boolean;2813 readonly isAllowlisted: boolean;
2951 readonly isGenerous: boolean;2814 readonly isGenerous: boolean;
2952 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2815 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
2953 }2816 }
29542817
2955 /** @name PalletEvmContractHelpersError (400) */2818 /** @name PalletEvmContractHelpersError (391) */
2956 export interface PalletEvmContractHelpersError extends Enum {2819 export interface PalletEvmContractHelpersError extends Enum {
2957 readonly isNoPermission: boolean;2820 readonly isNoPermission: boolean;
2958 readonly type: 'NoPermission';2821 readonly type: 'NoPermission';
2959 }2822 }
29602823
2961 /** @name PalletEvmMigrationError (401) */2824 /** @name PalletEvmMigrationError (392) */
2962 export interface PalletEvmMigrationError extends Enum {2825 export interface PalletEvmMigrationError extends Enum {
2963 readonly isAccountNotEmpty: boolean;2826 readonly isAccountNotEmpty: boolean;
2964 readonly isAccountIsNotMigrating: boolean;2827 readonly isAccountIsNotMigrating: boolean;
2965 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2828 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
2966 }2829 }
29672830
2968 /** @name SpRuntimeMultiSignature (403) */2831 /** @name SpRuntimeMultiSignature (394) */
2969 export interface SpRuntimeMultiSignature extends Enum {2832 export interface SpRuntimeMultiSignature extends Enum {
2970 readonly isEd25519: boolean;2833 readonly isEd25519: boolean;
2971 readonly asEd25519: SpCoreEd25519Signature;2834 readonly asEd25519: SpCoreEd25519Signature;
2976 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2839 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
2977 }2840 }
29782841
2979 /** @name SpCoreEd25519Signature (404) */2842 /** @name SpCoreEd25519Signature (395) */
2980 export interface SpCoreEd25519Signature extends U8aFixed {}2843 export interface SpCoreEd25519Signature extends U8aFixed {}
29812844
2982 /** @name SpCoreSr25519Signature (406) */2845 /** @name SpCoreSr25519Signature (397) */
2983 export interface SpCoreSr25519Signature extends U8aFixed {}2846 export interface SpCoreSr25519Signature extends U8aFixed {}
29842847
2985 /** @name SpCoreEcdsaSignature (407) */2848 /** @name SpCoreEcdsaSignature (398) */
2986 export interface SpCoreEcdsaSignature extends U8aFixed {}2849 export interface SpCoreEcdsaSignature extends U8aFixed {}
29872850
2988 /** @name FrameSystemExtensionsCheckSpecVersion (410) */2851 /** @name FrameSystemExtensionsCheckSpecVersion (401) */
2989 export type FrameSystemExtensionsCheckSpecVersion = Null;2852 export type FrameSystemExtensionsCheckSpecVersion = Null;
29902853
2991 /** @name FrameSystemExtensionsCheckGenesis (411) */2854 /** @name FrameSystemExtensionsCheckGenesis (402) */
2992 export type FrameSystemExtensionsCheckGenesis = Null;2855 export type FrameSystemExtensionsCheckGenesis = Null;
29932856
2994 /** @name FrameSystemExtensionsCheckNonce (414) */2857 /** @name FrameSystemExtensionsCheckNonce (405) */
2995 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}2858 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
29962859
2997 /** @name FrameSystemExtensionsCheckWeight (415) */2860 /** @name FrameSystemExtensionsCheckWeight (406) */
2998 export type FrameSystemExtensionsCheckWeight = Null;2861 export type FrameSystemExtensionsCheckWeight = Null;
29992862
3000 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (416) */2863 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (407) */
3001 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}2864 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
30022865
3003 /** @name OpalRuntimeRuntime (417) */2866 /** @name OpalRuntimeRuntime (408) */
3004 export type OpalRuntimeRuntime = Null;2867 export type OpalRuntimeRuntime = Null;
30052868
3006 /** @name PalletEthereumFakeTransactionFinalizer (418) */2869 /** @name PalletEthereumFakeTransactionFinalizer (409) */
3007 export type PalletEthereumFakeTransactionFinalizer = Null;2870 export type PalletEthereumFakeTransactionFinalizer = Null;
30082871
3009} // declare module2872} // 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',