git.delta.rocks / unique-network / refs/commits / 5772df77891c

difftreelog

fix(tests) update rmrk type definitions + regenerate types

Fahrrader2022-06-08parent: #278a269.patch.diff
in: master

11 files changed

modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
80 * Tried to store more data than allowed in collection field80 * Tried to store more data than allowed in collection field
81 **/81 **/
82 CollectionFieldSizeExceeded: AugmentedError<ApiType>;82 CollectionFieldSizeExceeded: AugmentedError<ApiType>;
83 /**
84 * Tried to access an external collection with an internal API
85 **/
86 CollectionIsExternal: AugmentedError<ApiType>;
87 /**
88 * Tried to access an internal collection with an external API
89 **/
90 CollectionIsInternal: AugmentedError<ApiType>;
83 /**91 /**
84 * Collection limit bounds per collection exceeded92 * Collection limit bounds per collection exceeded
85 **/93 **/
438 [key: string]: AugmentedError<ApiType>;446 [key: string]: AugmentedError<ApiType>;
439 };447 };
440 rmrkCore: {448 rmrkCore: {
449 CannotAcceptNonOwnedNft: AugmentedError<ApiType>;
450 CannotRejectNonOwnedNft: AugmentedError<ApiType>;
451 CannotSendToDescendentOrSelf: AugmentedError<ApiType>;
441 CollectionFullOrLocked: AugmentedError<ApiType>;452 CollectionFullOrLocked: AugmentedError<ApiType>;
442 CollectionNotEmpty: AugmentedError<ApiType>;453 CollectionNotEmpty: AugmentedError<ApiType>;
443 CollectionUnknown: AugmentedError<ApiType>;454 CollectionUnknown: AugmentedError<ApiType>;
444 CorruptedCollectionType: AugmentedError<ApiType>;455 CorruptedCollectionType: AugmentedError<ApiType>;
445 NftTypeEncodeError: AugmentedError<ApiType>;456 NftTypeEncodeError: AugmentedError<ApiType>;
446 NoAvailableCollectionId: AugmentedError<ApiType>;457 NoAvailableCollectionId: AugmentedError<ApiType>;
447 NoAvailableNftId: AugmentedError<ApiType>;458 NoAvailableNftId: AugmentedError<ApiType>;
459 NonTransferable: AugmentedError<ApiType>;
448 NoPermission: AugmentedError<ApiType>;460 NoPermission: AugmentedError<ApiType>;
461 ResourceDoesntExist: AugmentedError<ApiType>;
462 ResourceNotPending: AugmentedError<ApiType>;
449 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;463 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;
450 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;464 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;
451 /**465 /**
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
2/* eslint-disable */2/* eslint-disable */
33
4import type { ApiTypes } from '@polkadot/api-base/types';4import type { ApiTypes } from '@polkadot/api-base/types';
5import type { Bytes, Null, Option, Result, U256, U8aFixed, u128, u32, u64, u8 } from '@polkadot/types-codec';5import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
6import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';6import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
7import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';7import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
88
9declare module '@polkadot/api-base/types/events' {9declare module '@polkadot/api-base/types/events' {
10 export interface AugmentedEvents<ApiType extends ApiTypes> {10 export interface AugmentedEvents<ApiType extends ApiTypes> {
401 CollectionDestroyed: AugmentedEvent<ApiType, [AccountId32, u32]>;401 CollectionDestroyed: AugmentedEvent<ApiType, [AccountId32, u32]>;
402 CollectionLocked: AugmentedEvent<ApiType, [AccountId32, u32]>;402 CollectionLocked: AugmentedEvent<ApiType, [AccountId32, u32]>;
403 IssuerChanged: AugmentedEvent<ApiType, [AccountId32, AccountId32, u32]>;403 IssuerChanged: AugmentedEvent<ApiType, [AccountId32, AccountId32, u32]>;
404 NFTAccepted: AugmentedEvent<ApiType, [AccountId32, RmrkTraitsNftAccountIdOrCollectionNftTuple, u32, u32]>;
404 NFTBurned: AugmentedEvent<ApiType, [AccountId32, u32]>;405 NFTBurned: AugmentedEvent<ApiType, [AccountId32, u32]>;
405 NftMinted: AugmentedEvent<ApiType, [AccountId32, u32, u32]>;406 NftMinted: AugmentedEvent<ApiType, [AccountId32, u32, u32]>;
407 NFTRejected: AugmentedEvent<ApiType, [AccountId32, u32, u32]>;
408 NFTSent: AugmentedEvent<ApiType, [AccountId32, RmrkTraitsNftAccountIdOrCollectionNftTuple, u32, u32, bool]>;
409 PrioritySet: AugmentedEvent<ApiType, [u32, u32]>;
406 PropertySet: AugmentedEvent<ApiType, [u32, Option<u32>, Bytes, Bytes]>;410 PropertySet: AugmentedEvent<ApiType, [u32, Option<u32>, Bytes, Bytes]>;
411 ResourceAccepted: AugmentedEvent<ApiType, [u32, u32]>;
407 ResourceAdded: AugmentedEvent<ApiType, [u32, u32]>;412 ResourceAdded: AugmentedEvent<ApiType, [u32, u32]>;
413 ResourceRemoval: AugmentedEvent<ApiType, [u32, u32]>;
414 ResourceRemovalAccepted: AugmentedEvent<ApiType, [u32, u32]>;
408 /**415 /**
409 * Generic event416 * Generic event
410 **/417 **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
417 };417 };
418 rmrkCore: {418 rmrkCore: {
419 collectionIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;419 collectionIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
420 collectionIndexMap: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;420 rmrkInernalCollectionId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
421 uniqueCollectionId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
421 /**422 /**
422 * Generic query423 * Generic query
423 **/424 **/
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
18import type { EthAccount, EthCallRequest, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';18import type { EthAccount, EthCallRequest, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
19import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';19import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
20import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';20import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
21import type { MmrLeafProof } from '@polkadot/types/interfaces/mmr';21import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
22import type { StorageKind } from '@polkadot/types/interfaces/offchain';22import type { StorageKind } from '@polkadot/types/interfaces/offchain';
23import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';23import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
24import type { RpcMethods } from '@polkadot/types/interfaces/rpc';24import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
354 subscribeJustifications: AugmentedRpc<() => Observable<JustificationNotification>>;354 subscribeJustifications: AugmentedRpc<() => Observable<JustificationNotification>>;
355 };355 };
356 mmr: {356 mmr: {
357 /**
358 * Generate MMR proof for the given leaf indices.
359 **/
360 generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>;
357 /**361 /**
358 * Generate MMR proof for given leaf index.362 * Generate MMR proof for given leaf index.
359 **/363 **/
360 generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>;364 generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;
361 };365 };
362 net: {366 net: {
363 /**367 /**
401 /**405 /**
402 * Get base info406 * Get base info
403 **/407 **/
404 base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<UpDataStructsRmrkBaseInfo>>>;408 base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsBaseBaseInfo>>>;
405 /**409 /**
406 * Get all Base's parts410 * Get all Base's parts
407 **/411 **/
408 baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkPartType>>>;412 baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsPartPartType>>>;
409 /**413 /**
410 * Get collection by id414 * Get collection by id
411 **/415 **/
412 collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<UpDataStructsRmrkCollectionInfo>>>;416 collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsCollectionCollectionInfo>>>;
413 /**417 /**
414 * Get collection properties418 * Get collection properties
415 **/419 **/
416 collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, filterKeys?: Vec<Text> | (Text | string)[], at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkPropertyInfo>>>;420 collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, filterKeys?: Vec<Text> | (Text | string)[], at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsPropertyPropertyInfo>>>;
417 /**421 /**
418 * Get the latest created collection id422 * Get the latest created collection id
419 **/423 **/
420 lastCollectionIdx: AugmentedRpc<(at?: Hash | string | Uint8Array) => Observable<u32>>;424 lastCollectionIdx: AugmentedRpc<(at?: Hash | string | Uint8Array) => Observable<u32>>;
421 /**425 /**
422 * Get NFT by collection id and NFT id426 * Get NFT by collection id and NFT id
423 **/427 **/
424 nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<UpDataStructsRmrkNftInfo>>>;428 nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsNftNftInfo>>>;
425 /**429 /**
426 * Get NFT children430 * Get NFT children
427 **/431 **/
428 nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkNftChild>>>;432 nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsNftNftChild>>>;
429 /**433 /**
430 * Get NFT properties434 * Get NFT properties
431 **/435 **/
432 nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, filterKeys?: Vec<Text> | (Text | string)[], at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkPropertyInfo>>>;436 nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, filterKeys?: Vec<Text> | (Text | string)[], at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsPropertyPropertyInfo>>>;
433 /**437 /**
434 * Get NFT resource priorities438 * Get NFT resource priorities
435 **/439 **/
436 nftResourcePriorities: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;440 nftResourcePriorities: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;
437 /**441 /**
438 * Get NFT resources442 * Get NFT resources
439 **/443 **/
440 nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<UpDataStructsRmrkResourceInfo>>>;444 nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsResourceResourceInfo>>>;
441 /**445 /**
442 * Get Base's theme names446 * Get Base's theme names
443 **/447 **/
444 themeNames: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;448 themeNames: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;
445 /**449 /**
446 * Get Theme's keys values450 * Get Theme's keys values
447 **/451 **/
448 themes: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, themeName: Text | string, keys: Option<Vec<Text>> | null | object | string | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<UpDataStructsRmrkTheme>>>;452 themes: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, themeName: Text | string, keys: Option<Vec<Text>> | null | object | string | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsTheme>>>;
449 };453 };
450 rpc: {454 rpc: {
451 /**455 /**
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
5import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';5import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
6import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';6import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
8import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRmrkBasicResource, UpDataStructsRmrkComposableResource, UpDataStructsRmrkPartType, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';8import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
99
10declare module '@polkadot/api-base/types/submittable' {10declare module '@polkadot/api-base/types/submittable' {
11 export interface AugmentedSubmittables<ApiType extends ApiTypes> {11 export interface AugmentedSubmittables<ApiType extends ApiTypes> {
347 [key: string]: SubmittableExtrinsicFunction<ApiType>;347 [key: string]: SubmittableExtrinsicFunction<ApiType>;
348 };348 };
349 rmrkCore: {349 rmrkCore: {
350 acceptNft: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple | { AccountId: any } | { CollectionAndNftTuple: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsNftAccountIdOrCollectionNftTuple]>;
351 acceptResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, rmrkResourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
352 acceptResourceRemoval: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, rmrkResourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
350 addBasicResource: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: UpDataStructsRmrkBasicResource | { src?: any; metadata?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, UpDataStructsRmrkBasicResource]>;353 addBasicResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: RmrkTraitsResourceBasicResource | { src?: any; metadata?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsResourceBasicResource]>;
351 addComposableResource: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resourceId: Bytes | string | Uint8Array, resource: UpDataStructsRmrkComposableResource | { parts?: any; base?: any; src?: any; metadata?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, Bytes, UpDataStructsRmrkComposableResource]>;354 addComposableResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resourceId: Bytes | string | Uint8Array, resource: RmrkTraitsResourceComposableResource | { parts?: any; base?: any; src?: any; metadata?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, Bytes, RmrkTraitsResourceComposableResource]>;
352 addSlotResource: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: UpDataStructsRmrkSlotResource | { base?: any; src?: any; metadata?: any; slot?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, UpDataStructsRmrkSlotResource]>;355 addSlotResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: RmrkTraitsResourceSlotResource | { base?: any; src?: any; metadata?: any; slot?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsResourceSlotResource]>;
353 burnNft: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;356 burnNft: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
354 changeCollectionIssuer: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newIssuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, MultiAddress]>;357 changeCollectionIssuer: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newIssuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, MultiAddress]>;
355 createCollection: AugmentedSubmittable<(metadata: Bytes | string | Uint8Array, max: Option<u32> | null | object | string | Uint8Array, symbol: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, Option<u32>, Bytes]>;358 createCollection: AugmentedSubmittable<(metadata: Bytes | string | Uint8Array, max: Option<u32> | null | object | string | Uint8Array, symbol: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, Option<u32>, Bytes]>;
356 destroyCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;359 destroyCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
357 lockCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;360 lockCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
358 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]>;361 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, transferable: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, Option<AccountId32>, Option<Permill>, Bytes, bool]>;
362 rejectNft: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
363 removeResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
364 send: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple | { AccountId: any } | { CollectionAndNftTuple: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsNftAccountIdOrCollectionNftTuple]>;
365 setPriority: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, priorities: Vec<u32> | (u32 | AnyNumber | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, u32, Vec<u32>]>;
359 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]>;366 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]>;
360 /**367 /**
361 * Generic tx368 * Generic tx
362 **/369 **/
363 [key: string]: SubmittableExtrinsicFunction<ApiType>;370 [key: string]: SubmittableExtrinsicFunction<ApiType>;
364 };371 };
365 rmrkEquip: {372 rmrkEquip: {
366 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>]>;373 createBase: AugmentedSubmittable<(baseType: Bytes | string | Uint8Array, symbol: Bytes | string | Uint8Array, parts: Vec<RmrkTraitsPartPartType> | (RmrkTraitsPartPartType | { FixedPart: any } | { SlotPart: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Bytes, Bytes, Vec<RmrkTraitsPartPartType>]>;
367 themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: UpDataStructsRmrkTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsRmrkTheme]>;374 themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
368 /**375 /**
369 * Generic tx376 * Generic tx
370 **/377 **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
33
4import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';4import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
5import type { Data, StorageKey } from '@polkadot/types';5import type { Data, StorageKey } from '@polkadot/types';
6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
8import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';8import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';
9import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';9import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';
36import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';36import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
37import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';37import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
38import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';38import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';
39import type { MmrLeafProof } from '@polkadot/types/interfaces/mmr';39import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
40import type { StorageKind } from '@polkadot/types/interfaces/offchain';40import type { StorageKind } from '@polkadot/types/interfaces/offchain';
41import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';41import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
42import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, Scheduling, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';42import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, Scheduling, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
661 MetadataV14: MetadataV14;661 MetadataV14: MetadataV14;
662 MetadataV9: MetadataV9;662 MetadataV9: MetadataV9;
663 MigrationStatusResult: MigrationStatusResult;663 MigrationStatusResult: MigrationStatusResult;
664 MmrLeafBatchProof: MmrLeafBatchProof;
664 MmrLeafProof: MmrLeafProof;665 MmrLeafProof: MmrLeafProof;
665 MmrRootHash: MmrRootHash;666 MmrRootHash: MmrRootHash;
666 ModuleConstantMetadataV10: ModuleConstantMetadataV10;667 ModuleConstantMetadataV10: ModuleConstantMetadataV10;
727 OpenTipTip: OpenTipTip;728 OpenTipTip: OpenTipTip;
728 OpenTipTo225: OpenTipTo225;729 OpenTipTo225: OpenTipTo225;
729 OperatingMode: OperatingMode;730 OperatingMode: OperatingMode;
731 OptionBool: OptionBool;
730 Origin: Origin;732 Origin: Origin;
731 OriginCaller: OriginCaller;733 OriginCaller: OriginCaller;
732 OriginKindV0: OriginKindV0;734 OriginKindV0: OriginKindV0;
947 Retriable: Retriable;949 Retriable: Retriable;
948 RewardDestination: RewardDestination;950 RewardDestination: RewardDestination;
949 RewardPoint: RewardPoint;951 RewardPoint: RewardPoint;
952 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;
953 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;
954 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;
955 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;
956 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;
957 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;
958 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;
959 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;
960 RmrkTraitsPartPartType: RmrkTraitsPartPartType;
961 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;
962 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;
963 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;
964 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;
965 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;
966 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;
967 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;
968 RmrkTraitsTheme: RmrkTraitsTheme;
969 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;
950 RoundSnapshot: RoundSnapshot;970 RoundSnapshot: RoundSnapshot;
951 RoundState: RoundState;971 RoundState: RoundState;
952 RpcMethods: RpcMethods;972 RpcMethods: RpcMethods;
1193 UpDataStructsProperty: UpDataStructsProperty;1213 UpDataStructsProperty: UpDataStructsProperty;
1194 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1214 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
1195 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1215 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
1196 UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
1197 UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;
1198 UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;
1199 UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;
1200 UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;
1201 UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;
1202 UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;
1203 UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;
1204 UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;
1205 UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;
1206 UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;
1207 UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;
1208 UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;
1209 UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;
1210 UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;
1211 UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;
1212 UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;
1213 UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;
1214 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1216 UpDataStructsRpcCollection: UpDataStructsRpcCollection;
1215 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1217 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
1216 UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;1218 UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
896 readonly isPropertyKeyIsTooLong: boolean;896 readonly isPropertyKeyIsTooLong: boolean;
897 readonly isInvalidCharacterInPropertyKey: boolean;897 readonly isInvalidCharacterInPropertyKey: boolean;
898 readonly isEmptyPropertyKey: boolean;898 readonly isEmptyPropertyKey: boolean;
899 readonly isCollectionIsExternal: boolean;
900 readonly isCollectionIsInternal: boolean;
899 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';901 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
900}902}
901903
902/** @name PalletCommonEvent */904/** @name PalletCommonEvent */
1157 readonly recipient: Option<AccountId32>;1159 readonly recipient: Option<AccountId32>;
1158 readonly royaltyAmount: Option<Permill>;1160 readonly royaltyAmount: Option<Permill>;
1159 readonly metadata: Bytes;1161 readonly metadata: Bytes;
1162 readonly transferable: bool;
1160 } & Struct;1163 } & Struct;
1161 readonly isBurnNft: boolean;1164 readonly isBurnNft: boolean;
1162 readonly asBurnNft: {1165 readonly asBurnNft: {
1163 readonly collectionId: u32;1166 readonly collectionId: u32;
1164 readonly nftId: u32;1167 readonly nftId: u32;
1165 } & Struct;1168 } & Struct;
1169 readonly isSend: boolean;
1170 readonly asSend: {
1171 readonly rmrkCollectionId: u32;
1172 readonly rmrkNftId: u32;
1173 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
1174 } & Struct;
1175 readonly isAcceptNft: boolean;
1176 readonly asAcceptNft: {
1177 readonly rmrkCollectionId: u32;
1178 readonly rmrkNftId: u32;
1179 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
1180 } & Struct;
1181 readonly isRejectNft: boolean;
1182 readonly asRejectNft: {
1183 readonly rmrkCollectionId: u32;
1184 readonly rmrkNftId: u32;
1185 } & Struct;
1186 readonly isAcceptResource: boolean;
1187 readonly asAcceptResource: {
1188 readonly rmrkCollectionId: u32;
1189 readonly rmrkNftId: u32;
1190 readonly rmrkResourceId: u32;
1191 } & Struct;
1192 readonly isAcceptResourceRemoval: boolean;
1193 readonly asAcceptResourceRemoval: {
1194 readonly rmrkCollectionId: u32;
1195 readonly rmrkNftId: u32;
1196 readonly rmrkResourceId: u32;
1197 } & Struct;
1166 readonly isSetProperty: boolean;1198 readonly isSetProperty: boolean;
1167 readonly asSetProperty: {1199 readonly asSetProperty: {
1168 readonly rmrkCollectionId: Compact<u32>;1200 readonly rmrkCollectionId: Compact<u32>;
1169 readonly maybeNftId: Option<u32>;1201 readonly maybeNftId: Option<u32>;
1170 readonly key: Bytes;1202 readonly key: Bytes;
1171 readonly value: Bytes;1203 readonly value: Bytes;
1172 } & Struct;1204 } & Struct;
1205 readonly isSetPriority: boolean;
1206 readonly asSetPriority: {
1207 readonly rmrkCollectionId: u32;
1208 readonly rmrkNftId: u32;
1209 readonly priorities: Vec<u32>;
1210 } & Struct;
1173 readonly isAddBasicResource: boolean;1211 readonly isAddBasicResource: boolean;
1174 readonly asAddBasicResource: {1212 readonly asAddBasicResource: {
1175 readonly collectionId: u32;1213 readonly rmrkCollectionId: u32;
1176 readonly nftId: u32;1214 readonly nftId: u32;
1177 readonly resource: UpDataStructsRmrkBasicResource;1215 readonly resource: RmrkTraitsResourceBasicResource;
1178 } & Struct;1216 } & Struct;
1179 readonly isAddComposableResource: boolean;1217 readonly isAddComposableResource: boolean;
1180 readonly asAddComposableResource: {1218 readonly asAddComposableResource: {
1181 readonly collectionId: u32;1219 readonly rmrkCollectionId: u32;
1182 readonly nftId: u32;1220 readonly nftId: u32;
1183 readonly resourceId: Bytes;1221 readonly resourceId: Bytes;
1184 readonly resource: UpDataStructsRmrkComposableResource;1222 readonly resource: RmrkTraitsResourceComposableResource;
1185 } & Struct;1223 } & Struct;
1186 readonly isAddSlotResource: boolean;1224 readonly isAddSlotResource: boolean;
1187 readonly asAddSlotResource: {1225 readonly asAddSlotResource: {
1188 readonly collectionId: u32;1226 readonly rmrkCollectionId: u32;
1189 readonly nftId: u32;1227 readonly nftId: u32;
1190 readonly resource: UpDataStructsRmrkSlotResource;1228 readonly resource: RmrkTraitsResourceSlotResource;
1191 } & Struct;1229 } & Struct;
1230 readonly isRemoveResource: boolean;
1231 readonly asRemoveResource: {
1232 readonly rmrkCollectionId: u32;
1233 readonly nftId: u32;
1234 readonly resourceId: u32;
1235 } & Struct;
1192 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource';1236 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
1193}1237}
11941238
1195/** @name PalletRmrkCoreError */1239/** @name PalletRmrkCoreError */
1203 readonly isNoAvailableNftId: boolean;1247 readonly isNoAvailableNftId: boolean;
1204 readonly isCollectionUnknown: boolean;1248 readonly isCollectionUnknown: boolean;
1205 readonly isNoPermission: boolean;1249 readonly isNoPermission: boolean;
1250 readonly isNonTransferable: boolean;
1206 readonly isCollectionFullOrLocked: boolean;1251 readonly isCollectionFullOrLocked: boolean;
1252 readonly isResourceDoesntExist: boolean;
1253 readonly isCannotSendToDescendentOrSelf: boolean;
1254 readonly isCannotAcceptNonOwnedNft: boolean;
1255 readonly isCannotRejectNonOwnedNft: boolean;
1256 readonly isResourceNotPending: boolean;
1207 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';1257 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'ResourceNotPending';
1208}1258}
12091259
1210/** @name PalletRmrkCoreEvent */1260/** @name PalletRmrkCoreEvent */
1241 readonly owner: AccountId32;1291 readonly owner: AccountId32;
1242 readonly nftId: u32;1292 readonly nftId: u32;
1243 } & Struct;1293 } & Struct;
1294 readonly isNftSent: boolean;
1295 readonly asNftSent: {
1296 readonly sender: AccountId32;
1297 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;
1298 readonly collectionId: u32;
1299 readonly nftId: u32;
1300 readonly approvalRequired: bool;
1301 } & Struct;
1302 readonly isNftAccepted: boolean;
1303 readonly asNftAccepted: {
1304 readonly sender: AccountId32;
1305 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;
1306 readonly collectionId: u32;
1307 readonly nftId: u32;
1308 } & Struct;
1309 readonly isNftRejected: boolean;
1310 readonly asNftRejected: {
1311 readonly sender: AccountId32;
1312 readonly collectionId: u32;
1313 readonly nftId: u32;
1314 } & Struct;
1244 readonly isPropertySet: boolean;1315 readonly isPropertySet: boolean;
1245 readonly asPropertySet: {1316 readonly asPropertySet: {
1246 readonly collectionId: u32;1317 readonly collectionId: u32;
1253 readonly nftId: u32;1324 readonly nftId: u32;
1254 readonly resourceId: u32;1325 readonly resourceId: u32;
1255 } & Struct;1326 } & Struct;
1327 readonly isResourceRemoval: boolean;
1328 readonly asResourceRemoval: {
1329 readonly nftId: u32;
1330 readonly resourceId: u32;
1331 } & Struct;
1332 readonly isResourceAccepted: boolean;
1333 readonly asResourceAccepted: {
1334 readonly nftId: u32;
1335 readonly resourceId: u32;
1336 } & Struct;
1337 readonly isResourceRemovalAccepted: boolean;
1338 readonly asResourceRemovalAccepted: {
1339 readonly nftId: u32;
1340 readonly resourceId: u32;
1341 } & Struct;
1342 readonly isPrioritySet: boolean;
1343 readonly asPrioritySet: {
1344 readonly collectionId: u32;
1345 readonly nftId: u32;
1346 } & Struct;
1256 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet' | 'ResourceAdded';1347 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
1257}1348}
12581349
1259/** @name PalletRmrkEquipCall */1350/** @name PalletRmrkEquipCall */
1262 readonly asCreateBase: {1353 readonly asCreateBase: {
1263 readonly baseType: Bytes;1354 readonly baseType: Bytes;
1264 readonly symbol: Bytes;1355 readonly symbol: Bytes;
1265 readonly parts: Vec<UpDataStructsRmrkPartType>;1356 readonly parts: Vec<RmrkTraitsPartPartType>;
1266 } & Struct;1357 } & Struct;
1267 readonly isThemeAdd: boolean;1358 readonly isThemeAdd: boolean;
1268 readonly asThemeAdd: {1359 readonly asThemeAdd: {
1269 readonly baseId: u32;1360 readonly baseId: u32;
1270 readonly theme: UpDataStructsRmrkTheme;1361 readonly theme: RmrkTraitsTheme;
1271 } & Struct;1362 } & Struct;
1272 readonly type: 'CreateBase' | 'ThemeAdd';1363 readonly type: 'CreateBase' | 'ThemeAdd';
1273}1364}
1751}1842}
17521843
1753/** @name PhantomTypeUpDataStructs */1844/** @name PhantomTypeUpDataStructs */
1754export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsRmrkNftChild]>> {}1845export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
17551846
1756/** @name PolkadotCorePrimitivesInboundDownwardMessage */1847/** @name PolkadotCorePrimitivesInboundDownwardMessage */
1757export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1848export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1816 readonly type: 'Present';1907 readonly type: 'Present';
1817}1908}
1909
1910/** @name RmrkTraitsBaseBaseInfo */
1911export interface RmrkTraitsBaseBaseInfo extends Struct {
1912 readonly issuer: AccountId32;
1913 readonly baseType: Bytes;
1914 readonly symbol: Bytes;
1915}
1916
1917/** @name RmrkTraitsCollectionCollectionInfo */
1918export interface RmrkTraitsCollectionCollectionInfo extends Struct {
1919 readonly issuer: AccountId32;
1920 readonly metadata: Bytes;
1921 readonly max: Option<u32>;
1922 readonly symbol: Bytes;
1923 readonly nftsCount: u32;
1924}
1925
1926/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */
1927export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
1928 readonly isAccountId: boolean;
1929 readonly asAccountId: AccountId32;
1930 readonly isCollectionAndNftTuple: boolean;
1931 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
1932 readonly type: 'AccountId' | 'CollectionAndNftTuple';
1933}
1934
1935/** @name RmrkTraitsNftNftChild */
1936export interface RmrkTraitsNftNftChild extends Struct {
1937 readonly collectionId: u32;
1938 readonly nftId: u32;
1939}
1940
1941/** @name RmrkTraitsNftNftInfo */
1942export interface RmrkTraitsNftNftInfo extends Struct {
1943 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
1944 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
1945 readonly metadata: Bytes;
1946 readonly equipped: bool;
1947 readonly pending: bool;
1948}
1949
1950/** @name RmrkTraitsNftRoyaltyInfo */
1951export interface RmrkTraitsNftRoyaltyInfo extends Struct {
1952 readonly recipient: AccountId32;
1953 readonly amount: Permill;
1954}
1955
1956/** @name RmrkTraitsPartEquippableList */
1957export interface RmrkTraitsPartEquippableList extends Enum {
1958 readonly isAll: boolean;
1959 readonly isEmpty: boolean;
1960 readonly isCustom: boolean;
1961 readonly asCustom: Vec<u32>;
1962 readonly type: 'All' | 'Empty' | 'Custom';
1963}
1964
1965/** @name RmrkTraitsPartFixedPart */
1966export interface RmrkTraitsPartFixedPart extends Struct {
1967 readonly id: u32;
1968 readonly z: u32;
1969 readonly src: Bytes;
1970}
1971
1972/** @name RmrkTraitsPartPartType */
1973export interface RmrkTraitsPartPartType extends Enum {
1974 readonly isFixedPart: boolean;
1975 readonly asFixedPart: RmrkTraitsPartFixedPart;
1976 readonly isSlotPart: boolean;
1977 readonly asSlotPart: RmrkTraitsPartSlotPart;
1978 readonly type: 'FixedPart' | 'SlotPart';
1979}
1980
1981/** @name RmrkTraitsPartSlotPart */
1982export interface RmrkTraitsPartSlotPart extends Struct {
1983 readonly id: u32;
1984 readonly equippable: RmrkTraitsPartEquippableList;
1985 readonly src: Bytes;
1986 readonly z: u32;
1987}
1988
1989/** @name RmrkTraitsPropertyPropertyInfo */
1990export interface RmrkTraitsPropertyPropertyInfo extends Struct {
1991 readonly key: Bytes;
1992 readonly value: Bytes;
1993}
1994
1995/** @name RmrkTraitsResourceBasicResource */
1996export interface RmrkTraitsResourceBasicResource extends Struct {
1997 readonly src: Option<Bytes>;
1998 readonly metadata: Option<Bytes>;
1999 readonly license: Option<Bytes>;
2000 readonly thumb: Option<Bytes>;
2001}
2002
2003/** @name RmrkTraitsResourceComposableResource */
2004export interface RmrkTraitsResourceComposableResource extends Struct {
2005 readonly parts: Vec<u32>;
2006 readonly base: u32;
2007 readonly src: Option<Bytes>;
2008 readonly metadata: Option<Bytes>;
2009 readonly license: Option<Bytes>;
2010 readonly thumb: Option<Bytes>;
2011}
2012
2013/** @name RmrkTraitsResourceResourceInfo */
2014export interface RmrkTraitsResourceResourceInfo extends Struct {
2015 readonly id: u32;
2016 readonly resource: RmrkTraitsResourceResourceTypes;
2017 readonly pending: bool;
2018 readonly pendingRemoval: bool;
2019}
2020
2021/** @name RmrkTraitsResourceResourceTypes */
2022export interface RmrkTraitsResourceResourceTypes extends Enum {
2023 readonly isBasic: boolean;
2024 readonly asBasic: RmrkTraitsResourceBasicResource;
2025 readonly isComposable: boolean;
2026 readonly asComposable: RmrkTraitsResourceComposableResource;
2027 readonly isSlot: boolean;
2028 readonly asSlot: RmrkTraitsResourceSlotResource;
2029 readonly type: 'Basic' | 'Composable' | 'Slot';
2030}
2031
2032/** @name RmrkTraitsResourceSlotResource */
2033export interface RmrkTraitsResourceSlotResource extends Struct {
2034 readonly base: u32;
2035 readonly src: Option<Bytes>;
2036 readonly metadata: Option<Bytes>;
2037 readonly slot: u32;
2038 readonly license: Option<Bytes>;
2039 readonly thumb: Option<Bytes>;
2040}
2041
2042/** @name RmrkTraitsTheme */
2043export interface RmrkTraitsTheme extends Struct {
2044 readonly name: Bytes;
2045 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
2046 readonly inherit: bool;
2047}
2048
2049/** @name RmrkTraitsThemeThemeProperty */
2050export interface RmrkTraitsThemeThemeProperty extends Struct {
2051 readonly key: Bytes;
2052 readonly value: Bytes;
2053}
18182054
1819/** @name SpCoreEcdsaSignature */2055/** @name SpCoreEcdsaSignature */
1820export interface SpCoreEcdsaSignature extends U8aFixed {}2056export interface SpCoreEcdsaSignature extends U8aFixed {}
1941 readonly sponsorship: UpDataStructsSponsorshipState;2177 readonly sponsorship: UpDataStructsSponsorshipState;
1942 readonly limits: UpDataStructsCollectionLimits;2178 readonly limits: UpDataStructsCollectionLimits;
1943 readonly permissions: UpDataStructsCollectionPermissions;2179 readonly permissions: UpDataStructsCollectionPermissions;
2180 readonly externalCollection: bool;
1944}2181}
19452182
1946/** @name UpDataStructsCollectionLimits */2183/** @name UpDataStructsCollectionLimits */
2086 readonly tokenOwner: bool;2323 readonly tokenOwner: bool;
2087}2324}
2088
2089/** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple */
2090export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
2091 readonly isAccountId: boolean;
2092 readonly asAccountId: AccountId32;
2093 readonly isCollectionAndNftTuple: boolean;
2094 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
2095 readonly type: 'AccountId' | 'CollectionAndNftTuple';
2096}
2097
2098/** @name UpDataStructsRmrkBaseInfo */
2099export interface UpDataStructsRmrkBaseInfo extends Struct {
2100 readonly issuer: AccountId32;
2101 readonly baseType: Bytes;
2102 readonly symbol: Bytes;
2103}
2104
2105/** @name UpDataStructsRmrkBasicResource */
2106export interface UpDataStructsRmrkBasicResource extends Struct {
2107 readonly src: Option<Bytes>;
2108 readonly metadata: Option<Bytes>;
2109 readonly license: Option<Bytes>;
2110 readonly thumb: Option<Bytes>;
2111}
2112
2113/** @name UpDataStructsRmrkCollectionInfo */
2114export interface UpDataStructsRmrkCollectionInfo extends Struct {
2115 readonly issuer: AccountId32;
2116 readonly metadata: Bytes;
2117 readonly max: Option<u32>;
2118 readonly symbol: Bytes;
2119 readonly nftsCount: u32;
2120}
2121
2122/** @name UpDataStructsRmrkComposableResource */
2123export interface UpDataStructsRmrkComposableResource extends Struct {
2124 readonly parts: Vec<u32>;
2125 readonly base: u32;
2126 readonly src: Option<Bytes>;
2127 readonly metadata: Option<Bytes>;
2128 readonly license: Option<Bytes>;
2129 readonly thumb: Option<Bytes>;
2130}
2131
2132/** @name UpDataStructsRmrkEquippableList */
2133export interface UpDataStructsRmrkEquippableList extends Enum {
2134 readonly isAll: boolean;
2135 readonly isEmpty: boolean;
2136 readonly isCustom: boolean;
2137 readonly asCustom: Vec<u32>;
2138 readonly type: 'All' | 'Empty' | 'Custom';
2139}
2140
2141/** @name UpDataStructsRmrkFixedPart */
2142export interface UpDataStructsRmrkFixedPart extends Struct {
2143 readonly id: u32;
2144 readonly z: u32;
2145 readonly src: Bytes;
2146}
2147
2148/** @name UpDataStructsRmrkNftChild */
2149export interface UpDataStructsRmrkNftChild extends Struct {
2150 readonly collectionId: u32;
2151 readonly nftId: u32;
2152}
2153
2154/** @name UpDataStructsRmrkNftInfo */
2155export interface UpDataStructsRmrkNftInfo extends Struct {
2156 readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
2157 readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
2158 readonly metadata: Bytes;
2159 readonly equipped: bool;
2160 readonly pending: bool;
2161}
2162
2163/** @name UpDataStructsRmrkPartType */
2164export interface UpDataStructsRmrkPartType extends Enum {
2165 readonly isFixedPart: boolean;
2166 readonly asFixedPart: UpDataStructsRmrkFixedPart;
2167 readonly isSlotPart: boolean;
2168 readonly asSlotPart: UpDataStructsRmrkSlotPart;
2169 readonly type: 'FixedPart' | 'SlotPart';
2170}
2171
2172/** @name UpDataStructsRmrkPropertyInfo */
2173export interface UpDataStructsRmrkPropertyInfo extends Struct {
2174 readonly key: Bytes;
2175 readonly value: Bytes;
2176}
2177
2178/** @name UpDataStructsRmrkResourceInfo */
2179export interface UpDataStructsRmrkResourceInfo extends Struct {
2180 readonly id: u32;
2181 readonly resource: UpDataStructsRmrkResourceTypes;
2182 readonly pending: bool;
2183 readonly pendingRemoval: bool;
2184}
2185
2186/** @name UpDataStructsRmrkResourceTypes */
2187export interface UpDataStructsRmrkResourceTypes extends Enum {
2188 readonly isBasic: boolean;
2189 readonly asBasic: UpDataStructsRmrkBasicResource;
2190 readonly isComposable: boolean;
2191 readonly asComposable: UpDataStructsRmrkComposableResource;
2192 readonly isSlot: boolean;
2193 readonly asSlot: UpDataStructsRmrkSlotResource;
2194 readonly type: 'Basic' | 'Composable' | 'Slot';
2195}
2196
2197/** @name UpDataStructsRmrkRoyaltyInfo */
2198export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
2199 readonly recipient: AccountId32;
2200 readonly amount: Permill;
2201}
2202
2203/** @name UpDataStructsRmrkSlotPart */
2204export interface UpDataStructsRmrkSlotPart extends Struct {
2205 readonly id: u32;
2206 readonly equippable: UpDataStructsRmrkEquippableList;
2207 readonly src: Bytes;
2208 readonly z: u32;
2209}
2210
2211/** @name UpDataStructsRmrkSlotResource */
2212export interface UpDataStructsRmrkSlotResource extends Struct {
2213 readonly base: u32;
2214 readonly src: Option<Bytes>;
2215 readonly metadata: Option<Bytes>;
2216 readonly slot: u32;
2217 readonly license: Option<Bytes>;
2218 readonly thumb: Option<Bytes>;
2219}
2220
2221/** @name UpDataStructsRmrkTheme */
2222export interface UpDataStructsRmrkTheme extends Struct {
2223 readonly name: Bytes;
2224 readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
2225 readonly inherit: bool;
2226}
2227
2228/** @name UpDataStructsRmrkThemeProperty */
2229export interface UpDataStructsRmrkThemeProperty extends Struct {
2230 readonly key: Bytes;
2231 readonly value: Bytes;
2232}
22332325
2234/** @name UpDataStructsRpcCollection */2326/** @name UpDataStructsRpcCollection */
2235export interface UpDataStructsRpcCollection extends Struct {2327export interface UpDataStructsRpcCollection extends Struct {
2243 readonly permissions: UpDataStructsCollectionPermissions;2335 readonly permissions: UpDataStructsCollectionPermissions;
2244 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2336 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
2245 readonly properties: Vec<UpDataStructsProperty>;2337 readonly properties: Vec<UpDataStructsProperty>;
2338 readonly readOnly: bool;
2246}2339}
22472340
2248/** @name UpDataStructsSponsoringRateLimit */2341/** @name UpDataStructsSponsoringRateLimit */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
1553 recipient: 'Option<AccountId32>',1553 recipient: 'Option<AccountId32>',
1554 royaltyAmount: 'Option<Permill>',1554 royaltyAmount: 'Option<Permill>',
1555 metadata: 'Bytes',1555 metadata: 'Bytes',
1556 transferable: 'bool',
1556 },1557 },
1557 burn_nft: {1558 burn_nft: {
1558 collectionId: 'u32',1559 collectionId: 'u32',
1559 nftId: 'u32',1560 nftId: 'u32',
1560 },1561 },
1562 send: {
1563 rmrkCollectionId: 'u32',
1564 rmrkNftId: 'u32',
1565 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
1566 },
1567 accept_nft: {
1568 rmrkCollectionId: 'u32',
1569 rmrkNftId: 'u32',
1570 newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
1571 },
1572 reject_nft: {
1573 rmrkCollectionId: 'u32',
1574 rmrkNftId: 'u32',
1575 },
1576 accept_resource: {
1577 rmrkCollectionId: 'u32',
1578 rmrkNftId: 'u32',
1579 rmrkResourceId: 'u32',
1580 },
1581 accept_resource_removal: {
1582 rmrkCollectionId: 'u32',
1583 rmrkNftId: 'u32',
1584 rmrkResourceId: 'u32',
1585 },
1561 set_property: {1586 set_property: {
1562 rmrkCollectionId: 'Compact<u32>',1587 rmrkCollectionId: 'Compact<u32>',
1563 maybeNftId: 'Option<u32>',1588 maybeNftId: 'Option<u32>',
1564 key: 'Bytes',1589 key: 'Bytes',
1565 value: 'Bytes',1590 value: 'Bytes',
1566 },1591 },
1592 set_priority: {
1593 rmrkCollectionId: 'u32',
1594 rmrkNftId: 'u32',
1595 priorities: 'Vec<u32>',
1596 },
1567 add_basic_resource: {1597 add_basic_resource: {
1568 collectionId: 'u32',1598 rmrkCollectionId: 'u32',
1569 nftId: 'u32',1599 nftId: 'u32',
1570 resource: 'UpDataStructsRmrkBasicResource',1600 resource: 'RmrkTraitsResourceBasicResource',
1571 },1601 },
1572 add_composable_resource: {1602 add_composable_resource: {
1573 collectionId: 'u32',1603 rmrkCollectionId: 'u32',
1574 nftId: 'u32',1604 nftId: 'u32',
1575 resourceId: 'Bytes',1605 resourceId: 'Bytes',
1576 resource: 'UpDataStructsRmrkComposableResource',1606 resource: 'RmrkTraitsResourceComposableResource',
1577 },1607 },
1578 add_slot_resource: {1608 add_slot_resource: {
1579 collectionId: 'u32',1609 rmrkCollectionId: 'u32',
1580 nftId: 'u32',1610 nftId: 'u32',
1581 resource: 'UpDataStructsRmrkSlotResource'1611 resource: 'RmrkTraitsResourceSlotResource',
1582 }1612 },
1613 remove_resource: {
1614 rmrkCollectionId: 'u32',
1615 nftId: 'u32',
1616 resourceId: 'u32'
1617 }
1583 }1618 }
1584 },1619 },
1620 /**
1621 * Lookup210: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
1622 **/
1623 RmrkTraitsNftAccountIdOrCollectionNftTuple: {
1624 _enum: {
1625 AccountId: 'AccountId32',
1626 CollectionAndNftTuple: '(u32,u32)'
1627 }
1628 },
1585 /**1629 /**
1586 * Lookup212: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>1630 * Lookup214: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1587 **/1631 **/
1588 UpDataStructsRmrkBasicResource: {1632 RmrkTraitsResourceBasicResource: {
1589 src: 'Option<Bytes>',1633 src: 'Option<Bytes>',
1590 metadata: 'Option<Bytes>',1634 metadata: 'Option<Bytes>',
1591 license: 'Option<Bytes>',1635 license: 'Option<Bytes>',
1592 thumb: 'Option<Bytes>'1636 thumb: 'Option<Bytes>'
1593 },1637 },
1594 /**1638 /**
1595 * Lookup215: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1639 * Lookup217: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
1596 **/1640 **/
1597 UpDataStructsRmrkComposableResource: {1641 RmrkTraitsResourceComposableResource: {
1598 parts: 'Vec<u32>',1642 parts: 'Vec<u32>',
1599 base: 'u32',1643 base: 'u32',
1600 src: 'Option<Bytes>',1644 src: 'Option<Bytes>',
1601 metadata: 'Option<Bytes>',1645 metadata: 'Option<Bytes>',
1602 license: 'Option<Bytes>',1646 license: 'Option<Bytes>',
1603 thumb: 'Option<Bytes>'1647 thumb: 'Option<Bytes>'
1604 },1648 },
1605 /**1649 /**
1606 * Lookup217: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>1650 * Lookup219: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1607 **/1651 **/
1608 UpDataStructsRmrkSlotResource: {1652 RmrkTraitsResourceSlotResource: {
1609 base: 'u32',1653 base: 'u32',
1610 src: 'Option<Bytes>',1654 src: 'Option<Bytes>',
1611 metadata: 'Option<Bytes>',1655 metadata: 'Option<Bytes>',
1612 slot: 'u32',1656 slot: 'u32',
1613 license: 'Option<Bytes>',1657 license: 'Option<Bytes>',
1614 thumb: 'Option<Bytes>'1658 thumb: 'Option<Bytes>'
1615 },1659 },
1616 /**1660 /**
1617 * Lookup218: pallet_rmrk_equip::pallet::Call<T>1661 * Lookup220: pallet_rmrk_equip::pallet::Call<T>
1618 **/1662 **/
1619 PalletRmrkEquipCall: {1663 PalletRmrkEquipCall: {
1620 _enum: {1664 _enum: {
1621 create_base: {1665 create_base: {
1622 baseType: 'Bytes',1666 baseType: 'Bytes',
1623 symbol: 'Bytes',1667 symbol: 'Bytes',
1624 parts: 'Vec<UpDataStructsRmrkPartType>',1668 parts: 'Vec<RmrkTraitsPartPartType>',
1625 },1669 },
1626 theme_add: {1670 theme_add: {
1627 baseId: 'u32',1671 baseId: 'u32',
1628 theme: 'UpDataStructsRmrkTheme'1672 theme: 'RmrkTraitsTheme'
1629 }1673 }
1630 }1674 }
1631 },1675 },
1632 /**1676 /**
1633 * Lookup220: up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1677 * Lookup222: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
1634 **/1678 **/
1635 UpDataStructsRmrkPartType: {1679 RmrkTraitsPartPartType: {
1636 _enum: {1680 _enum: {
1637 FixedPart: 'UpDataStructsRmrkFixedPart',1681 FixedPart: 'RmrkTraitsPartFixedPart',
1638 SlotPart: 'UpDataStructsRmrkSlotPart'1682 SlotPart: 'RmrkTraitsPartSlotPart'
1639 }1683 }
1640 },1684 },
1641 /**1685 /**
1642 * Lookup222: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>1686 * Lookup224: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1643 **/1687 **/
1644 UpDataStructsRmrkFixedPart: {1688 RmrkTraitsPartFixedPart: {
1645 id: 'u32',1689 id: 'u32',
1646 z: 'u32',1690 z: 'u32',
1647 src: 'Bytes'1691 src: 'Bytes'
1648 },1692 },
1649 /**1693 /**
1650 * Lookup223: up_data_structs::rmrk::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>1694 * Lookup225: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
1651 **/1695 **/
1652 UpDataStructsRmrkSlotPart: {1696 RmrkTraitsPartSlotPart: {
1653 id: 'u32',1697 id: 'u32',
1654 equippable: 'UpDataStructsRmrkEquippableList',1698 equippable: 'RmrkTraitsPartEquippableList',
1655 src: 'Bytes',1699 src: 'Bytes',
1656 z: 'u32'1700 z: 'u32'
1657 },1701 },
1658 /**1702 /**
1659 * Lookup224: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>1703 * Lookup226: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1660 **/1704 **/
1661 UpDataStructsRmrkEquippableList: {1705 RmrkTraitsPartEquippableList: {
1662 _enum: {1706 _enum: {
1663 All: 'Null',1707 All: 'Null',
1664 Empty: 'Null',1708 Empty: 'Null',
1665 Custom: 'Vec<u32>'1709 Custom: 'Vec<u32>'
1666 }1710 }
1667 },1711 },
1668 /**1712 /**
1669 * Lookup226: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>1713 * Lookup228: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
1670 **/1714 **/
1671 UpDataStructsRmrkTheme: {1715 RmrkTraitsTheme: {
1672 name: 'Bytes',1716 name: 'Bytes',
1673 properties: 'Vec<UpDataStructsRmrkThemeProperty>',1717 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
1674 inherit: 'bool'1718 inherit: 'bool'
1675 },1719 },
1676 /**1720 /**
1677 * Lookup228: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>1721 * Lookup230: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
1678 **/1722 **/
1679 UpDataStructsRmrkThemeProperty: {1723 RmrkTraitsThemeThemeProperty: {
1680 key: 'Bytes',1724 key: 'Bytes',
1681 value: 'Bytes'1725 value: 'Bytes'
1682 },1726 },
1683 /**1727 /**
1684 * Lookup229: pallet_evm::pallet::Call<T>1728 * Lookup231: pallet_evm::pallet::Call<T>
1685 **/1729 **/
1686 PalletEvmCall: {1730 PalletEvmCall: {
1687 _enum: {1731 _enum: {
1688 withdraw: {1732 withdraw: {
1723 }1767 }
1724 }1768 }
1725 },1769 },
1726 /**1770 /**
1727 * Lookup235: pallet_ethereum::pallet::Call<T>1771 * Lookup237: pallet_ethereum::pallet::Call<T>
1728 **/1772 **/
1729 PalletEthereumCall: {1773 PalletEthereumCall: {
1730 _enum: {1774 _enum: {
1731 transact: {1775 transact: {
1732 transaction: 'EthereumTransactionTransactionV2'1776 transaction: 'EthereumTransactionTransactionV2'
1733 }1777 }
1734 }1778 }
1735 },1779 },
1736 /**1780 /**
1737 * Lookup236: ethereum::transaction::TransactionV21781 * Lookup238: ethereum::transaction::TransactionV2
1738 **/1782 **/
1739 EthereumTransactionTransactionV2: {1783 EthereumTransactionTransactionV2: {
1740 _enum: {1784 _enum: {
1741 Legacy: 'EthereumTransactionLegacyTransaction',1785 Legacy: 'EthereumTransactionLegacyTransaction',
1742 EIP2930: 'EthereumTransactionEip2930Transaction',1786 EIP2930: 'EthereumTransactionEip2930Transaction',
1743 EIP1559: 'EthereumTransactionEip1559Transaction'1787 EIP1559: 'EthereumTransactionEip1559Transaction'
1744 }1788 }
1745 },1789 },
1746 /**1790 /**
1747 * Lookup237: ethereum::transaction::LegacyTransaction1791 * Lookup239: ethereum::transaction::LegacyTransaction
1748 **/1792 **/
1749 EthereumTransactionLegacyTransaction: {1793 EthereumTransactionLegacyTransaction: {
1750 nonce: 'U256',1794 nonce: 'U256',
1751 gasPrice: 'U256',1795 gasPrice: 'U256',
1755 input: 'Bytes',1799 input: 'Bytes',
1756 signature: 'EthereumTransactionTransactionSignature'1800 signature: 'EthereumTransactionTransactionSignature'
1757 },1801 },
1758 /**1802 /**
1759 * Lookup238: ethereum::transaction::TransactionAction1803 * Lookup240: ethereum::transaction::TransactionAction
1760 **/1804 **/
1761 EthereumTransactionTransactionAction: {1805 EthereumTransactionTransactionAction: {
1762 _enum: {1806 _enum: {
1763 Call: 'H160',1807 Call: 'H160',
1764 Create: 'Null'1808 Create: 'Null'
1765 }1809 }
1766 },1810 },
1767 /**1811 /**
1768 * Lookup239: ethereum::transaction::TransactionSignature1812 * Lookup241: ethereum::transaction::TransactionSignature
1769 **/1813 **/
1770 EthereumTransactionTransactionSignature: {1814 EthereumTransactionTransactionSignature: {
1771 v: 'u64',1815 v: 'u64',
1772 r: 'H256',1816 r: 'H256',
1773 s: 'H256'1817 s: 'H256'
1774 },1818 },
1775 /**1819 /**
1776 * Lookup241: ethereum::transaction::EIP2930Transaction1820 * Lookup243: ethereum::transaction::EIP2930Transaction
1777 **/1821 **/
1778 EthereumTransactionEip2930Transaction: {1822 EthereumTransactionEip2930Transaction: {
1779 chainId: 'u64',1823 chainId: 'u64',
1780 nonce: 'U256',1824 nonce: 'U256',
1788 r: 'H256',1832 r: 'H256',
1789 s: 'H256'1833 s: 'H256'
1790 },1834 },
1791 /**1835 /**
1792 * Lookup243: ethereum::transaction::AccessListItem1836 * Lookup245: ethereum::transaction::AccessListItem
1793 **/1837 **/
1794 EthereumTransactionAccessListItem: {1838 EthereumTransactionAccessListItem: {
1795 address: 'H160',1839 address: 'H160',
1796 storageKeys: 'Vec<H256>'1840 storageKeys: 'Vec<H256>'
1797 },1841 },
1798 /**1842 /**
1799 * Lookup244: ethereum::transaction::EIP1559Transaction1843 * Lookup246: ethereum::transaction::EIP1559Transaction
1800 **/1844 **/
1801 EthereumTransactionEip1559Transaction: {1845 EthereumTransactionEip1559Transaction: {
1802 chainId: 'u64',1846 chainId: 'u64',
1803 nonce: 'U256',1847 nonce: 'U256',
1812 r: 'H256',1856 r: 'H256',
1813 s: 'H256'1857 s: 'H256'
1814 },1858 },
1815 /**1859 /**
1816 * Lookup245: pallet_evm_migration::pallet::Call<T>1860 * Lookup247: pallet_evm_migration::pallet::Call<T>
1817 **/1861 **/
1818 PalletEvmMigrationCall: {1862 PalletEvmMigrationCall: {
1819 _enum: {1863 _enum: {
1820 begin: {1864 begin: {
1830 }1874 }
1831 }1875 }
1832 },1876 },
1833 /**1877 /**
1834 * Lookup248: pallet_sudo::pallet::Event<T>1878 * Lookup250: pallet_sudo::pallet::Event<T>
1835 **/1879 **/
1836 PalletSudoEvent: {1880 PalletSudoEvent: {
1837 _enum: {1881 _enum: {
1838 Sudid: {1882 Sudid: {
1846 }1890 }
1847 }1891 }
1848 },1892 },
1849 /**1893 /**
1850 * Lookup250: sp_runtime::DispatchError1894 * Lookup252: sp_runtime::DispatchError
1851 **/1895 **/
1852 SpRuntimeDispatchError: {1896 SpRuntimeDispatchError: {
1853 _enum: {1897 _enum: {
1854 Other: 'Null',1898 Other: 'Null',
1863 Transactional: 'SpRuntimeTransactionalError'1907 Transactional: 'SpRuntimeTransactionalError'
1864 }1908 }
1865 },1909 },
1866 /**1910 /**
1867 * Lookup251: sp_runtime::ModuleError1911 * Lookup253: sp_runtime::ModuleError
1868 **/1912 **/
1869 SpRuntimeModuleError: {1913 SpRuntimeModuleError: {
1870 index: 'u8',1914 index: 'u8',
1871 error: '[u8;4]'1915 error: '[u8;4]'
1872 },1916 },
1873 /**1917 /**
1874 * Lookup252: sp_runtime::TokenError1918 * Lookup254: sp_runtime::TokenError
1875 **/1919 **/
1876 SpRuntimeTokenError: {1920 SpRuntimeTokenError: {
1877 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1921 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
1878 },1922 },
1879 /**1923 /**
1880 * Lookup253: sp_runtime::ArithmeticError1924 * Lookup255: sp_runtime::ArithmeticError
1881 **/1925 **/
1882 SpRuntimeArithmeticError: {1926 SpRuntimeArithmeticError: {
1883 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1927 _enum: ['Underflow', 'Overflow', 'DivisionByZero']
1884 },1928 },
1885 /**1929 /**
1886 * Lookup254: sp_runtime::TransactionalError1930 * Lookup256: sp_runtime::TransactionalError
1887 **/1931 **/
1888 SpRuntimeTransactionalError: {1932 SpRuntimeTransactionalError: {
1889 _enum: ['LimitReached', 'NoLayer']1933 _enum: ['LimitReached', 'NoLayer']
1890 },1934 },
1891 /**1935 /**
1892 * Lookup255: pallet_sudo::pallet::Error<T>1936 * Lookup257: pallet_sudo::pallet::Error<T>
1893 **/1937 **/
1894 PalletSudoError: {1938 PalletSudoError: {
1895 _enum: ['RequireSudo']1939 _enum: ['RequireSudo']
1896 },1940 },
1897 /**1941 /**
1898 * Lookup256: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1942 * Lookup258: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
1899 **/1943 **/
1900 FrameSystemAccountInfo: {1944 FrameSystemAccountInfo: {
1901 nonce: 'u32',1945 nonce: 'u32',
1902 consumers: 'u32',1946 consumers: 'u32',
1903 providers: 'u32',1947 providers: 'u32',
1904 sufficients: 'u32',1948 sufficients: 'u32',
1905 data: 'PalletBalancesAccountData'1949 data: 'PalletBalancesAccountData'
1906 },1950 },
1907 /**1951 /**
1908 * Lookup257: frame_support::weights::PerDispatchClass<T>1952 * Lookup259: frame_support::weights::PerDispatchClass<T>
1909 **/1953 **/
1910 FrameSupportWeightsPerDispatchClassU64: {1954 FrameSupportWeightsPerDispatchClassU64: {
1911 normal: 'u64',1955 normal: 'u64',
1912 operational: 'u64',1956 operational: 'u64',
1913 mandatory: 'u64'1957 mandatory: 'u64'
1914 },1958 },
1915 /**1959 /**
1916 * Lookup258: sp_runtime::generic::digest::Digest1960 * Lookup260: sp_runtime::generic::digest::Digest
1917 **/1961 **/
1918 SpRuntimeDigest: {1962 SpRuntimeDigest: {
1919 logs: 'Vec<SpRuntimeDigestDigestItem>'1963 logs: 'Vec<SpRuntimeDigestDigestItem>'
1920 },1964 },
1921 /**1965 /**
1922 * Lookup260: sp_runtime::generic::digest::DigestItem1966 * Lookup262: sp_runtime::generic::digest::DigestItem
1923 **/1967 **/
1924 SpRuntimeDigestDigestItem: {1968 SpRuntimeDigestDigestItem: {
1925 _enum: {1969 _enum: {
1926 Other: 'Bytes',1970 Other: 'Bytes',
1934 RuntimeEnvironmentUpdated: 'Null'1978 RuntimeEnvironmentUpdated: 'Null'
1935 }1979 }
1936 },1980 },
1937 /**1981 /**
1938 * Lookup262: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>1982 * Lookup264: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
1939 **/1983 **/
1940 FrameSystemEventRecord: {1984 FrameSystemEventRecord: {
1941 phase: 'FrameSystemPhase',1985 phase: 'FrameSystemPhase',
1942 event: 'Event',1986 event: 'Event',
1943 topics: 'Vec<H256>'1987 topics: 'Vec<H256>'
1944 },1988 },
1945 /**1989 /**
1946 * Lookup264: frame_system::pallet::Event<T>1990 * Lookup266: frame_system::pallet::Event<T>
1947 **/1991 **/
1948 FrameSystemEvent: {1992 FrameSystemEvent: {
1949 _enum: {1993 _enum: {
1950 ExtrinsicSuccess: {1994 ExtrinsicSuccess: {
1970 }2014 }
1971 }2015 }
1972 },2016 },
1973 /**2017 /**
1974 * Lookup265: frame_support::weights::DispatchInfo2018 * Lookup267: frame_support::weights::DispatchInfo
1975 **/2019 **/
1976 FrameSupportWeightsDispatchInfo: {2020 FrameSupportWeightsDispatchInfo: {
1977 weight: 'u64',2021 weight: 'u64',
1978 class: 'FrameSupportWeightsDispatchClass',2022 class: 'FrameSupportWeightsDispatchClass',
1979 paysFee: 'FrameSupportWeightsPays'2023 paysFee: 'FrameSupportWeightsPays'
1980 },2024 },
1981 /**2025 /**
1982 * Lookup266: frame_support::weights::DispatchClass2026 * Lookup268: frame_support::weights::DispatchClass
1983 **/2027 **/
1984 FrameSupportWeightsDispatchClass: {2028 FrameSupportWeightsDispatchClass: {
1985 _enum: ['Normal', 'Operational', 'Mandatory']2029 _enum: ['Normal', 'Operational', 'Mandatory']
1986 },2030 },
1987 /**2031 /**
1988 * Lookup267: frame_support::weights::Pays2032 * Lookup269: frame_support::weights::Pays
1989 **/2033 **/
1990 FrameSupportWeightsPays: {2034 FrameSupportWeightsPays: {
1991 _enum: ['Yes', 'No']2035 _enum: ['Yes', 'No']
1992 },2036 },
1993 /**2037 /**
1994 * Lookup268: orml_vesting::module::Event<T>2038 * Lookup270: orml_vesting::module::Event<T>
1995 **/2039 **/
1996 OrmlVestingModuleEvent: {2040 OrmlVestingModuleEvent: {
1997 _enum: {2041 _enum: {
1998 VestingScheduleAdded: {2042 VestingScheduleAdded: {
2009 }2053 }
2010 }2054 }
2011 },2055 },
2012 /**2056 /**
2013 * Lookup269: cumulus_pallet_xcmp_queue::pallet::Event<T>2057 * Lookup271: cumulus_pallet_xcmp_queue::pallet::Event<T>
2014 **/2058 **/
2015 CumulusPalletXcmpQueueEvent: {2059 CumulusPalletXcmpQueueEvent: {
2016 _enum: {2060 _enum: {
2017 Success: 'Option<H256>',2061 Success: 'Option<H256>',
2024 OverweightServiced: '(u64,u64)'2068 OverweightServiced: '(u64,u64)'
2025 }2069 }
2026 },2070 },
2027 /**2071 /**
2028 * Lookup270: pallet_xcm::pallet::Event<T>2072 * Lookup272: pallet_xcm::pallet::Event<T>
2029 **/2073 **/
2030 PalletXcmEvent: {2074 PalletXcmEvent: {
2031 _enum: {2075 _enum: {
2032 Attempted: 'XcmV2TraitsOutcome',2076 Attempted: 'XcmV2TraitsOutcome',
2047 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'2091 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'
2048 }2092 }
2049 },2093 },
2050 /**2094 /**
2051 * Lookup271: xcm::v2::traits::Outcome2095 * Lookup273: xcm::v2::traits::Outcome
2052 **/2096 **/
2053 XcmV2TraitsOutcome: {2097 XcmV2TraitsOutcome: {
2054 _enum: {2098 _enum: {
2055 Complete: 'u64',2099 Complete: 'u64',
2056 Incomplete: '(u64,XcmV2TraitsError)',2100 Incomplete: '(u64,XcmV2TraitsError)',
2057 Error: 'XcmV2TraitsError'2101 Error: 'XcmV2TraitsError'
2058 }2102 }
2059 },2103 },
2060 /**2104 /**
2061 * Lookup273: cumulus_pallet_xcm::pallet::Event<T>2105 * Lookup275: cumulus_pallet_xcm::pallet::Event<T>
2062 **/2106 **/
2063 CumulusPalletXcmEvent: {2107 CumulusPalletXcmEvent: {
2064 _enum: {2108 _enum: {
2065 InvalidFormat: '[u8;8]',2109 InvalidFormat: '[u8;8]',
2066 UnsupportedVersion: '[u8;8]',2110 UnsupportedVersion: '[u8;8]',
2067 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'2111 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'
2068 }2112 }
2069 },2113 },
2070 /**2114 /**
2071 * Lookup274: cumulus_pallet_dmp_queue::pallet::Event<T>2115 * Lookup276: cumulus_pallet_dmp_queue::pallet::Event<T>
2072 **/2116 **/
2073 CumulusPalletDmpQueueEvent: {2117 CumulusPalletDmpQueueEvent: {
2074 _enum: {2118 _enum: {
2075 InvalidFormat: '[u8;32]',2119 InvalidFormat: '[u8;32]',
2080 OverweightServiced: '(u64,u64)'2124 OverweightServiced: '(u64,u64)'
2081 }2125 }
2082 },2126 },
2083 /**2127 /**
2084 * Lookup275: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2128 * Lookup277: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2085 **/2129 **/
2086 PalletUniqueRawEvent: {2130 PalletUniqueRawEvent: {
2087 _enum: {2131 _enum: {
2088 CollectionSponsorRemoved: 'u32',2132 CollectionSponsorRemoved: 'u32',
2097 CollectionPermissionSet: 'u32'2141 CollectionPermissionSet: 'u32'
2098 }2142 }
2099 },2143 },
2100 /**2144 /**
2101 * Lookup276: pallet_common::pallet::Event<T>2145 * Lookup278: pallet_common::pallet::Event<T>
2102 **/2146 **/
2103 PalletCommonEvent: {2147 PalletCommonEvent: {
2104 _enum: {2148 _enum: {
2105 CollectionCreated: '(u32,u8,AccountId32)',2149 CollectionCreated: '(u32,u8,AccountId32)',
2115 PropertyPermissionSet: '(u32,Bytes)'2159 PropertyPermissionSet: '(u32,Bytes)'
2116 }2160 }
2117 },2161 },
2118 /**2162 /**
2119 * Lookup277: pallet_structure::pallet::Event<T>2163 * Lookup279: pallet_structure::pallet::Event<T>
2120 **/2164 **/
2121 PalletStructureEvent: {2165 PalletStructureEvent: {
2122 _enum: {2166 _enum: {
2123 Executed: 'Result<Null, SpRuntimeDispatchError>'2167 Executed: 'Result<Null, SpRuntimeDispatchError>'
2124 }2168 }
2125 },2169 },
2126 /**2170 /**
2127 * Lookup278: pallet_rmrk_core::pallet::Event<T>2171 * Lookup280: pallet_rmrk_core::pallet::Event<T>
2128 **/2172 **/
2129 PalletRmrkCoreEvent: {2173 PalletRmrkCoreEvent: {
2130 _enum: {2174 _enum: {
2131 CollectionCreated: {2175 CollectionCreated: {
2154 owner: 'AccountId32',2198 owner: 'AccountId32',
2155 nftId: 'u32',2199 nftId: 'u32',
2156 },2200 },
2201 NFTSent: {
2202 sender: 'AccountId32',
2203 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
2204 collectionId: 'u32',
2205 nftId: 'u32',
2206 approvalRequired: 'bool',
2207 },
2208 NFTAccepted: {
2209 sender: 'AccountId32',
2210 recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
2211 collectionId: 'u32',
2212 nftId: 'u32',
2213 },
2214 NFTRejected: {
2215 sender: 'AccountId32',
2216 collectionId: 'u32',
2217 nftId: 'u32',
2218 },
2157 PropertySet: {2219 PropertySet: {
2158 collectionId: 'u32',2220 collectionId: 'u32',
2159 maybeNftId: 'Option<u32>',2221 maybeNftId: 'Option<u32>',
2163 ResourceAdded: {2225 ResourceAdded: {
2164 nftId: 'u32',2226 nftId: 'u32',
2165 resourceId: 'u32'2227 resourceId: 'u32',
2166 }2228 },
2229 ResourceRemoval: {
2230 nftId: 'u32',
2231 resourceId: 'u32',
2232 },
2233 ResourceAccepted: {
2234 nftId: 'u32',
2235 resourceId: 'u32',
2236 },
2237 ResourceRemovalAccepted: {
2238 nftId: 'u32',
2239 resourceId: 'u32',
2240 },
2241 PrioritySet: {
2242 collectionId: 'u32',
2243 nftId: 'u32'
2244 }
2167 }2245 }
2168 },2246 },
2169 /**2247 /**
2170 * Lookup279: pallet_rmrk_equip::pallet::Event<T>2248 * Lookup281: pallet_rmrk_equip::pallet::Event<T>
2171 **/2249 **/
2172 PalletRmrkEquipEvent: {2250 PalletRmrkEquipEvent: {
2173 _enum: {2251 _enum: {
2174 BaseCreated: {2252 BaseCreated: {
2177 }2255 }
2178 }2256 }
2179 },2257 },
2180 /**2258 /**
2181 * Lookup280: pallet_evm::pallet::Event<T>2259 * Lookup282: pallet_evm::pallet::Event<T>
2182 **/2260 **/
2183 PalletEvmEvent: {2261 PalletEvmEvent: {
2184 _enum: {2262 _enum: {
2185 Log: 'EthereumLog',2263 Log: 'EthereumLog',
2191 BalanceWithdraw: '(AccountId32,H160,U256)'2269 BalanceWithdraw: '(AccountId32,H160,U256)'
2192 }2270 }
2193 },2271 },
2194 /**2272 /**
2195 * Lookup281: ethereum::log::Log2273 * Lookup283: ethereum::log::Log
2196 **/2274 **/
2197 EthereumLog: {2275 EthereumLog: {
2198 address: 'H160',2276 address: 'H160',
2199 topics: 'Vec<H256>',2277 topics: 'Vec<H256>',
2200 data: 'Bytes'2278 data: 'Bytes'
2201 },2279 },
2202 /**2280 /**
2203 * Lookup282: pallet_ethereum::pallet::Event2281 * Lookup284: pallet_ethereum::pallet::Event
2204 **/2282 **/
2205 PalletEthereumEvent: {2283 PalletEthereumEvent: {
2206 _enum: {2284 _enum: {
2207 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'2285 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'
2208 }2286 }
2209 },2287 },
2210 /**2288 /**
2211 * Lookup283: evm_core::error::ExitReason2289 * Lookup285: evm_core::error::ExitReason
2212 **/2290 **/
2213 EvmCoreErrorExitReason: {2291 EvmCoreErrorExitReason: {
2214 _enum: {2292 _enum: {
2215 Succeed: 'EvmCoreErrorExitSucceed',2293 Succeed: 'EvmCoreErrorExitSucceed',
2218 Fatal: 'EvmCoreErrorExitFatal'2296 Fatal: 'EvmCoreErrorExitFatal'
2219 }2297 }
2220 },2298 },
2221 /**2299 /**
2222 * Lookup284: evm_core::error::ExitSucceed2300 * Lookup286: evm_core::error::ExitSucceed
2223 **/2301 **/
2224 EvmCoreErrorExitSucceed: {2302 EvmCoreErrorExitSucceed: {
2225 _enum: ['Stopped', 'Returned', 'Suicided']2303 _enum: ['Stopped', 'Returned', 'Suicided']
2226 },2304 },
2227 /**2305 /**
2228 * Lookup285: evm_core::error::ExitError2306 * Lookup287: evm_core::error::ExitError
2229 **/2307 **/
2230 EvmCoreErrorExitError: {2308 EvmCoreErrorExitError: {
2231 _enum: {2309 _enum: {
2232 StackUnderflow: 'Null',2310 StackUnderflow: 'Null',
2246 InvalidCode: 'Null'2324 InvalidCode: 'Null'
2247 }2325 }
2248 },2326 },
2249 /**2327 /**
2250 * Lookup288: evm_core::error::ExitRevert2328 * Lookup290: evm_core::error::ExitRevert
2251 **/2329 **/
2252 EvmCoreErrorExitRevert: {2330 EvmCoreErrorExitRevert: {
2253 _enum: ['Reverted']2331 _enum: ['Reverted']
2254 },2332 },
2255 /**2333 /**
2256 * Lookup289: evm_core::error::ExitFatal2334 * Lookup291: evm_core::error::ExitFatal
2257 **/2335 **/
2258 EvmCoreErrorExitFatal: {2336 EvmCoreErrorExitFatal: {
2259 _enum: {2337 _enum: {
2260 NotSupported: 'Null',2338 NotSupported: 'Null',
2263 Other: 'Text'2341 Other: 'Text'
2264 }2342 }
2265 },2343 },
2266 /**2344 /**
2267 * Lookup290: frame_system::Phase2345 * Lookup292: frame_system::Phase
2268 **/2346 **/
2269 FrameSystemPhase: {2347 FrameSystemPhase: {
2270 _enum: {2348 _enum: {
2271 ApplyExtrinsic: 'u32',2349 ApplyExtrinsic: 'u32',
2272 Finalization: 'Null',2350 Finalization: 'Null',
2273 Initialization: 'Null'2351 Initialization: 'Null'
2274 }2352 }
2275 },2353 },
2276 /**2354 /**
2277 * Lookup292: frame_system::LastRuntimeUpgradeInfo2355 * Lookup294: frame_system::LastRuntimeUpgradeInfo
2278 **/2356 **/
2279 FrameSystemLastRuntimeUpgradeInfo: {2357 FrameSystemLastRuntimeUpgradeInfo: {
2280 specVersion: 'Compact<u32>',2358 specVersion: 'Compact<u32>',
2281 specName: 'Text'2359 specName: 'Text'
2282 },2360 },
2283 /**2361 /**
2284 * Lookup293: frame_system::limits::BlockWeights2362 * Lookup295: frame_system::limits::BlockWeights
2285 **/2363 **/
2286 FrameSystemLimitsBlockWeights: {2364 FrameSystemLimitsBlockWeights: {
2287 baseBlock: 'u64',2365 baseBlock: 'u64',
2288 maxBlock: 'u64',2366 maxBlock: 'u64',
2289 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2367 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
2290 },2368 },
2291 /**2369 /**
2292 * Lookup294: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2370 * Lookup296: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
2293 **/2371 **/
2294 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2372 FrameSupportWeightsPerDispatchClassWeightsPerClass: {
2295 normal: 'FrameSystemLimitsWeightsPerClass',2373 normal: 'FrameSystemLimitsWeightsPerClass',
2296 operational: 'FrameSystemLimitsWeightsPerClass',2374 operational: 'FrameSystemLimitsWeightsPerClass',
2297 mandatory: 'FrameSystemLimitsWeightsPerClass'2375 mandatory: 'FrameSystemLimitsWeightsPerClass'
2298 },2376 },
2299 /**2377 /**
2300 * Lookup295: frame_system::limits::WeightsPerClass2378 * Lookup297: frame_system::limits::WeightsPerClass
2301 **/2379 **/
2302 FrameSystemLimitsWeightsPerClass: {2380 FrameSystemLimitsWeightsPerClass: {
2303 baseExtrinsic: 'u64',2381 baseExtrinsic: 'u64',
2304 maxExtrinsic: 'Option<u64>',2382 maxExtrinsic: 'Option<u64>',
2305 maxTotal: 'Option<u64>',2383 maxTotal: 'Option<u64>',
2306 reserved: 'Option<u64>'2384 reserved: 'Option<u64>'
2307 },2385 },
2308 /**2386 /**
2309 * Lookup297: frame_system::limits::BlockLength2387 * Lookup299: frame_system::limits::BlockLength
2310 **/2388 **/
2311 FrameSystemLimitsBlockLength: {2389 FrameSystemLimitsBlockLength: {
2312 max: 'FrameSupportWeightsPerDispatchClassU32'2390 max: 'FrameSupportWeightsPerDispatchClassU32'
2313 },2391 },
2314 /**2392 /**
2315 * Lookup298: frame_support::weights::PerDispatchClass<T>2393 * Lookup300: frame_support::weights::PerDispatchClass<T>
2316 **/2394 **/
2317 FrameSupportWeightsPerDispatchClassU32: {2395 FrameSupportWeightsPerDispatchClassU32: {
2318 normal: 'u32',2396 normal: 'u32',
2319 operational: 'u32',2397 operational: 'u32',
2320 mandatory: 'u32'2398 mandatory: 'u32'
2321 },2399 },
2322 /**2400 /**
2323 * Lookup299: frame_support::weights::RuntimeDbWeight2401 * Lookup301: frame_support::weights::RuntimeDbWeight
2324 **/2402 **/
2325 FrameSupportWeightsRuntimeDbWeight: {2403 FrameSupportWeightsRuntimeDbWeight: {
2326 read: 'u64',2404 read: 'u64',
2327 write: 'u64'2405 write: 'u64'
2328 },2406 },
2329 /**2407 /**
2330 * Lookup300: sp_version::RuntimeVersion2408 * Lookup302: sp_version::RuntimeVersion
2331 **/2409 **/
2332 SpVersionRuntimeVersion: {2410 SpVersionRuntimeVersion: {
2333 specName: 'Text',2411 specName: 'Text',
2334 implName: 'Text',2412 implName: 'Text',
2339 transactionVersion: 'u32',2417 transactionVersion: 'u32',
2340 stateVersion: 'u8'2418 stateVersion: 'u8'
2341 },2419 },
2342 /**2420 /**
2343 * Lookup304: frame_system::pallet::Error<T>2421 * Lookup306: frame_system::pallet::Error<T>
2344 **/2422 **/
2345 FrameSystemError: {2423 FrameSystemError: {
2346 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2424 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
2347 },2425 },
2348 /**2426 /**
2349 * Lookup306: orml_vesting::module::Error<T>2427 * Lookup308: orml_vesting::module::Error<T>
2350 **/2428 **/
2351 OrmlVestingModuleError: {2429 OrmlVestingModuleError: {
2352 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2430 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
2353 },2431 },
2354 /**2432 /**
2355 * Lookup308: cumulus_pallet_xcmp_queue::InboundChannelDetails2433 * Lookup310: cumulus_pallet_xcmp_queue::InboundChannelDetails
2356 **/2434 **/
2357 CumulusPalletXcmpQueueInboundChannelDetails: {2435 CumulusPalletXcmpQueueInboundChannelDetails: {
2358 sender: 'u32',2436 sender: 'u32',
2359 state: 'CumulusPalletXcmpQueueInboundState',2437 state: 'CumulusPalletXcmpQueueInboundState',
2360 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2438 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
2361 },2439 },
2362 /**2440 /**
2363 * Lookup309: cumulus_pallet_xcmp_queue::InboundState2441 * Lookup311: cumulus_pallet_xcmp_queue::InboundState
2364 **/2442 **/
2365 CumulusPalletXcmpQueueInboundState: {2443 CumulusPalletXcmpQueueInboundState: {
2366 _enum: ['Ok', 'Suspended']2444 _enum: ['Ok', 'Suspended']
2367 },2445 },
2368 /**2446 /**
2369 * Lookup312: polkadot_parachain::primitives::XcmpMessageFormat2447 * Lookup314: polkadot_parachain::primitives::XcmpMessageFormat
2370 **/2448 **/
2371 PolkadotParachainPrimitivesXcmpMessageFormat: {2449 PolkadotParachainPrimitivesXcmpMessageFormat: {
2372 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2450 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
2373 },2451 },
2374 /**2452 /**
2375 * Lookup315: cumulus_pallet_xcmp_queue::OutboundChannelDetails2453 * Lookup317: cumulus_pallet_xcmp_queue::OutboundChannelDetails
2376 **/2454 **/
2377 CumulusPalletXcmpQueueOutboundChannelDetails: {2455 CumulusPalletXcmpQueueOutboundChannelDetails: {
2378 recipient: 'u32',2456 recipient: 'u32',
2379 state: 'CumulusPalletXcmpQueueOutboundState',2457 state: 'CumulusPalletXcmpQueueOutboundState',
2380 signalsExist: 'bool',2458 signalsExist: 'bool',
2381 firstIndex: 'u16',2459 firstIndex: 'u16',
2382 lastIndex: 'u16'2460 lastIndex: 'u16'
2383 },2461 },
2384 /**2462 /**
2385 * Lookup316: cumulus_pallet_xcmp_queue::OutboundState2463 * Lookup318: cumulus_pallet_xcmp_queue::OutboundState
2386 **/2464 **/
2387 CumulusPalletXcmpQueueOutboundState: {2465 CumulusPalletXcmpQueueOutboundState: {
2388 _enum: ['Ok', 'Suspended']2466 _enum: ['Ok', 'Suspended']
2389 },2467 },
2390 /**2468 /**
2391 * Lookup318: cumulus_pallet_xcmp_queue::QueueConfigData2469 * Lookup320: cumulus_pallet_xcmp_queue::QueueConfigData
2392 **/2470 **/
2393 CumulusPalletXcmpQueueQueueConfigData: {2471 CumulusPalletXcmpQueueQueueConfigData: {
2394 suspendThreshold: 'u32',2472 suspendThreshold: 'u32',
2395 dropThreshold: 'u32',2473 dropThreshold: 'u32',
2398 weightRestrictDecay: 'u64',2476 weightRestrictDecay: 'u64',
2399 xcmpMaxIndividualWeight: 'u64'2477 xcmpMaxIndividualWeight: 'u64'
2400 },2478 },
2401 /**2479 /**
2402 * Lookup320: cumulus_pallet_xcmp_queue::pallet::Error<T>2480 * Lookup322: cumulus_pallet_xcmp_queue::pallet::Error<T>
2403 **/2481 **/
2404 CumulusPalletXcmpQueueError: {2482 CumulusPalletXcmpQueueError: {
2405 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2483 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
2406 },2484 },
2407 /**2485 /**
2408 * Lookup321: pallet_xcm::pallet::Error<T>2486 * Lookup323: pallet_xcm::pallet::Error<T>
2409 **/2487 **/
2410 PalletXcmError: {2488 PalletXcmError: {
2411 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2489 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
2412 },2490 },
2413 /**2491 /**
2414 * Lookup322: cumulus_pallet_xcm::pallet::Error<T>2492 * Lookup324: cumulus_pallet_xcm::pallet::Error<T>
2415 **/2493 **/
2416 CumulusPalletXcmError: 'Null',2494 CumulusPalletXcmError: 'Null',
2417 /**2495 /**
2418 * Lookup323: cumulus_pallet_dmp_queue::ConfigData2496 * Lookup325: cumulus_pallet_dmp_queue::ConfigData
2419 **/2497 **/
2420 CumulusPalletDmpQueueConfigData: {2498 CumulusPalletDmpQueueConfigData: {
2421 maxIndividual: 'u64'2499 maxIndividual: 'u64'
2422 },2500 },
2423 /**2501 /**
2424 * Lookup324: cumulus_pallet_dmp_queue::PageIndexData2502 * Lookup326: cumulus_pallet_dmp_queue::PageIndexData
2425 **/2503 **/
2426 CumulusPalletDmpQueuePageIndexData: {2504 CumulusPalletDmpQueuePageIndexData: {
2427 beginUsed: 'u32',2505 beginUsed: 'u32',
2428 endUsed: 'u32',2506 endUsed: 'u32',
2429 overweightCount: 'u64'2507 overweightCount: 'u64'
2430 },2508 },
2431 /**2509 /**
2432 * Lookup327: cumulus_pallet_dmp_queue::pallet::Error<T>2510 * Lookup329: cumulus_pallet_dmp_queue::pallet::Error<T>
2433 **/2511 **/
2434 CumulusPalletDmpQueueError: {2512 CumulusPalletDmpQueueError: {
2435 _enum: ['Unknown', 'OverLimit']2513 _enum: ['Unknown', 'OverLimit']
2436 },2514 },
2437 /**2515 /**
2438 * Lookup331: pallet_unique::Error<T>2516 * Lookup333: pallet_unique::Error<T>
2439 **/2517 **/
2440 PalletUniqueError: {2518 PalletUniqueError: {
2441 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2519 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
2442 },2520 },
2443 /**2521 /**
2444 * Lookup332: up_data_structs::Collection<sp_core::crypto::AccountId32>2522 * Lookup334: up_data_structs::Collection<sp_core::crypto::AccountId32>
2445 **/2523 **/
2446 UpDataStructsCollection: {2524 UpDataStructsCollection: {
2447 owner: 'AccountId32',2525 owner: 'AccountId32',
2448 mode: 'UpDataStructsCollectionMode',2526 mode: 'UpDataStructsCollectionMode',
2451 tokenPrefix: 'Bytes',2529 tokenPrefix: 'Bytes',
2452 sponsorship: 'UpDataStructsSponsorshipState',2530 sponsorship: 'UpDataStructsSponsorshipState',
2453 limits: 'UpDataStructsCollectionLimits',2531 limits: 'UpDataStructsCollectionLimits',
2454 permissions: 'UpDataStructsCollectionPermissions'2532 permissions: 'UpDataStructsCollectionPermissions',
2533 externalCollection: 'bool'
2455 },2534 },
2456 /**2535 /**
2457 * Lookup333: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2536 * Lookup335: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
2458 **/2537 **/
2459 UpDataStructsSponsorshipState: {2538 UpDataStructsSponsorshipState: {
2460 _enum: {2539 _enum: {
2461 Disabled: 'Null',2540 Disabled: 'Null',
2462 Unconfirmed: 'AccountId32',2541 Unconfirmed: 'AccountId32',
2463 Confirmed: 'AccountId32'2542 Confirmed: 'AccountId32'
2464 }2543 }
2465 },2544 },
2466 /**2545 /**
2467 * Lookup334: up_data_structs::Properties2546 * Lookup336: up_data_structs::Properties
2468 **/2547 **/
2469 UpDataStructsProperties: {2548 UpDataStructsProperties: {
2470 map: 'UpDataStructsPropertiesMapBoundedVec',2549 map: 'UpDataStructsPropertiesMapBoundedVec',
2471 consumedSpace: 'u32',2550 consumedSpace: 'u32',
2472 spaceLimit: 'u32'2551 spaceLimit: 'u32'
2473 },2552 },
2474 /**2553 /**
2475 * Lookup335: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>2554 * Lookup337: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
2476 **/2555 **/
2477 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',2556 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
2478 /**2557 /**
2479 * Lookup340: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>2558 * Lookup342: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
2480 **/2559 **/
2481 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',2560 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
2482 /**2561 /**
2483 * Lookup347: up_data_structs::CollectionStats2562 * Lookup349: up_data_structs::CollectionStats
2484 **/2563 **/
2485 UpDataStructsCollectionStats: {2564 UpDataStructsCollectionStats: {
2486 created: 'u32',2565 created: 'u32',
2487 destroyed: 'u32',2566 destroyed: 'u32',
2497 /**2576 /**
2498 * Lookup324: PhantomType::up_data_structs<T>2577 * Lookup324: PhantomType::up_data_structs<T>
2499 **/2578 **/
2500 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpDataStructsRmrkCollectionInfo,UpDataStructsRmrkNftInfo,UpDataStructsRmrkResourceInfo,UpDataStructsRmrkPropertyInfo,UpDataStructsRmrkBaseInfo,UpDataStructsRmrkPartType,UpDataStructsRmrkTheme,UpDataStructsRmrkNftChild);0]',2579 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
2501 /**2580 /**
2502 * Lookup326: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2581 * Lookup326: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2503 **/2582 **/
2518 limits: 'UpDataStructsCollectionLimits',2597 limits: 'UpDataStructsCollectionLimits',
2519 permissions: 'UpDataStructsCollectionPermissions',2598 permissions: 'UpDataStructsCollectionPermissions',
2520 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2599 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
2521 properties: 'Vec<UpDataStructsProperty>'2600 properties: 'Vec<UpDataStructsProperty>',
2601 readOnly: 'bool'
2522 },2602 },
2523 /**2603 /**
2524 * Lookup329: up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>2604 * Lookup329: up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
2525 **/2605 **/
2526 UpDataStructsRmrkCollectionInfo: {2606 RmrkTraitsCollectionCollectionInfo: {
2527 issuer: 'AccountId32',2607 issuer: 'AccountId32',
2528 metadata: 'Bytes',2608 metadata: 'Bytes',
2529 max: 'Option<u32>',2609 max: 'Option<u32>',
2533 /**2613 /**
2534 * Lookup332: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>2614 * Lookup332: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2535 **/2615 **/
2536 UpDataStructsRmrkNftInfo: {2616 RmrkTraitsNftNftInfo: {
2537 owner: 'UpDataStructsRmrkAccountIdOrCollectionNftTuple',2617 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
2538 royalty: 'Option<UpDataStructsRmrkRoyaltyInfo>',2618 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
2539 metadata: 'Bytes',2619 metadata: 'Bytes',
2540 equipped: 'bool',2620 equipped: 'bool',
2541 pending: 'bool'2621 pending: 'bool'
2552 /**2632 /**
2553 * Lookup335: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>2633 * Lookup335: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
2554 **/2634 **/
2555 UpDataStructsRmrkRoyaltyInfo: {2635 RmrkTraitsNftRoyaltyInfo: {
2556 recipient: 'AccountId32',2636 recipient: 'AccountId32',
2557 amount: 'Permill'2637 amount: 'Permill'
2558 },2638 },
2559 /**2639 /**
2560 * Lookup336: up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2640 * Lookup336: up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2561 **/2641 **/
2562 UpDataStructsRmrkResourceInfo: {2642 RmrkTraitsResourceResourceInfo: {
2563 id: 'u32',2643 id: 'u32',
2564 resource: 'UpDataStructsRmrkResourceTypes',2644 resource: 'RmrkTraitsResourceResourceTypes',
2565 pending: 'bool',2645 pending: 'bool',
2566 pendingRemoval: 'bool'2646 pendingRemoval: 'bool'
2567 },2647 },
2568 /**2648 /**
2569 * Lookup339: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2649 * Lookup339: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2570 **/2650 **/
2571 UpDataStructsRmrkResourceTypes: {2651 RmrkTraitsResourceResourceTypes: {
2572 _enum: {2652 _enum: {
2573 Basic: 'UpDataStructsRmrkBasicResource',2653 Basic: 'RmrkTraitsResourceBasicResource',
2574 Composable: 'UpDataStructsRmrkComposableResource',2654 Composable: 'RmrkTraitsResourceComposableResource',
2575 Slot: 'UpDataStructsRmrkSlotResource'2655 Slot: 'RmrkTraitsResourceSlotResource'
2576 }2656 }
2577 },2657 },
2578 /**2658 /**
2609 /**2689 /**
2610 * Lookup344: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>2690 * Lookup344: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2611 **/2691 **/
2612 UpDataStructsRmrkPropertyInfo: {2692 RmrkTraitsPropertyPropertyInfo: {
2613 key: 'Bytes',2693 key: 'Bytes',
2614 value: 'Bytes'2694 value: 'Bytes'
2615 },2695 },
2616 /**2696 /**
2617 * Lookup347: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>2697 * Lookup347: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
2618 **/2698 **/
2619 UpDataStructsRmrkBaseInfo: {2699 RmrkTraitsBaseBaseInfo: {
2620 issuer: 'AccountId32',2700 issuer: 'AccountId32',
2621 baseType: 'Bytes',2701 baseType: 'Bytes',
2622 symbol: 'Bytes'2702 symbol: 'Bytes'
2675 /**2755 /**
2676 * Lookup356: up_data_structs::rmrk::NftChild2756 * Lookup356: up_data_structs::rmrk::NftChild
2677 **/2757 **/
2678 UpDataStructsRmrkNftChild: {2758 RmrkTraitsNftNftChild: {
2679 collectionId: 'u32',2759 collectionId: 'u32',
2680 nftId: 'u32'2760 nftId: 'u32'
2681 },2761 },
2682 /**2762 /**
2683 * Lookup358: pallet_common::pallet::Error<T>2763 * Lookup358: pallet_common::pallet::Error<T>
2684 **/2764 **/
2685 PalletCommonError: {2765 PalletCommonError: {
2686 _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']2766 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
2687 },2767 },
2688 /**2768 /**
2689 * Lookup360: pallet_fungible::pallet::Error<T>2769 * Lookup360: pallet_fungible::pallet::Error<T>
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
139 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;139 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
140 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;140 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
141 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;141 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
142 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;
143 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;
144 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;
145 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;
146 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;
147 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;
148 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;
149 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;
150 RmrkTraitsPartPartType: RmrkTraitsPartPartType;
151 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;
152 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;
153 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;
154 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;
155 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;
156 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;
157 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;
158 RmrkTraitsTheme: RmrkTraitsTheme;
159 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;
142 SpCoreEcdsaSignature: SpCoreEcdsaSignature;160 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
143 SpCoreEd25519Signature: SpCoreEd25519Signature;161 SpCoreEd25519Signature: SpCoreEd25519Signature;
144 SpCoreSr25519Signature: SpCoreSr25519Signature;162 SpCoreSr25519Signature: SpCoreSr25519Signature;
173 UpDataStructsProperty: UpDataStructsProperty;191 UpDataStructsProperty: UpDataStructsProperty;
174 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;192 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
175 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;193 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
176 UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
177 UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;
178 UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;
179 UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;
180 UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;
181 UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;
182 UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;
183 UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;
184 UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;
185 UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;
186 UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;
187 UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;
188 UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;
189 UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;
190 UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;
191 UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;
192 UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;
193 UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;
194 UpDataStructsRpcCollection: UpDataStructsRpcCollection;194 UpDataStructsRpcCollection: UpDataStructsRpcCollection;
195 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;195 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
196 UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;196 UpDataStructsSponsorshipState: UpDataStructsSponsorshipState;
modifiedtests/src/interfaces/rmrk/definitions.tsdiffbeforeafterboth
31 types: {},31 types: {},
32 rpc: {32 rpc: {
33 lastCollectionIdx: fn('Get the latest created collection id', [], 'u32'),33 lastCollectionIdx: fn('Get the latest created collection id', [], 'u32'),
34 collectionById: fn('Get collection by id', [{name: 'id', type: 'u32'}], 'Option<UpDataStructsRmrkCollectionInfo>'),34 collectionById: fn('Get collection by id', [{name: 'id', type: 'u32'}], 'Option<RmrkTraitsCollectionCollectionInfo>'),
35 nftById: fn(35 nftById: fn(
36 'Get NFT by collection id and NFT id',36 'Get NFT by collection id and NFT id',
37 [37 [
38 {name: 'collectionId', type: 'u32'},38 {name: 'collectionId', type: 'u32'},
39 {name: 'nftId', type: 'u32'},39 {name: 'nftId', type: 'u32'},
40 ],40 ],
41 'Option<UpDataStructsRmrkNftInfo>',41 'Option<RmrkTraitsNftNftInfo>',
42 ),42 ),
43 accountTokens: fn(43 accountTokens: fn(
44 'Get tokens owned by an account in a collection',44 'Get tokens owned by an account in a collection',
54 {name: 'collectionId', type: 'u32'},54 {name: 'collectionId', type: 'u32'},
55 {name: 'nftId', type: 'u32'},55 {name: 'nftId', type: 'u32'},
56 ],56 ],
57 'Vec<UpDataStructsRmrkNftChild>',57 'Vec<RmrkTraitsNftNftChild>',
58 ),58 ),
59 collectionProperties: fn(59 collectionProperties: fn(
60 'Get collection properties',60 'Get collection properties',
61 [61 [
62 {name: 'collectionId', type: 'u32'},62 {name: 'collectionId', type: 'u32'},
63 {name: 'filterKeys', type: 'Vec<String>', isOptional: true},63 {name: 'filterKeys', type: 'Vec<String>', isOptional: true},
64 ],64 ],
65 'Vec<UpDataStructsRmrkPropertyInfo>',65 'Vec<RmrkTraitsPropertyPropertyInfo>',
66 ),66 ),
67 nftProperties: fn(67 nftProperties: fn(
68 'Get NFT properties',68 'Get NFT properties',
71 {name: 'nftId', type: 'u32'},71 {name: 'nftId', type: 'u32'},
72 {name: 'filterKeys', type: 'Vec<String>', isOptional: true},72 {name: 'filterKeys', type: 'Vec<String>', isOptional: true},
73 ],73 ],
74 'Vec<UpDataStructsRmrkPropertyInfo>',74 'Vec<RmrkTraitsPropertyPropertyInfo>',
75 ),75 ),
76 nftResources: fn(76 nftResources: fn(
77 'Get NFT resources',77 'Get NFT resources',
78 [78 [
79 {name: 'collectionId', type: 'u32'},79 {name: 'collectionId', type: 'u32'},
80 {name: 'nftId', type: 'u32'},80 {name: 'nftId', type: 'u32'},
81 ],81 ],
82 'Vec<UpDataStructsRmrkResourceInfo>',82 'Vec<RmrkTraitsResourceResourceInfo>',
83 ),83 ),
84 nftResourcePriorities: fn(84 nftResourcePriorities: fn(
85 'Get NFT resource priorities',85 'Get NFT resource priorities',
92 base: fn(92 base: fn(
93 'Get base info',93 'Get base info',
94 [{name: 'baseId', type: 'u32'}],94 [{name: 'baseId', type: 'u32'}],
95 'Option<UpDataStructsRmrkBaseInfo>',95 'Option<RmrkTraitsBaseBaseInfo>',
96 ),96 ),
97 baseParts: fn(97 baseParts: fn(
98 'Get all Base\'s parts',98 'Get all Base\'s parts',
99 [{name: 'baseId', type: 'u32'}],99 [{name: 'baseId', type: 'u32'}],
100 'Vec<UpDataStructsRmrkPartType>',100 'Vec<RmrkTraitsPartPartType>',
101 ),101 ),
102 themeNames: fn(102 themeNames: fn(
103 'Get Base\'s theme names',103 'Get Base\'s theme names',
111 {name: 'themeName', type: 'String'},111 {name: 'themeName', type: 'String'},
112 {name: 'keys', type: 'Option<Vec<String>>'},112 {name: 'keys', type: 'Option<Vec<String>>'},
113 ],113 ],
114 'Option<UpDataStructsRmrkTheme>',114 'Option<RmrkTraitsTheme>',
115 ),115 ),
116 },116 },
117};117};
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
1677 readonly recipient: Option<AccountId32>;1677 readonly recipient: Option<AccountId32>;
1678 readonly royaltyAmount: Option<Permill>;1678 readonly royaltyAmount: Option<Permill>;
1679 readonly metadata: Bytes;1679 readonly metadata: Bytes;
1680 readonly transferable: bool;
1680 } & Struct;1681 } & Struct;
1681 readonly isBurnNft: boolean;1682 readonly isBurnNft: boolean;
1682 readonly asBurnNft: {1683 readonly asBurnNft: {
1683 readonly collectionId: u32;1684 readonly collectionId: u32;
1684 readonly nftId: u32;1685 readonly nftId: u32;
1685 } & Struct;1686 } & Struct;
1687 readonly isSend: boolean;
1688 readonly asSend: {
1689 readonly rmrkCollectionId: u32;
1690 readonly rmrkNftId: u32;
1691 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
1692 } & Struct;
1693 readonly isAcceptNft: boolean;
1694 readonly asAcceptNft: {
1695 readonly rmrkCollectionId: u32;
1696 readonly rmrkNftId: u32;
1697 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
1698 } & Struct;
1699 readonly isRejectNft: boolean;
1700 readonly asRejectNft: {
1701 readonly rmrkCollectionId: u32;
1702 readonly rmrkNftId: u32;
1703 } & Struct;
1704 readonly isAcceptResource: boolean;
1705 readonly asAcceptResource: {
1706 readonly rmrkCollectionId: u32;
1707 readonly rmrkNftId: u32;
1708 readonly rmrkResourceId: u32;
1709 } & Struct;
1710 readonly isAcceptResourceRemoval: boolean;
1711 readonly asAcceptResourceRemoval: {
1712 readonly rmrkCollectionId: u32;
1713 readonly rmrkNftId: u32;
1714 readonly rmrkResourceId: u32;
1715 } & Struct;
1686 readonly isSetProperty: boolean;1716 readonly isSetProperty: boolean;
1687 readonly asSetProperty: {1717 readonly asSetProperty: {
1688 readonly rmrkCollectionId: Compact<u32>;1718 readonly rmrkCollectionId: Compact<u32>;
1689 readonly maybeNftId: Option<u32>;1719 readonly maybeNftId: Option<u32>;
1690 readonly key: Bytes;1720 readonly key: Bytes;
1691 readonly value: Bytes;1721 readonly value: Bytes;
1692 } & Struct;1722 } & Struct;
1723 readonly isSetPriority: boolean;
1724 readonly asSetPriority: {
1725 readonly rmrkCollectionId: u32;
1726 readonly rmrkNftId: u32;
1727 readonly priorities: Vec<u32>;
1728 } & Struct;
1693 readonly isAddBasicResource: boolean;1729 readonly isAddBasicResource: boolean;
1694 readonly asAddBasicResource: {1730 readonly asAddBasicResource: {
1695 readonly collectionId: u32;1731 readonly rmrkCollectionId: u32;
1696 readonly nftId: u32;1732 readonly nftId: u32;
1697 readonly resource: UpDataStructsRmrkBasicResource;1733 readonly resource: RmrkTraitsResourceBasicResource;
1698 } & Struct;1734 } & Struct;
1699 readonly isAddComposableResource: boolean;1735 readonly isAddComposableResource: boolean;
1700 readonly asAddComposableResource: {1736 readonly asAddComposableResource: {
1701 readonly collectionId: u32;1737 readonly rmrkCollectionId: u32;
1702 readonly nftId: u32;1738 readonly nftId: u32;
1703 readonly resourceId: Bytes;1739 readonly resourceId: Bytes;
1704 readonly resource: UpDataStructsRmrkComposableResource;1740 readonly resource: RmrkTraitsResourceComposableResource;
1705 } & Struct;1741 } & Struct;
1706 readonly isAddSlotResource: boolean;1742 readonly isAddSlotResource: boolean;
1707 readonly asAddSlotResource: {1743 readonly asAddSlotResource: {
1708 readonly collectionId: u32;1744 readonly rmrkCollectionId: u32;
1709 readonly nftId: u32;1745 readonly nftId: u32;
1710 readonly resource: UpDataStructsRmrkSlotResource;1746 readonly resource: RmrkTraitsResourceSlotResource;
1711 } & Struct;1747 } & Struct;
1748 readonly isRemoveResource: boolean;
1749 readonly asRemoveResource: {
1750 readonly rmrkCollectionId: u32;
1751 readonly nftId: u32;
1752 readonly resourceId: u32;
1753 } & Struct;
1712 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource';1754 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
1713 }1755 }
1756
1757 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (210) */
1758 export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
1759 readonly isAccountId: boolean;
1760 readonly asAccountId: AccountId32;
1761 readonly isCollectionAndNftTuple: boolean;
1762 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
1763 readonly type: 'AccountId' | 'CollectionAndNftTuple';
1764 }
17141765
1715 /** @name UpDataStructsRmrkBasicResource (212) */1766 /** @name RmrkTraitsResourceBasicResource (214) */
1716 export interface UpDataStructsRmrkBasicResource extends Struct {1767 export interface RmrkTraitsResourceBasicResource extends Struct {
1717 readonly src: Option<Bytes>;1768 readonly src: Option<Bytes>;
1718 readonly metadata: Option<Bytes>;1769 readonly metadata: Option<Bytes>;
1719 readonly license: Option<Bytes>;1770 readonly license: Option<Bytes>;
1720 readonly thumb: Option<Bytes>;1771 readonly thumb: Option<Bytes>;
1721 }1772 }
17221773
1723 /** @name UpDataStructsRmrkComposableResource (215) */1774 /** @name RmrkTraitsResourceComposableResource (217) */
1724 export interface UpDataStructsRmrkComposableResource extends Struct {1775 export interface RmrkTraitsResourceComposableResource extends Struct {
1725 readonly parts: Vec<u32>;1776 readonly parts: Vec<u32>;
1726 readonly base: u32;1777 readonly base: u32;
1727 readonly src: Option<Bytes>;1778 readonly src: Option<Bytes>;
1730 readonly thumb: Option<Bytes>;1781 readonly thumb: Option<Bytes>;
1731 }1782 }
17321783
1733 /** @name UpDataStructsRmrkSlotResource (217) */1784 /** @name RmrkTraitsResourceSlotResource (219) */
1734 export interface UpDataStructsRmrkSlotResource extends Struct {1785 export interface RmrkTraitsResourceSlotResource extends Struct {
1735 readonly base: u32;1786 readonly base: u32;
1736 readonly src: Option<Bytes>;1787 readonly src: Option<Bytes>;
1737 readonly metadata: Option<Bytes>;1788 readonly metadata: Option<Bytes>;
1740 readonly thumb: Option<Bytes>;1791 readonly thumb: Option<Bytes>;
1741 }1792 }
17421793
1743 /** @name PalletRmrkEquipCall (218) */1794 /** @name PalletRmrkEquipCall (220) */
1744 export interface PalletRmrkEquipCall extends Enum {1795 export interface PalletRmrkEquipCall extends Enum {
1745 readonly isCreateBase: boolean;1796 readonly isCreateBase: boolean;
1746 readonly asCreateBase: {1797 readonly asCreateBase: {
1747 readonly baseType: Bytes;1798 readonly baseType: Bytes;
1748 readonly symbol: Bytes;1799 readonly symbol: Bytes;
1749 readonly parts: Vec<UpDataStructsRmrkPartType>;1800 readonly parts: Vec<RmrkTraitsPartPartType>;
1750 } & Struct;1801 } & Struct;
1751 readonly isThemeAdd: boolean;1802 readonly isThemeAdd: boolean;
1752 readonly asThemeAdd: {1803 readonly asThemeAdd: {
1753 readonly baseId: u32;1804 readonly baseId: u32;
1754 readonly theme: UpDataStructsRmrkTheme;1805 readonly theme: RmrkTraitsTheme;
1755 } & Struct;1806 } & Struct;
1756 readonly type: 'CreateBase' | 'ThemeAdd';1807 readonly type: 'CreateBase' | 'ThemeAdd';
1757 }1808 }
17581809
1759 /** @name UpDataStructsRmrkPartType (220) */1810 /** @name RmrkTraitsPartPartType (222) */
1760 export interface UpDataStructsRmrkPartType extends Enum {1811 export interface RmrkTraitsPartPartType extends Enum {
1761 readonly isFixedPart: boolean;1812 readonly isFixedPart: boolean;
1762 readonly asFixedPart: UpDataStructsRmrkFixedPart;1813 readonly asFixedPart: RmrkTraitsPartFixedPart;
1763 readonly isSlotPart: boolean;1814 readonly isSlotPart: boolean;
1764 readonly asSlotPart: UpDataStructsRmrkSlotPart;1815 readonly asSlotPart: RmrkTraitsPartSlotPart;
1765 readonly type: 'FixedPart' | 'SlotPart';1816 readonly type: 'FixedPart' | 'SlotPart';
1766 }1817 }
17671818
1768 /** @name UpDataStructsRmrkFixedPart (222) */1819 /** @name RmrkTraitsPartFixedPart (224) */
1769 export interface UpDataStructsRmrkFixedPart extends Struct {1820 export interface RmrkTraitsPartFixedPart extends Struct {
1770 readonly id: u32;1821 readonly id: u32;
1771 readonly z: u32;1822 readonly z: u32;
1772 readonly src: Bytes;1823 readonly src: Bytes;
1773 }1824 }
17741825
1775 /** @name UpDataStructsRmrkSlotPart (223) */1826 /** @name RmrkTraitsPartSlotPart (225) */
1776 export interface UpDataStructsRmrkSlotPart extends Struct {1827 export interface RmrkTraitsPartSlotPart extends Struct {
1777 readonly id: u32;1828 readonly id: u32;
1778 readonly equippable: UpDataStructsRmrkEquippableList;1829 readonly equippable: RmrkTraitsPartEquippableList;
1779 readonly src: Bytes;1830 readonly src: Bytes;
1780 readonly z: u32;1831 readonly z: u32;
1781 }1832 }
17821833
1783 /** @name UpDataStructsRmrkEquippableList (224) */1834 /** @name RmrkTraitsPartEquippableList (226) */
1784 export interface UpDataStructsRmrkEquippableList extends Enum {1835 export interface RmrkTraitsPartEquippableList extends Enum {
1785 readonly isAll: boolean;1836 readonly isAll: boolean;
1786 readonly isEmpty: boolean;1837 readonly isEmpty: boolean;
1787 readonly isCustom: boolean;1838 readonly isCustom: boolean;
1788 readonly asCustom: Vec<u32>;1839 readonly asCustom: Vec<u32>;
1789 readonly type: 'All' | 'Empty' | 'Custom';1840 readonly type: 'All' | 'Empty' | 'Custom';
1790 }1841 }
17911842
1792 /** @name UpDataStructsRmrkTheme (226) */1843 /** @name RmrkTraitsTheme (228) */
1793 export interface UpDataStructsRmrkTheme extends Struct {1844 export interface RmrkTraitsTheme extends Struct {
1794 readonly name: Bytes;1845 readonly name: Bytes;
1795 readonly properties: Vec<UpDataStructsRmrkThemeProperty>;1846 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
1796 readonly inherit: bool;1847 readonly inherit: bool;
1797 }1848 }
17981849
1799 /** @name UpDataStructsRmrkThemeProperty (228) */1850 /** @name RmrkTraitsThemeThemeProperty (230) */
1800 export interface UpDataStructsRmrkThemeProperty extends Struct {1851 export interface RmrkTraitsThemeThemeProperty extends Struct {
1801 readonly key: Bytes;1852 readonly key: Bytes;
1802 readonly value: Bytes;1853 readonly value: Bytes;
1803 }1854 }
18041855
1805 /** @name PalletEvmCall (229) */1856 /** @name PalletEvmCall (231) */
1806 export interface PalletEvmCall extends Enum {1857 export interface PalletEvmCall extends Enum {
1807 readonly isWithdraw: boolean;1858 readonly isWithdraw: boolean;
1808 readonly asWithdraw: {1859 readonly asWithdraw: {
1847 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1898 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
1848 }1899 }
18491900
1850 /** @name PalletEthereumCall (235) */1901 /** @name PalletEthereumCall (237) */
1851 export interface PalletEthereumCall extends Enum {1902 export interface PalletEthereumCall extends Enum {
1852 readonly isTransact: boolean;1903 readonly isTransact: boolean;
1853 readonly asTransact: {1904 readonly asTransact: {
1856 readonly type: 'Transact';1907 readonly type: 'Transact';
1857 }1908 }
18581909
1859 /** @name EthereumTransactionTransactionV2 (236) */1910 /** @name EthereumTransactionTransactionV2 (238) */
1860 export interface EthereumTransactionTransactionV2 extends Enum {1911 export interface EthereumTransactionTransactionV2 extends Enum {
1861 readonly isLegacy: boolean;1912 readonly isLegacy: boolean;
1862 readonly asLegacy: EthereumTransactionLegacyTransaction;1913 readonly asLegacy: EthereumTransactionLegacyTransaction;
1867 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1918 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
1868 }1919 }
18691920
1870 /** @name EthereumTransactionLegacyTransaction (237) */1921 /** @name EthereumTransactionLegacyTransaction (239) */
1871 export interface EthereumTransactionLegacyTransaction extends Struct {1922 export interface EthereumTransactionLegacyTransaction extends Struct {
1872 readonly nonce: U256;1923 readonly nonce: U256;
1873 readonly gasPrice: U256;1924 readonly gasPrice: U256;
1878 readonly signature: EthereumTransactionTransactionSignature;1929 readonly signature: EthereumTransactionTransactionSignature;
1879 }1930 }
18801931
1881 /** @name EthereumTransactionTransactionAction (238) */1932 /** @name EthereumTransactionTransactionAction (240) */
1882 export interface EthereumTransactionTransactionAction extends Enum {1933 export interface EthereumTransactionTransactionAction extends Enum {
1883 readonly isCall: boolean;1934 readonly isCall: boolean;
1884 readonly asCall: H160;1935 readonly asCall: H160;
1885 readonly isCreate: boolean;1936 readonly isCreate: boolean;
1886 readonly type: 'Call' | 'Create';1937 readonly type: 'Call' | 'Create';
1887 }1938 }
18881939
1889 /** @name EthereumTransactionTransactionSignature (239) */1940 /** @name EthereumTransactionTransactionSignature (241) */
1890 export interface EthereumTransactionTransactionSignature extends Struct {1941 export interface EthereumTransactionTransactionSignature extends Struct {
1891 readonly v: u64;1942 readonly v: u64;
1892 readonly r: H256;1943 readonly r: H256;
1893 readonly s: H256;1944 readonly s: H256;
1894 }1945 }
18951946
1896 /** @name EthereumTransactionEip2930Transaction (241) */1947 /** @name EthereumTransactionEip2930Transaction (243) */
1897 export interface EthereumTransactionEip2930Transaction extends Struct {1948 export interface EthereumTransactionEip2930Transaction extends Struct {
1898 readonly chainId: u64;1949 readonly chainId: u64;
1899 readonly nonce: U256;1950 readonly nonce: U256;
1908 readonly s: H256;1959 readonly s: H256;
1909 }1960 }
19101961
1911 /** @name EthereumTransactionAccessListItem (243) */1962 /** @name EthereumTransactionAccessListItem (245) */
1912 export interface EthereumTransactionAccessListItem extends Struct {1963 export interface EthereumTransactionAccessListItem extends Struct {
1913 readonly address: H160;1964 readonly address: H160;
1914 readonly storageKeys: Vec<H256>;1965 readonly storageKeys: Vec<H256>;
1915 }1966 }
19161967
1917 /** @name EthereumTransactionEip1559Transaction (244) */1968 /** @name EthereumTransactionEip1559Transaction (246) */
1918 export interface EthereumTransactionEip1559Transaction extends Struct {1969 export interface EthereumTransactionEip1559Transaction extends Struct {
1919 readonly chainId: u64;1970 readonly chainId: u64;
1920 readonly nonce: U256;1971 readonly nonce: U256;
1930 readonly s: H256;1981 readonly s: H256;
1931 }1982 }
19321983
1933 /** @name PalletEvmMigrationCall (245) */1984 /** @name PalletEvmMigrationCall (247) */
1934 export interface PalletEvmMigrationCall extends Enum {1985 export interface PalletEvmMigrationCall extends Enum {
1935 readonly isBegin: boolean;1986 readonly isBegin: boolean;
1936 readonly asBegin: {1987 readonly asBegin: {
1949 readonly type: 'Begin' | 'SetData' | 'Finish';2000 readonly type: 'Begin' | 'SetData' | 'Finish';
1950 }2001 }
19512002
1952 /** @name PalletSudoEvent (248) */2003 /** @name PalletSudoEvent (250) */
1953 export interface PalletSudoEvent extends Enum {2004 export interface PalletSudoEvent extends Enum {
1954 readonly isSudid: boolean;2005 readonly isSudid: boolean;
1955 readonly asSudid: {2006 readonly asSudid: {
1966 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2017 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
1967 }2018 }
19682019
1969 /** @name SpRuntimeDispatchError (250) */2020 /** @name SpRuntimeDispatchError (252) */
1970 export interface SpRuntimeDispatchError extends Enum {2021 export interface SpRuntimeDispatchError extends Enum {
1971 readonly isOther: boolean;2022 readonly isOther: boolean;
1972 readonly isCannotLookup: boolean;2023 readonly isCannotLookup: boolean;
1985 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2036 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
1986 }2037 }
19872038
1988 /** @name SpRuntimeModuleError (251) */2039 /** @name SpRuntimeModuleError (253) */
1989 export interface SpRuntimeModuleError extends Struct {2040 export interface SpRuntimeModuleError extends Struct {
1990 readonly index: u8;2041 readonly index: u8;
1991 readonly error: U8aFixed;2042 readonly error: U8aFixed;
1992 }2043 }
19932044
1994 /** @name SpRuntimeTokenError (252) */2045 /** @name SpRuntimeTokenError (254) */
1995 export interface SpRuntimeTokenError extends Enum {2046 export interface SpRuntimeTokenError extends Enum {
1996 readonly isNoFunds: boolean;2047 readonly isNoFunds: boolean;
1997 readonly isWouldDie: boolean;2048 readonly isWouldDie: boolean;
2003 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2054 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
2004 }2055 }
20052056
2006 /** @name SpRuntimeArithmeticError (253) */2057 /** @name SpRuntimeArithmeticError (255) */
2007 export interface SpRuntimeArithmeticError extends Enum {2058 export interface SpRuntimeArithmeticError extends Enum {
2008 readonly isUnderflow: boolean;2059 readonly isUnderflow: boolean;
2009 readonly isOverflow: boolean;2060 readonly isOverflow: boolean;
2010 readonly isDivisionByZero: boolean;2061 readonly isDivisionByZero: boolean;
2011 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2062 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
2012 }2063 }
20132064
2014 /** @name SpRuntimeTransactionalError (254) */2065 /** @name SpRuntimeTransactionalError (256) */
2015 export interface SpRuntimeTransactionalError extends Enum {2066 export interface SpRuntimeTransactionalError extends Enum {
2016 readonly isLimitReached: boolean;2067 readonly isLimitReached: boolean;
2017 readonly isNoLayer: boolean;2068 readonly isNoLayer: boolean;
2018 readonly type: 'LimitReached' | 'NoLayer';2069 readonly type: 'LimitReached' | 'NoLayer';
2019 }2070 }
20202071
2021 /** @name PalletSudoError (255) */2072 /** @name PalletSudoError (257) */
2022 export interface PalletSudoError extends Enum {2073 export interface PalletSudoError extends Enum {
2023 readonly isRequireSudo: boolean;2074 readonly isRequireSudo: boolean;
2024 readonly type: 'RequireSudo';2075 readonly type: 'RequireSudo';
2025 }2076 }
20262077
2027 /** @name FrameSystemAccountInfo (256) */2078 /** @name FrameSystemAccountInfo (258) */
2028 export interface FrameSystemAccountInfo extends Struct {2079 export interface FrameSystemAccountInfo extends Struct {
2029 readonly nonce: u32;2080 readonly nonce: u32;
2030 readonly consumers: u32;2081 readonly consumers: u32;
2033 readonly data: PalletBalancesAccountData;2084 readonly data: PalletBalancesAccountData;
2034 }2085 }
20352086
2036 /** @name FrameSupportWeightsPerDispatchClassU64 (257) */2087 /** @name FrameSupportWeightsPerDispatchClassU64 (259) */
2037 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2088 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
2038 readonly normal: u64;2089 readonly normal: u64;
2039 readonly operational: u64;2090 readonly operational: u64;
2040 readonly mandatory: u64;2091 readonly mandatory: u64;
2041 }2092 }
20422093
2043 /** @name SpRuntimeDigest (258) */2094 /** @name SpRuntimeDigest (260) */
2044 export interface SpRuntimeDigest extends Struct {2095 export interface SpRuntimeDigest extends Struct {
2045 readonly logs: Vec<SpRuntimeDigestDigestItem>;2096 readonly logs: Vec<SpRuntimeDigestDigestItem>;
2046 }2097 }
20472098
2048 /** @name SpRuntimeDigestDigestItem (260) */2099 /** @name SpRuntimeDigestDigestItem (262) */
2049 export interface SpRuntimeDigestDigestItem extends Enum {2100 export interface SpRuntimeDigestDigestItem extends Enum {
2050 readonly isOther: boolean;2101 readonly isOther: boolean;
2051 readonly asOther: Bytes;2102 readonly asOther: Bytes;
2059 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2110 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
2060 }2111 }
20612112
2062 /** @name FrameSystemEventRecord (262) */2113 /** @name FrameSystemEventRecord (264) */
2063 export interface FrameSystemEventRecord extends Struct {2114 export interface FrameSystemEventRecord extends Struct {
2064 readonly phase: FrameSystemPhase;2115 readonly phase: FrameSystemPhase;
2065 readonly event: Event;2116 readonly event: Event;
2066 readonly topics: Vec<H256>;2117 readonly topics: Vec<H256>;
2067 }2118 }
20682119
2069 /** @name FrameSystemEvent (264) */2120 /** @name FrameSystemEvent (266) */
2070 export interface FrameSystemEvent extends Enum {2121 export interface FrameSystemEvent extends Enum {
2071 readonly isExtrinsicSuccess: boolean;2122 readonly isExtrinsicSuccess: boolean;
2072 readonly asExtrinsicSuccess: {2123 readonly asExtrinsicSuccess: {
2094 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2145 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
2095 }2146 }
20962147
2097 /** @name FrameSupportWeightsDispatchInfo (265) */2148 /** @name FrameSupportWeightsDispatchInfo (267) */
2098 export interface FrameSupportWeightsDispatchInfo extends Struct {2149 export interface FrameSupportWeightsDispatchInfo extends Struct {
2099 readonly weight: u64;2150 readonly weight: u64;
2100 readonly class: FrameSupportWeightsDispatchClass;2151 readonly class: FrameSupportWeightsDispatchClass;
2101 readonly paysFee: FrameSupportWeightsPays;2152 readonly paysFee: FrameSupportWeightsPays;
2102 }2153 }
21032154
2104 /** @name FrameSupportWeightsDispatchClass (266) */2155 /** @name FrameSupportWeightsDispatchClass (268) */
2105 export interface FrameSupportWeightsDispatchClass extends Enum {2156 export interface FrameSupportWeightsDispatchClass extends Enum {
2106 readonly isNormal: boolean;2157 readonly isNormal: boolean;
2107 readonly isOperational: boolean;2158 readonly isOperational: boolean;
2108 readonly isMandatory: boolean;2159 readonly isMandatory: boolean;
2109 readonly type: 'Normal' | 'Operational' | 'Mandatory';2160 readonly type: 'Normal' | 'Operational' | 'Mandatory';
2110 }2161 }
21112162
2112 /** @name FrameSupportWeightsPays (267) */2163 /** @name FrameSupportWeightsPays (269) */
2113 export interface FrameSupportWeightsPays extends Enum {2164 export interface FrameSupportWeightsPays extends Enum {
2114 readonly isYes: boolean;2165 readonly isYes: boolean;
2115 readonly isNo: boolean;2166 readonly isNo: boolean;
2116 readonly type: 'Yes' | 'No';2167 readonly type: 'Yes' | 'No';
2117 }2168 }
21182169
2119 /** @name OrmlVestingModuleEvent (268) */2170 /** @name OrmlVestingModuleEvent (270) */
2120 export interface OrmlVestingModuleEvent extends Enum {2171 export interface OrmlVestingModuleEvent extends Enum {
2121 readonly isVestingScheduleAdded: boolean;2172 readonly isVestingScheduleAdded: boolean;
2122 readonly asVestingScheduleAdded: {2173 readonly asVestingScheduleAdded: {
2136 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2187 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
2137 }2188 }
21382189
2139 /** @name CumulusPalletXcmpQueueEvent (269) */2190 /** @name CumulusPalletXcmpQueueEvent (271) */
2140 export interface CumulusPalletXcmpQueueEvent extends Enum {2191 export interface CumulusPalletXcmpQueueEvent extends Enum {
2141 readonly isSuccess: boolean;2192 readonly isSuccess: boolean;
2142 readonly asSuccess: Option<H256>;2193 readonly asSuccess: Option<H256>;
2157 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2208 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
2158 }2209 }
21592210
2160 /** @name PalletXcmEvent (270) */2211 /** @name PalletXcmEvent (272) */
2161 export interface PalletXcmEvent extends Enum {2212 export interface PalletXcmEvent extends Enum {
2162 readonly isAttempted: boolean;2213 readonly isAttempted: boolean;
2163 readonly asAttempted: XcmV2TraitsOutcome;2214 readonly asAttempted: XcmV2TraitsOutcome;
2194 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2245 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
2195 }2246 }
21962247
2197 /** @name XcmV2TraitsOutcome (271) */2248 /** @name XcmV2TraitsOutcome (273) */
2198 export interface XcmV2TraitsOutcome extends Enum {2249 export interface XcmV2TraitsOutcome extends Enum {
2199 readonly isComplete: boolean;2250 readonly isComplete: boolean;
2200 readonly asComplete: u64;2251 readonly asComplete: u64;
2205 readonly type: 'Complete' | 'Incomplete' | 'Error';2256 readonly type: 'Complete' | 'Incomplete' | 'Error';
2206 }2257 }
22072258
2208 /** @name CumulusPalletXcmEvent (273) */2259 /** @name CumulusPalletXcmEvent (275) */
2209 export interface CumulusPalletXcmEvent extends Enum {2260 export interface CumulusPalletXcmEvent extends Enum {
2210 readonly isInvalidFormat: boolean;2261 readonly isInvalidFormat: boolean;
2211 readonly asInvalidFormat: U8aFixed;2262 readonly asInvalidFormat: U8aFixed;
2216 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2267 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
2217 }2268 }
22182269
2219 /** @name CumulusPalletDmpQueueEvent (274) */2270 /** @name CumulusPalletDmpQueueEvent (276) */
2220 export interface CumulusPalletDmpQueueEvent extends Enum {2271 export interface CumulusPalletDmpQueueEvent extends Enum {
2221 readonly isInvalidFormat: boolean;2272 readonly isInvalidFormat: boolean;
2222 readonly asInvalidFormat: U8aFixed;2273 readonly asInvalidFormat: U8aFixed;
2233 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2284 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
2234 }2285 }
22352286
2236 /** @name PalletUniqueRawEvent (275) */2287 /** @name PalletUniqueRawEvent (277) */
2237 export interface PalletUniqueRawEvent extends Enum {2288 export interface PalletUniqueRawEvent extends Enum {
2238 readonly isCollectionSponsorRemoved: boolean;2289 readonly isCollectionSponsorRemoved: boolean;
2239 readonly asCollectionSponsorRemoved: u32;2290 readonly asCollectionSponsorRemoved: u32;
2258 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2309 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
2259 }2310 }
22602311
2261 /** @name PalletCommonEvent (276) */2312 /** @name PalletCommonEvent (278) */
2262 export interface PalletCommonEvent extends Enum {2313 export interface PalletCommonEvent extends Enum {
2263 readonly isCollectionCreated: boolean;2314 readonly isCollectionCreated: boolean;
2264 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2315 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
2285 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2336 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
2286 }2337 }
22872338
2288 /** @name PalletStructureEvent (277) */2339 /** @name PalletStructureEvent (279) */
2289 export interface PalletStructureEvent extends Enum {2340 export interface PalletStructureEvent extends Enum {
2290 readonly isExecuted: boolean;2341 readonly isExecuted: boolean;
2291 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2342 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
2292 readonly type: 'Executed';2343 readonly type: 'Executed';
2293 }2344 }
22942345
2295 /** @name PalletRmrkCoreEvent (278) */2346 /** @name PalletRmrkCoreEvent (280) */
2296 export interface PalletRmrkCoreEvent extends Enum {2347 export interface PalletRmrkCoreEvent extends Enum {
2297 readonly isCollectionCreated: boolean;2348 readonly isCollectionCreated: boolean;
2298 readonly asCollectionCreated: {2349 readonly asCollectionCreated: {
2326 readonly owner: AccountId32;2377 readonly owner: AccountId32;
2327 readonly nftId: u32;2378 readonly nftId: u32;
2328 } & Struct;2379 } & Struct;
2380 readonly isNftSent: boolean;
2381 readonly asNftSent: {
2382 readonly sender: AccountId32;
2383 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;
2384 readonly collectionId: u32;
2385 readonly nftId: u32;
2386 readonly approvalRequired: bool;
2387 } & Struct;
2388 readonly isNftAccepted: boolean;
2389 readonly asNftAccepted: {
2390 readonly sender: AccountId32;
2391 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;
2392 readonly collectionId: u32;
2393 readonly nftId: u32;
2394 } & Struct;
2395 readonly isNftRejected: boolean;
2396 readonly asNftRejected: {
2397 readonly sender: AccountId32;
2398 readonly collectionId: u32;
2399 readonly nftId: u32;
2400 } & Struct;
2329 readonly isPropertySet: boolean;2401 readonly isPropertySet: boolean;
2330 readonly asPropertySet: {2402 readonly asPropertySet: {
2331 readonly collectionId: u32;2403 readonly collectionId: u32;
2338 readonly nftId: u32;2410 readonly nftId: u32;
2339 readonly resourceId: u32;2411 readonly resourceId: u32;
2340 } & Struct;2412 } & Struct;
2413 readonly isResourceRemoval: boolean;
2414 readonly asResourceRemoval: {
2415 readonly nftId: u32;
2416 readonly resourceId: u32;
2417 } & Struct;
2418 readonly isResourceAccepted: boolean;
2419 readonly asResourceAccepted: {
2420 readonly nftId: u32;
2421 readonly resourceId: u32;
2422 } & Struct;
2423 readonly isResourceRemovalAccepted: boolean;
2424 readonly asResourceRemovalAccepted: {
2425 readonly nftId: u32;
2426 readonly resourceId: u32;
2427 } & Struct;
2428 readonly isPrioritySet: boolean;
2429 readonly asPrioritySet: {
2430 readonly collectionId: u32;
2431 readonly nftId: u32;
2432 } & Struct;
2341 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet' | 'ResourceAdded';2433 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
2342 }2434 }
23432435
2344 /** @name PalletRmrkEquipEvent (279) */2436 /** @name PalletRmrkEquipEvent (281) */
2345 export interface PalletRmrkEquipEvent extends Enum {2437 export interface PalletRmrkEquipEvent extends Enum {
2346 readonly isBaseCreated: boolean;2438 readonly isBaseCreated: boolean;
2347 readonly asBaseCreated: {2439 readonly asBaseCreated: {
2351 readonly type: 'BaseCreated';2443 readonly type: 'BaseCreated';
2352 }2444 }
23532445
2354 /** @name PalletEvmEvent (280) */2446 /** @name PalletEvmEvent (282) */
2355 export interface PalletEvmEvent extends Enum {2447 export interface PalletEvmEvent extends Enum {
2356 readonly isLog: boolean;2448 readonly isLog: boolean;
2357 readonly asLog: EthereumLog;2449 readonly asLog: EthereumLog;
2370 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2462 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
2371 }2463 }
23722464
2373 /** @name EthereumLog (281) */2465 /** @name EthereumLog (283) */
2374 export interface EthereumLog extends Struct {2466 export interface EthereumLog extends Struct {
2375 readonly address: H160;2467 readonly address: H160;
2376 readonly topics: Vec<H256>;2468 readonly topics: Vec<H256>;
2377 readonly data: Bytes;2469 readonly data: Bytes;
2378 }2470 }
23792471
2380 /** @name PalletEthereumEvent (282) */2472 /** @name PalletEthereumEvent (284) */
2381 export interface PalletEthereumEvent extends Enum {2473 export interface PalletEthereumEvent extends Enum {
2382 readonly isExecuted: boolean;2474 readonly isExecuted: boolean;
2383 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2475 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
2384 readonly type: 'Executed';2476 readonly type: 'Executed';
2385 }2477 }
23862478
2387 /** @name EvmCoreErrorExitReason (283) */2479 /** @name EvmCoreErrorExitReason (285) */
2388 export interface EvmCoreErrorExitReason extends Enum {2480 export interface EvmCoreErrorExitReason extends Enum {
2389 readonly isSucceed: boolean;2481 readonly isSucceed: boolean;
2390 readonly asSucceed: EvmCoreErrorExitSucceed;2482 readonly asSucceed: EvmCoreErrorExitSucceed;
2397 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2489 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
2398 }2490 }
23992491
2400 /** @name EvmCoreErrorExitSucceed (284) */2492 /** @name EvmCoreErrorExitSucceed (286) */
2401 export interface EvmCoreErrorExitSucceed extends Enum {2493 export interface EvmCoreErrorExitSucceed extends Enum {
2402 readonly isStopped: boolean;2494 readonly isStopped: boolean;
2403 readonly isReturned: boolean;2495 readonly isReturned: boolean;
2404 readonly isSuicided: boolean;2496 readonly isSuicided: boolean;
2405 readonly type: 'Stopped' | 'Returned' | 'Suicided';2497 readonly type: 'Stopped' | 'Returned' | 'Suicided';
2406 }2498 }
24072499
2408 /** @name EvmCoreErrorExitError (285) */2500 /** @name EvmCoreErrorExitError (287) */
2409 export interface EvmCoreErrorExitError extends Enum {2501 export interface EvmCoreErrorExitError extends Enum {
2410 readonly isStackUnderflow: boolean;2502 readonly isStackUnderflow: boolean;
2411 readonly isStackOverflow: boolean;2503 readonly isStackOverflow: boolean;
2426 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2518 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
2427 }2519 }
24282520
2429 /** @name EvmCoreErrorExitRevert (288) */2521 /** @name EvmCoreErrorExitRevert (290) */
2430 export interface EvmCoreErrorExitRevert extends Enum {2522 export interface EvmCoreErrorExitRevert extends Enum {
2431 readonly isReverted: boolean;2523 readonly isReverted: boolean;
2432 readonly type: 'Reverted';2524 readonly type: 'Reverted';
2433 }2525 }
24342526
2435 /** @name EvmCoreErrorExitFatal (289) */2527 /** @name EvmCoreErrorExitFatal (291) */
2436 export interface EvmCoreErrorExitFatal extends Enum {2528 export interface EvmCoreErrorExitFatal extends Enum {
2437 readonly isNotSupported: boolean;2529 readonly isNotSupported: boolean;
2438 readonly isUnhandledInterrupt: boolean;2530 readonly isUnhandledInterrupt: boolean;
2443 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2535 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
2444 }2536 }
24452537
2446 /** @name FrameSystemPhase (290) */2538 /** @name FrameSystemPhase (292) */
2447 export interface FrameSystemPhase extends Enum {2539 export interface FrameSystemPhase extends Enum {
2448 readonly isApplyExtrinsic: boolean;2540 readonly isApplyExtrinsic: boolean;
2449 readonly asApplyExtrinsic: u32;2541 readonly asApplyExtrinsic: u32;
2452 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2544 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
2453 }2545 }
24542546
2455 /** @name FrameSystemLastRuntimeUpgradeInfo (292) */2547 /** @name FrameSystemLastRuntimeUpgradeInfo (294) */
2456 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2548 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
2457 readonly specVersion: Compact<u32>;2549 readonly specVersion: Compact<u32>;
2458 readonly specName: Text;2550 readonly specName: Text;
2459 }2551 }
24602552
2461 /** @name FrameSystemLimitsBlockWeights (293) */2553 /** @name FrameSystemLimitsBlockWeights (295) */
2462 export interface FrameSystemLimitsBlockWeights extends Struct {2554 export interface FrameSystemLimitsBlockWeights extends Struct {
2463 readonly baseBlock: u64;2555 readonly baseBlock: u64;
2464 readonly maxBlock: u64;2556 readonly maxBlock: u64;
2465 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2557 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
2466 }2558 }
24672559
2468 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (294) */2560 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (296) */
2469 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2561 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
2470 readonly normal: FrameSystemLimitsWeightsPerClass;2562 readonly normal: FrameSystemLimitsWeightsPerClass;
2471 readonly operational: FrameSystemLimitsWeightsPerClass;2563 readonly operational: FrameSystemLimitsWeightsPerClass;
2472 readonly mandatory: FrameSystemLimitsWeightsPerClass;2564 readonly mandatory: FrameSystemLimitsWeightsPerClass;
2473 }2565 }
24742566
2475 /** @name FrameSystemLimitsWeightsPerClass (295) */2567 /** @name FrameSystemLimitsWeightsPerClass (297) */
2476 export interface FrameSystemLimitsWeightsPerClass extends Struct {2568 export interface FrameSystemLimitsWeightsPerClass extends Struct {
2477 readonly baseExtrinsic: u64;2569 readonly baseExtrinsic: u64;
2478 readonly maxExtrinsic: Option<u64>;2570 readonly maxExtrinsic: Option<u64>;
2479 readonly maxTotal: Option<u64>;2571 readonly maxTotal: Option<u64>;
2480 readonly reserved: Option<u64>;2572 readonly reserved: Option<u64>;
2481 }2573 }
24822574
2483 /** @name FrameSystemLimitsBlockLength (297) */2575 /** @name FrameSystemLimitsBlockLength (299) */
2484 export interface FrameSystemLimitsBlockLength extends Struct {2576 export interface FrameSystemLimitsBlockLength extends Struct {
2485 readonly max: FrameSupportWeightsPerDispatchClassU32;2577 readonly max: FrameSupportWeightsPerDispatchClassU32;
2486 }2578 }
24872579
2488 /** @name FrameSupportWeightsPerDispatchClassU32 (298) */2580 /** @name FrameSupportWeightsPerDispatchClassU32 (300) */
2489 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2581 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
2490 readonly normal: u32;2582 readonly normal: u32;
2491 readonly operational: u32;2583 readonly operational: u32;
2492 readonly mandatory: u32;2584 readonly mandatory: u32;
2493 }2585 }
24942586
2495 /** @name FrameSupportWeightsRuntimeDbWeight (299) */2587 /** @name FrameSupportWeightsRuntimeDbWeight (301) */
2496 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2588 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
2497 readonly read: u64;2589 readonly read: u64;
2498 readonly write: u64;2590 readonly write: u64;
2499 }2591 }
25002592
2501 /** @name SpVersionRuntimeVersion (300) */2593 /** @name SpVersionRuntimeVersion (302) */
2502 export interface SpVersionRuntimeVersion extends Struct {2594 export interface SpVersionRuntimeVersion extends Struct {
2503 readonly specName: Text;2595 readonly specName: Text;
2504 readonly implName: Text;2596 readonly implName: Text;
2510 readonly stateVersion: u8;2602 readonly stateVersion: u8;
2511 }2603 }
25122604
2513 /** @name FrameSystemError (304) */2605 /** @name FrameSystemError (306) */
2514 export interface FrameSystemError extends Enum {2606 export interface FrameSystemError extends Enum {
2515 readonly isInvalidSpecName: boolean;2607 readonly isInvalidSpecName: boolean;
2516 readonly isSpecVersionNeedsToIncrease: boolean;2608 readonly isSpecVersionNeedsToIncrease: boolean;
2521 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2613 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
2522 }2614 }
25232615
2524 /** @name OrmlVestingModuleError (306) */2616 /** @name OrmlVestingModuleError (308) */
2525 export interface OrmlVestingModuleError extends Enum {2617 export interface OrmlVestingModuleError extends Enum {
2526 readonly isZeroVestingPeriod: boolean;2618 readonly isZeroVestingPeriod: boolean;
2527 readonly isZeroVestingPeriodCount: boolean;2619 readonly isZeroVestingPeriodCount: boolean;
2532 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2624 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
2533 }2625 }
25342626
2535 /** @name CumulusPalletXcmpQueueInboundChannelDetails (308) */2627 /** @name CumulusPalletXcmpQueueInboundChannelDetails (310) */
2536 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2628 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
2537 readonly sender: u32;2629 readonly sender: u32;
2538 readonly state: CumulusPalletXcmpQueueInboundState;2630 readonly state: CumulusPalletXcmpQueueInboundState;
2539 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2631 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
2540 }2632 }
25412633
2542 /** @name CumulusPalletXcmpQueueInboundState (309) */2634 /** @name CumulusPalletXcmpQueueInboundState (311) */
2543 export interface CumulusPalletXcmpQueueInboundState extends Enum {2635 export interface CumulusPalletXcmpQueueInboundState extends Enum {
2544 readonly isOk: boolean;2636 readonly isOk: boolean;
2545 readonly isSuspended: boolean;2637 readonly isSuspended: boolean;
2546 readonly type: 'Ok' | 'Suspended';2638 readonly type: 'Ok' | 'Suspended';
2547 }2639 }
25482640
2549 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (312) */2641 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (314) */
2550 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2642 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
2551 readonly isConcatenatedVersionedXcm: boolean;2643 readonly isConcatenatedVersionedXcm: boolean;
2552 readonly isConcatenatedEncodedBlob: boolean;2644 readonly isConcatenatedEncodedBlob: boolean;
2553 readonly isSignals: boolean;2645 readonly isSignals: boolean;
2554 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2646 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
2555 }2647 }
25562648
2557 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (315) */2649 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (317) */
2558 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2650 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
2559 readonly recipient: u32;2651 readonly recipient: u32;
2560 readonly state: CumulusPalletXcmpQueueOutboundState;2652 readonly state: CumulusPalletXcmpQueueOutboundState;
2563 readonly lastIndex: u16;2655 readonly lastIndex: u16;
2564 }2656 }
25652657
2566 /** @name CumulusPalletXcmpQueueOutboundState (316) */2658 /** @name CumulusPalletXcmpQueueOutboundState (318) */
2567 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2659 export interface CumulusPalletXcmpQueueOutboundState extends Enum {
2568 readonly isOk: boolean;2660 readonly isOk: boolean;
2569 readonly isSuspended: boolean;2661 readonly isSuspended: boolean;
2570 readonly type: 'Ok' | 'Suspended';2662 readonly type: 'Ok' | 'Suspended';
2571 }2663 }
25722664
2573 /** @name CumulusPalletXcmpQueueQueueConfigData (318) */2665 /** @name CumulusPalletXcmpQueueQueueConfigData (320) */
2574 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2666 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
2575 readonly suspendThreshold: u32;2667 readonly suspendThreshold: u32;
2576 readonly dropThreshold: u32;2668 readonly dropThreshold: u32;
2580 readonly xcmpMaxIndividualWeight: u64;2672 readonly xcmpMaxIndividualWeight: u64;
2581 }2673 }
25822674
2583 /** @name CumulusPalletXcmpQueueError (320) */2675 /** @name CumulusPalletXcmpQueueError (322) */
2584 export interface CumulusPalletXcmpQueueError extends Enum {2676 export interface CumulusPalletXcmpQueueError extends Enum {
2585 readonly isFailedToSend: boolean;2677 readonly isFailedToSend: boolean;
2586 readonly isBadXcmOrigin: boolean;2678 readonly isBadXcmOrigin: boolean;
2590 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2682 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
2591 }2683 }
25922684
2593 /** @name PalletXcmError (321) */2685 /** @name PalletXcmError (323) */
2594 export interface PalletXcmError extends Enum {2686 export interface PalletXcmError extends Enum {
2595 readonly isUnreachable: boolean;2687 readonly isUnreachable: boolean;
2596 readonly isSendFailure: boolean;2688 readonly isSendFailure: boolean;
2608 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2700 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
2609 }2701 }
26102702
2611 /** @name CumulusPalletXcmError (322) */2703 /** @name CumulusPalletXcmError (324) */
2612 export type CumulusPalletXcmError = Null;2704 export type CumulusPalletXcmError = Null;
26132705
2614 /** @name CumulusPalletDmpQueueConfigData (323) */2706 /** @name CumulusPalletDmpQueueConfigData (325) */
2615 export interface CumulusPalletDmpQueueConfigData extends Struct {2707 export interface CumulusPalletDmpQueueConfigData extends Struct {
2616 readonly maxIndividual: u64;2708 readonly maxIndividual: u64;
2617 }2709 }
26182710
2619 /** @name CumulusPalletDmpQueuePageIndexData (324) */2711 /** @name CumulusPalletDmpQueuePageIndexData (326) */
2620 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2712 export interface CumulusPalletDmpQueuePageIndexData extends Struct {
2621 readonly beginUsed: u32;2713 readonly beginUsed: u32;
2622 readonly endUsed: u32;2714 readonly endUsed: u32;
2623 readonly overweightCount: u64;2715 readonly overweightCount: u64;
2624 }2716 }
26252717
2626 /** @name CumulusPalletDmpQueueError (327) */2718 /** @name CumulusPalletDmpQueueError (329) */
2627 export interface CumulusPalletDmpQueueError extends Enum {2719 export interface CumulusPalletDmpQueueError extends Enum {
2628 readonly isUnknown: boolean;2720 readonly isUnknown: boolean;
2629 readonly isOverLimit: boolean;2721 readonly isOverLimit: boolean;
2630 readonly type: 'Unknown' | 'OverLimit';2722 readonly type: 'Unknown' | 'OverLimit';
2631 }2723 }
26322724
2633 /** @name PalletUniqueError (331) */2725 /** @name PalletUniqueError (333) */
2634 export interface PalletUniqueError extends Enum {2726 export interface PalletUniqueError extends Enum {
2635 readonly isCollectionDecimalPointLimitExceeded: boolean;2727 readonly isCollectionDecimalPointLimitExceeded: boolean;
2636 readonly isConfirmUnsetSponsorFail: boolean;2728 readonly isConfirmUnsetSponsorFail: boolean;
2637 readonly isEmptyArgument: boolean;2729 readonly isEmptyArgument: boolean;
2638 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2730 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
2639 }2731 }
26402732
2641 /** @name UpDataStructsCollection (332) */2733 /** @name UpDataStructsCollection (334) */
2642 export interface UpDataStructsCollection extends Struct {2734 export interface UpDataStructsCollection extends Struct {
2643 readonly owner: AccountId32;2735 readonly owner: AccountId32;
2644 readonly mode: UpDataStructsCollectionMode;2736 readonly mode: UpDataStructsCollectionMode;
2648 readonly sponsorship: UpDataStructsSponsorshipState;2740 readonly sponsorship: UpDataStructsSponsorshipState;
2649 readonly limits: UpDataStructsCollectionLimits;2741 readonly limits: UpDataStructsCollectionLimits;
2650 readonly permissions: UpDataStructsCollectionPermissions;2742 readonly permissions: UpDataStructsCollectionPermissions;
2743 readonly externalCollection: bool;
2651 }2744 }
26522745
2653 /** @name UpDataStructsSponsorshipState (333) */2746 /** @name UpDataStructsSponsorshipState (335) */
2654 export interface UpDataStructsSponsorshipState extends Enum {2747 export interface UpDataStructsSponsorshipState extends Enum {
2655 readonly isDisabled: boolean;2748 readonly isDisabled: boolean;
2656 readonly isUnconfirmed: boolean;2749 readonly isUnconfirmed: boolean;
2660 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2753 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
2661 }2754 }
26622755
2663 /** @name UpDataStructsProperties (334) */2756 /** @name UpDataStructsProperties (336) */
2664 export interface UpDataStructsProperties extends Struct {2757 export interface UpDataStructsProperties extends Struct {
2665 readonly map: UpDataStructsPropertiesMapBoundedVec;2758 readonly map: UpDataStructsPropertiesMapBoundedVec;
2666 readonly consumedSpace: u32;2759 readonly consumedSpace: u32;
2667 readonly spaceLimit: u32;2760 readonly spaceLimit: u32;
2668 }2761 }
26692762
2670 /** @name UpDataStructsPropertiesMapBoundedVec (335) */2763 /** @name UpDataStructsPropertiesMapBoundedVec (337) */
2671 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}2764 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
26722765
2673 /** @name UpDataStructsPropertiesMapPropertyPermission (340) */2766 /** @name UpDataStructsPropertiesMapPropertyPermission (342) */
2674 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}2767 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
26752768
2676 /** @name UpDataStructsCollectionStats (347) */2769 /** @name UpDataStructsCollectionStats (349) */
2677 export interface UpDataStructsCollectionStats extends Struct {2770 export interface UpDataStructsCollectionStats extends Struct {
2678 readonly created: u32;2771 readonly created: u32;
2679 readonly destroyed: u32;2772 readonly destroyed: u32;
2707 readonly permissions: UpDataStructsCollectionPermissions;2800 readonly permissions: UpDataStructsCollectionPermissions;
2708 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2801 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
2709 readonly properties: Vec<UpDataStructsProperty>;2802 readonly properties: Vec<UpDataStructsProperty>;
2803 readonly readOnly: bool;
2710 }2804 }
27112805
2712 /** @name UpDataStructsRmrkCollectionInfo (329) */2806 /** @name UpDataStructsRmrkCollectionInfo (329) */
2745 /** @name UpDataStructsRmrkResourceInfo (336) */2839 /** @name UpDataStructsRmrkResourceInfo (336) */
2746 export interface UpDataStructsRmrkResourceInfo extends Struct {2840 export interface UpDataStructsRmrkResourceInfo extends Struct {
2747 readonly id: u32;2841 readonly id: u32;
2748 readonly resource: UpDataStructsRmrkResourceTypes;2842 readonly resource: RmrkTraitsResourceResourceTypes;
2749 readonly pending: bool;2843 readonly pending: bool;
2750 readonly pendingRemoval: bool;2844 readonly pendingRemoval: bool;
2751 }2845 }
27522846
2753 /** @name UpDataStructsRmrkResourceTypes (339) */2847 /** @name UpDataStructsRmrkResourceTypes (339) */
2754 export interface UpDataStructsRmrkResourceTypes extends Enum {2848 export interface UpDataStructsRmrkResourceTypes extends Enum {
2755 readonly isBasic: boolean;2849 readonly isBasic: boolean;
2756 readonly asBasic: UpDataStructsRmrkBasicResource;2850 readonly asBasic: RmrkTraitsResourceBasicResource;
2757 readonly isComposable: boolean;2851 readonly isComposable: boolean;
2758 readonly asComposable: UpDataStructsRmrkComposableResource;2852 readonly asComposable: RmrkTraitsResourceComposableResource;
2759 readonly isSlot: boolean;2853 readonly isSlot: boolean;
2760 readonly asSlot: UpDataStructsRmrkSlotResource;2854 readonly asSlot: RmrkTraitsResourceSlotResource;
2761 readonly type: 'Basic' | 'Composable' | 'Slot';2855 readonly type: 'Basic' | 'Composable' | 'Slot';
2762 }2856 }
27632857
2889 readonly isPropertyKeyIsTooLong: boolean;2983 readonly isPropertyKeyIsTooLong: boolean;
2890 readonly isInvalidCharacterInPropertyKey: boolean;2984 readonly isInvalidCharacterInPropertyKey: boolean;
2891 readonly isEmptyPropertyKey: boolean;2985 readonly isEmptyPropertyKey: boolean;
2986 readonly isCollectionIsExternal: boolean;
2987 readonly isCollectionIsInternal: boolean;
2892 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';2988 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
2893 }2989 }
28942990
2895 /** @name PalletFungibleError (360) */2991 /** @name PalletFungibleError (360) */