difftreelog
test regenerate types
in: master
6 files changed
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -446,25 +446,83 @@
[key: string]: AugmentedError<ApiType>;
};
rmrkCore: {
+ /**
+ * Not the target owner of the sent NFT.
+ **/
CannotAcceptNonOwnedNft: AugmentedError<ApiType>;
+ /**
+ * Not the target owner of the sent NFT.
+ **/
CannotRejectNonOwnedNft: AugmentedError<ApiType>;
+ /**
+ * NFT was not sent and is not pending.
+ **/
CannotRejectNonPendingNft: AugmentedError<ApiType>;
+ /**
+ * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.
+ * Sending to self is redundant.
+ **/
CannotSendToDescendentOrSelf: AugmentedError<ApiType>;
+ /**
+ * Too many tokens created in the collection, no new ones are allowed.
+ **/
CollectionFullOrLocked: AugmentedError<ApiType>;
+ /**
+ * Only destroying collections without tokens is allowed.
+ **/
CollectionNotEmpty: AugmentedError<ApiType>;
+ /**
+ * Collection does not exist, has a wrong type, or does not map to a Unique ID.
+ **/
CollectionUnknown: AugmentedError<ApiType>;
+ /**
+ * Property of the type of RMRK collection could not be read successfully.
+ **/
CorruptedCollectionType: AugmentedError<ApiType>;
- NftTypeEncodeError: AugmentedError<ApiType>;
+ /**
+ * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.
+ **/
NoAvailableCollectionId: AugmentedError<ApiType>;
+ /**
+ * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.
+ **/
NoAvailableNftId: AugmentedError<ApiType>;
+ /**
+ * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.
+ **/
NoAvailableResourceId: AugmentedError<ApiType>;
+ /**
+ * Token is marked as non-transferable, and thus cannot be transferred.
+ **/
NonTransferable: AugmentedError<ApiType>;
+ /**
+ * No permission to perform action.
+ **/
NoPermission: AugmentedError<ApiType>;
+ /**
+ * No such resource found.
+ **/
ResourceDoesntExist: AugmentedError<ApiType>;
+ /**
+ * Resource is not pending for the operation.
+ **/
ResourceNotPending: AugmentedError<ApiType>;
+ /**
+ * Could not find a property by the supplied key.
+ **/
RmrkPropertyIsNotFound: AugmentedError<ApiType>;
+ /**
+ * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).
+ **/
RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;
+ /**
+ * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).
+ **/
RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;
+ /**
+ * Something went wrong when decoding encoded data from the storage.
+ * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.
+ **/
UnableToDecodeRmrkData: AugmentedError<ApiType>;
/**
* Generic error
@@ -472,12 +530,33 @@
[key: string]: AugmentedError<ApiType>;
};
rmrkEquip: {
+ /**
+ * Base collection linked to this ID does not exist.
+ **/
BaseDoesntExist: AugmentedError<ApiType>;
+ /**
+ * No Theme named "default" is associated with the Base.
+ **/
NeedsDefaultThemeFirst: AugmentedError<ApiType>;
+ /**
+ * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.
+ **/
NoAvailableBaseId: AugmentedError<ApiType>;
+ /**
+ * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow
+ **/
NoAvailablePartId: AugmentedError<ApiType>;
+ /**
+ * Cannot assign equippables to a fixed Part.
+ **/
NoEquippableOnFixedPart: AugmentedError<ApiType>;
+ /**
+ * Part linked to this ID does not exist.
+ **/
PartDoesntExist: AugmentedError<ApiType>;
+ /**
+ * No permission to perform action.
+ **/
PermissionError: AugmentedError<ApiType>;
/**
* Generic error
@@ -508,15 +587,15 @@
};
structure: {
/**
- * While iterating over children, reached the breadth limit.
+ * While nesting, reached the breadth limit of nesting, exceeding the provided budget.
**/
BreadthLimit: AugmentedError<ApiType>;
/**
- * While searching for the owner, reached the depth limit.
+ * While nesting, reached the depth limit of nesting, exceeding the provided budget.
**/
DepthLimit: AugmentedError<ApiType>;
/**
- * While searching for the owner, encountered an already checked account, detecting a loop.
+ * While nesting, encountered an already checked account, detecting a loop.
**/
OuroborosDetected: AugmentedError<ApiType>;
/**
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -492,7 +492,13 @@
[key: string]: QueryableStorageEntry<ApiType>;
};
rmrkCore: {
+ /**
+ * Latest yet-unused collection ID.
+ **/
collectionIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
+ * Mapping from RMRK collection ID to Unique's.
+ **/
uniqueCollectionId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
/**
* Generic query
@@ -500,7 +506,13 @@
[key: string]: QueryableStorageEntry<ApiType>;
};
rmrkEquip: {
+ /**
+ * Checkmark that a Base has a Theme NFT named "default".
+ **/
baseHasDefaultTheme: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+ /**
+ * Map of a Base ID and a Part ID to an NFT in the Base collection serving as the Part.
+ **/
inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
/**
* Generic query
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -348,103 +348,259 @@
};
rmrkCore: {
/**
- * Accepts an NFT sent from another account to self or owned NFT
+ * Accept an NFT sent from another account to self or an owned NFT.
+ *
+ * The NFT in question must be pending, and, thus, be [sent](`Pallet::send`) first.
*
- * Parameters:
- * - `origin`: sender of the transaction
- * - `rmrk_collection_id`: collection id of the nft to be accepted
- * - `rmrk_nft_id`: nft id of the nft to be accepted
- * - `new_owner`: either origin's account ID or origin-owned NFT, whichever the NFT was
- * sent to
+ * # Permissions:
+ * - Token-owner-to-be
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID of the NFT to be accepted.
+ * - `rmrk_nft_id`: ID of the NFT to be accepted.
+ * - `new_owner`: Either the sender's account ID or a sender-owned NFT,
+ * whichever the accepted NFT was sent to.
**/
acceptNft: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple | { AccountId: any } | { CollectionAndNftTuple: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsNftAccountIdOrCollectionNftTuple]>;
/**
- * accept the addition of a new resource to an existing NFT
+ * Accept the addition of a newly created pending resource to an existing NFT.
+ *
+ * This transaction is needed when a resource is created and assigned to an NFT
+ * by a non-owner, i.e. the collection issuer, with one of the
+ * [`add_...` transactions](Pallet::add_basic_resource).
+ *
+ * # Permissions:
+ * - Token owner
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID of the NFT.
+ * - `rmrk_nft_id`: ID of the NFT with a pending resource to be accepted.
+ * - `resource_id`: ID of the newly created pending resource.
**/
acceptResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
/**
- * accept the removal of a resource of an existing NFT
+ * Accept the removal of a removal-pending resource from an NFT.
+ *
+ * This transaction is needed when a non-owner, i.e. the collection issuer,
+ * requests a [removal](`Pallet::remove_resource`) of a resource from an NFT.
+ *
+ * # Permissions:
+ * - Token owner
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID of the NFT.
+ * - `rmrk_nft_id`: ID of the NFT with a resource to be removed.
+ * - `resource_id`: ID of the removal-pending resource.
**/
acceptResourceRemoval: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
/**
- * Create basic resource
+ * Create and set/propose a basic resource for an NFT.
+ *
+ * A basic resource is the simplest, lacking a Base and anything that comes with it.
+ * See RMRK docs for more information and examples.
+ *
+ * # Permissions:
+ * - Collection issuer - if not the token owner, adding the resource will warrant
+ * the owner's [acceptance](Pallet::accept_resource).
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID of the NFT.
+ * - `nft_id`: ID of the NFT to assign a resource to.
+ * - `resource`: Data of the resource to be created.
**/
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]>;
/**
- * Create composable resource
+ * Create and set/propose a composable resource for an NFT.
+ *
+ * A composable resource links to a Base and has a subset of its Parts it is composed of.
+ * See RMRK docs for more information and examples.
+ *
+ * # Permissions:
+ * - Collection issuer - if not the token owner, adding the resource will warrant
+ * the owner's [acceptance](Pallet::accept_resource).
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID of the NFT.
+ * - `nft_id`: ID of the NFT to assign a resource to.
+ * - `resource`: Data of the resource to be created.
**/
addComposableResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: RmrkTraitsResourceComposableResource | { parts?: any; base?: any; src?: any; metadata?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsResourceComposableResource]>;
/**
- * Create slot resource
+ * Create and set/propose a slot resource for an NFT.
+ *
+ * A slot resource links to a Base and a slot ID in it which it can fit into.
+ * See RMRK docs for more information and examples.
+ *
+ * # Permissions:
+ * - Collection issuer - if not the token owner, adding the resource will warrant
+ * the owner's [acceptance](Pallet::accept_resource).
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID of the NFT.
+ * - `nft_id`: ID of the NFT to assign a resource to.
+ * - `resource`: Data of the resource to be created.
**/
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]>;
/**
- * burn nft
+ * Burn an NFT, destroying it and its nested tokens up to the specified limit.
+ * If the burning budget is exceeded, the transaction is reverted.
+ *
+ * This is the way to burn a nested token as well.
+ *
+ * For more information, see [`burn_recursively`](pallet_nonfungible::pallet::Pallet::burn_recursively).
+ *
+ * # Permissions:
+ * * Token owner
+ *
+ * # Arguments:
+ * - `collection_id`: RMRK ID of the collection in which the NFT to burn belongs to.
+ * - `nft_id`: ID of the NFT to be destroyed.
+ * - `max_burns`: Maximum number of tokens to burn, assuming nesting. The transaction
+ * is reverted if there are more tokens to burn in the nesting tree than this number.
+ * This is primarily a mechanism of transaction weight control.
**/
burnNft: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, maxBurns: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
/**
- * Change the issuer of a collection
+ * Change the issuer of a collection. Analogous to Unique's collection's [`owner`](up_data_structs::Collection).
*
- * Parameters:
- * - `origin`: sender of the transaction
- * - `collection_id`: collection id of the nft to change issuer of
- * - `new_issuer`: Collection's new issuer
+ * # Permissions:
+ * * Collection issuer
+ *
+ * # Arguments:
+ * - `collection_id`: RMRK collection ID to change the issuer of.
+ * - `new_issuer`: Collection's new issuer.
**/
changeCollectionIssuer: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newIssuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, MultiAddress]>;
/**
- * Create a collection
+ * Create a new collection of NFTs.
+ *
+ * # Permissions:
+ * * Anyone - will be assigned as the issuer of the collection.
+ *
+ * # Arguments:
+ * - `metadata`: Metadata describing the collection, e.g. IPFS hash. Cannot be changed.
+ * - `max`: Optional maximum number of tokens.
+ * - `symbol`: UTF-8 string with token prefix, by which to represent the token in wallets and UIs.
+ * Analogous to Unique's [`token_prefix`](up_data_structs::Collection). Cannot be changed.
**/
createCollection: AugmentedSubmittable<(metadata: Bytes | string | Uint8Array, max: Option<u32> | null | object | string | Uint8Array, symbol: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, Option<u32>, Bytes]>;
/**
- * destroy collection
+ * Destroy a collection.
+ *
+ * Only empty collections can be destroyed. If it has any tokens, they must be burned first.
+ *
+ * # Permissions:
+ * * Collection issuer
+ *
+ * # Arguments:
+ * - `collection_id`: RMRK ID of the collection to destroy.
**/
destroyCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
/**
- * lock collection
+ * "Lock" the collection and prevent new token creation. Cannot be undone.
+ *
+ * # Permissions:
+ * * Collection issuer
+ *
+ * # Arguments:
+ * - `collection_id`: RMRK ID of the collection to lock.
**/
lockCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
/**
- * Mints an NFT in the specified collection
- * Sets metadata and the royalty attribute
+ * Mint an NFT in a specified collection.
+ *
+ * # Permissions:
+ * * Collection issuer
*
- * Parameters:
- * - `collection_id`: The class of the asset to be minted.
- * - `nft_id`: The nft value of the asset to be minted.
- * - `recipient`: Receiver of the royalty
- * - `royalty`: Permillage reward from each trade for the Recipient
- * - `metadata`: Arbitrary data about an nft, e.g. IPFS hash
- * - `transferable`: Ability to transfer this NFT
+ * # Arguments:
+ * - `owner`: Owner account of the NFT. If set to None, defaults to the sender (collection issuer).
+ * - `collection_id`: RMRK collection ID for the NFT to be minted within. Cannot be changed.
+ * - `recipient`: Receiver account of the royalty. Has no effect if the `royalty_amount` is not set. Cannot be changed.
+ * - `royalty_amount`: Optional permillage reward from each trade for the `recipient`. Cannot be changed.
+ * - `metadata`: Arbitrary data about an NFT, e.g. IPFS hash. Cannot be changed.
+ * - `transferable`: Can this NFT be transferred? Cannot be changed.
+ * - `resources`: Resource data to be added to the NFT immediately after minting.
**/
mintNft: AugmentedSubmittable<(owner: Option<AccountId32> | null | object | 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, resources: Option<Vec<RmrkTraitsResourceResourceTypes>> | null | object | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<AccountId32>, u32, Option<AccountId32>, Option<Permill>, Bytes, bool, Option<Vec<RmrkTraitsResourceResourceTypes>>]>;
/**
- * Rejects an NFT sent from another account to self or owned NFT
+ * Reject an NFT sent from another account to self or owned NFT.
+ * The NFT in question will not be sent back and burnt instead.
+ *
+ * The NFT in question must be pending, and, thus, be [sent](`Pallet::send`) first.
+ *
+ * # Permissions:
+ * - Token-owner-to-be-not
*
- * Parameters:
- * - `origin`: sender of the transaction
- * - `rmrk_collection_id`: collection id of the nft to be accepted
- * - `rmrk_nft_id`: nft id of the nft to be accepted
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK ID of the NFT to be rejected.
+ * - `rmrk_nft_id`: ID of the NFT to be rejected.
**/
rejectNft: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
/**
- * remove resource
+ * Remove and erase a resource from an NFT.
+ *
+ * If the sender does not own the NFT, then it will be pending confirmation,
+ * and will have to be [accepted](Pallet::accept_resource_removal) by the token owner.
+ *
+ * # Permissions
+ * - Collection issuer
+ *
+ * # Arguments
+ * - `collection_id`: RMRK ID of a collection to which the NFT making use of the resource belongs to.
+ * - `nft_id`: ID of the NFT with a resource to be removed.
+ * - `resource_id`: ID of the resource to be removed.
**/
removeResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
/**
- * Transfers a NFT from an Account or NFT A to another Account or NFT B
+ * Transfer an NFT from an account/NFT A to another account/NFT B.
+ * The token must be transferable. Nesting cannot occur deeper than the [`NESTING_BUDGET`].
*
- * Parameters:
- * - `origin`: sender of the transaction
- * - `rmrk_collection_id`: collection id of the nft to be transferred
- * - `rmrk_nft_id`: nft id of the nft to be transferred
- * - `new_owner`: new owner of the nft which can be either an account or a NFT
+ * If the target owner is an NFT owned by another account, then the NFT will enter
+ * the pending state and will have to be accepted by the other account.
+ *
+ * # Permissions:
+ * - Token owner
+ *
+ * # Arguments:
+ * - `collection_id`: RMRK ID of the collection of the NFT to be transferred.
+ * - `nft_id`: ID of the NFT to be transferred.
+ * - `new_owner`: New owner of the nft which can be either an account or a NFT.
**/
send: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple | { AccountId: any } | { CollectionAndNftTuple: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsNftAccountIdOrCollectionNftTuple]>;
/**
- * set a different order of resource priority
+ * Set a different order of resource priorities for an NFT. Priorities can be used,
+ * for example, for order of rendering.
+ *
+ * Note that the priorities are not updated automatically, and are an empty vector
+ * by default. There is no pre-set definition for the order to be particular,
+ * it can be interpreted arbitrarily use-case by use-case.
+ *
+ * # Permissions:
+ * - Token owner
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID of the NFT.
+ * - `rmrk_nft_id`: ID of the NFT to rearrange resource priorities for.
+ * - `priorities`: Ordered vector of resource IDs.
**/
setPriority: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, priorities: Vec<u32> | (u32 | AnyNumber | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, u32, Vec<u32>]>;
/**
- * set a custom value on an NFT
+ * Add or edit a custom user property, a key-value pair, describing the metadata
+ * of a token or a collection, on either one of these.
+ *
+ * Note that in this proxy implementation many details regarding RMRK are stored
+ * as scoped properties prefixed with "rmrk:", normally inaccessible
+ * to external transactions and RPCs.
+ *
+ * # Permissions:
+ * - Collection issuer - in case of collection property
+ * - Token owner - in case of NFT property
+ *
+ * # Arguments:
+ * - `rmrk_collection_id`: RMRK collection ID.
+ * - `maybe_nft_id`: Optional ID of the NFT. If left empty, then the property is set for the collection.
+ * - `key`: Key of the custom property to be referenced by.
+ * - `value`: Value of the custom property to be stored.
**/
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]>;
/**
@@ -454,32 +610,50 @@
};
rmrkEquip: {
/**
- * Creates a new Base.
- * Modeled after [base interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/base.md)
+ * Create a new Base.
+ *
+ * Modeled after the [Base interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/base.md)
+ *
+ * # Permissions
+ * - Anyone - will be assigned as the issuer of the Base.
*
- * Parameters:
- * - origin: Caller, will be assigned as the issuer of the Base
- * - base_type: media type, e.g. "svg"
- * - symbol: arbitrary client-chosen symbol
- * - parts: array of Fixed and Slot parts composing the base, confined in length by
- * RmrkPartsLimit
+ * # Arguments:
+ * - `base_type`: Arbitrary media type, e.g. "svg".
+ * - `symbol`: Arbitrary client-chosen symbol.
+ * - `parts`: Array of Fixed and Slot Parts composing the Base,
+ * confined in length by [`RmrkPartsLimit`](up_data_structs::RmrkPartsLimit).
**/
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>]>;
+ /**
+ * Update the array of Collections allowed to be equipped to a Base's specified Slot Part.
+ *
+ * Modeled after [equippable interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/equippable.md).
+ *
+ * # Permissions:
+ * - Base issuer
+ *
+ * # Arguments:
+ * - `base_id`: Base containing the Slot Part to be updated.
+ * - `part_id`: Slot Part whose Equippable List is being updated.
+ * - `equippables`: List of equippables that will override the current Equippables list.
+ **/
equippable: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, slotId: u32 | AnyNumber | Uint8Array, equippables: RmrkTraitsPartEquippableList | { All: any } | { Empty: any } | { Custom: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsPartEquippableList]>;
/**
- * Adds a Theme to a Base.
- * Modeled after [themeadd interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/themeadd.md)
- * Themes are stored in the Themes storage
+ * Add a Theme to a Base.
* A Theme named "default" is required prior to adding other Themes.
*
- * Parameters:
- * - origin: The caller of the function, must be issuer of the base
- * - base_id: The Base containing the Theme to be updated
- * - theme: The Theme to add to the Base. A Theme has a name and properties, which are an
+ * Modeled after [Themeadd interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/themeadd.md).
+ *
+ * # Permissions:
+ * - Base issuer
+ *
+ * # Arguments:
+ * - `base_id`: Base ID containing the Theme to be updated.
+ * - `theme`: Theme to add to the Base. A Theme has a name and properties, which are an
* array of [key, value, inherit].
- * - key: arbitrary BoundedString, defined by client
- * - value: arbitrary BoundedString, defined by client
- * - inherit: optional bool
+ * - `key`: Arbitrary BoundedString, defined by client.
+ * - `value`: Arbitrary BoundedString, defined by client.
+ * - `inherit`: Optional bool.
**/
themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
/**
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1314,7 +1314,6 @@
/** @name PalletRmrkCoreError */
export interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
- readonly isNftTypeEncodeError: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
readonly isRmrkPropertyValueIsTooLong: boolean;
readonly isRmrkPropertyIsNotFound: boolean;
@@ -1333,7 +1332,7 @@
readonly isCannotRejectNonPendingNft: boolean;
readonly isResourceNotPending: boolean;
readonly isNoAvailableResourceId: boolean;
- readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
+ readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
/** @name PalletRmrkCoreEvent */
@@ -2459,14 +2458,12 @@
/** @name UpDataStructsCreateReFungibleData */
export interface UpDataStructsCreateReFungibleData extends Struct {
- readonly constData: Bytes;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
/** @name UpDataStructsCreateRefungibleExData */
export interface UpDataStructsCreateRefungibleExData extends Struct {
- readonly constData: Bytes;
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1501,12 +1501,11 @@
* Lookup188: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
- constData: 'Bytes',
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup193: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup192: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -1517,22 +1516,21 @@
}
},
/**
- * Lookup195: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup194: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup202: up_data_structs::CreateRefungibleExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup201: up_data_structs::CreateRefungibleExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExData: {
- constData: 'Bytes',
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup204: pallet_unique_scheduler::pallet::Call<T>
+ * Lookup203: pallet_unique_scheduler::pallet::Call<T>
**/
PalletUniqueSchedulerCall: {
_enum: {
@@ -1556,7 +1554,7 @@
}
},
/**
- * Lookup206: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
+ * Lookup205: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
**/
FrameSupportScheduleMaybeHashed: {
_enum: {
@@ -1565,15 +1563,15 @@
}
},
/**
- * Lookup207: pallet_template_transaction_payment::Call<T>
+ * Lookup206: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup208: pallet_structure::pallet::Call<T>
+ * Lookup207: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup209: pallet_rmrk_core::pallet::Call<T>
+ * Lookup208: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -1664,7 +1662,7 @@
}
},
/**
- * Lookup215: rmrk_traits::resource::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup214: rmrk_traits::resource::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -1674,7 +1672,7 @@
}
},
/**
- * Lookup217: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup216: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -1683,7 +1681,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup219: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup218: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -1694,7 +1692,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup220: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup219: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -1705,7 +1703,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup222: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup221: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1714,7 +1712,7 @@
}
},
/**
- * Lookup226: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup225: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -1735,7 +1733,7 @@
}
},
/**
- * Lookup229: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup228: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -1744,7 +1742,7 @@
}
},
/**
- * Lookup231: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup230: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -1752,7 +1750,7 @@
src: 'Bytes'
},
/**
- * Lookup232: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup231: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -1761,7 +1759,7 @@
z: 'u32'
},
/**
- * Lookup233: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup232: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -1771,7 +1769,7 @@
}
},
/**
- * Lookup235: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup234: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -1779,14 +1777,14 @@
inherit: 'bool'
},
/**
- * Lookup237: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup236: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup239: pallet_evm::pallet::Call<T>
+ * Lookup238: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -1829,7 +1827,7 @@
}
},
/**
- * Lookup245: pallet_ethereum::pallet::Call<T>
+ * Lookup244: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -1839,7 +1837,7 @@
}
},
/**
- * Lookup246: ethereum::transaction::TransactionV2
+ * Lookup245: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -1849,7 +1847,7 @@
}
},
/**
- * Lookup247: ethereum::transaction::LegacyTransaction
+ * Lookup246: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -1861,7 +1859,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup248: ethereum::transaction::TransactionAction
+ * Lookup247: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -1870,7 +1868,7 @@
}
},
/**
- * Lookup249: ethereum::transaction::TransactionSignature
+ * Lookup248: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -1878,7 +1876,7 @@
s: 'H256'
},
/**
- * Lookup251: ethereum::transaction::EIP2930Transaction
+ * Lookup250: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -1894,14 +1892,14 @@
s: 'H256'
},
/**
- * Lookup253: ethereum::transaction::AccessListItem
+ * Lookup252: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup254: ethereum::transaction::EIP1559Transaction
+ * Lookup253: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -1918,7 +1916,7 @@
s: 'H256'
},
/**
- * Lookup255: pallet_evm_migration::pallet::Call<T>
+ * Lookup254: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -1936,7 +1934,7 @@
}
},
/**
- * Lookup258: pallet_sudo::pallet::Event<T>
+ * Lookup257: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -1952,7 +1950,7 @@
}
},
/**
- * Lookup260: sp_runtime::DispatchError
+ * Lookup259: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
@@ -1969,38 +1967,38 @@
}
},
/**
- * Lookup261: sp_runtime::ModuleError
+ * Lookup260: sp_runtime::ModuleError
**/
SpRuntimeModuleError: {
index: 'u8',
error: '[u8;4]'
},
/**
- * Lookup262: sp_runtime::TokenError
+ * Lookup261: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
_enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
},
/**
- * Lookup263: sp_runtime::ArithmeticError
+ * Lookup262: sp_runtime::ArithmeticError
**/
SpRuntimeArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup264: sp_runtime::TransactionalError
+ * Lookup263: sp_runtime::TransactionalError
**/
SpRuntimeTransactionalError: {
_enum: ['LimitReached', 'NoLayer']
},
/**
- * Lookup265: pallet_sudo::pallet::Error<T>
+ * Lookup264: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup266: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+ * Lookup265: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
**/
FrameSystemAccountInfo: {
nonce: 'u32',
@@ -2010,7 +2008,7 @@
data: 'PalletBalancesAccountData'
},
/**
- * Lookup267: frame_support::weights::PerDispatchClass<T>
+ * Lookup266: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU64: {
normal: 'u64',
@@ -2018,13 +2016,13 @@
mandatory: 'u64'
},
/**
- * Lookup268: sp_runtime::generic::digest::Digest
+ * Lookup267: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup270: sp_runtime::generic::digest::DigestItem
+ * Lookup269: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -2040,7 +2038,7 @@
}
},
/**
- * Lookup272: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup271: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -2048,7 +2046,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup274: frame_system::pallet::Event<T>
+ * Lookup273: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -2076,7 +2074,7 @@
}
},
/**
- * Lookup275: frame_support::weights::DispatchInfo
+ * Lookup274: frame_support::weights::DispatchInfo
**/
FrameSupportWeightsDispatchInfo: {
weight: 'u64',
@@ -2084,19 +2082,19 @@
paysFee: 'FrameSupportWeightsPays'
},
/**
- * Lookup276: frame_support::weights::DispatchClass
+ * Lookup275: frame_support::weights::DispatchClass
**/
FrameSupportWeightsDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup277: frame_support::weights::Pays
+ * Lookup276: frame_support::weights::Pays
**/
FrameSupportWeightsPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup278: orml_vesting::module::Event<T>
+ * Lookup277: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -2115,7 +2113,7 @@
}
},
/**
- * Lookup279: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup278: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -2130,7 +2128,7 @@
}
},
/**
- * Lookup280: pallet_xcm::pallet::Event<T>
+ * Lookup279: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -2153,7 +2151,7 @@
}
},
/**
- * Lookup281: xcm::v2::traits::Outcome
+ * Lookup280: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -2163,7 +2161,7 @@
}
},
/**
- * Lookup283: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup282: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -2173,7 +2171,7 @@
}
},
/**
- * Lookup284: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup283: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -2204,7 +2202,7 @@
}
},
/**
- * Lookup285: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup284: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletUniqueRawEvent: {
_enum: {
@@ -2221,7 +2219,7 @@
}
},
/**
- * Lookup286: pallet_unique_scheduler::pallet::Event<T>
+ * Lookup285: pallet_unique_scheduler::pallet::Event<T>
**/
PalletUniqueSchedulerEvent: {
_enum: {
@@ -2246,13 +2244,13 @@
}
},
/**
- * Lookup288: frame_support::traits::schedule::LookupError
+ * Lookup287: frame_support::traits::schedule::LookupError
**/
FrameSupportScheduleLookupError: {
_enum: ['Unknown', 'BadFormat']
},
/**
- * Lookup289: pallet_common::pallet::Event<T>
+ * Lookup288: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -2270,7 +2268,7 @@
}
},
/**
- * Lookup290: pallet_structure::pallet::Event<T>
+ * Lookup289: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -2278,7 +2276,7 @@
}
},
/**
- * Lookup291: pallet_rmrk_core::pallet::Event<T>
+ * Lookup290: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -2355,7 +2353,7 @@
}
},
/**
- * Lookup292: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup291: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -2370,7 +2368,7 @@
}
},
/**
- * Lookup293: pallet_evm::pallet::Event<T>
+ * Lookup292: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -2384,7 +2382,7 @@
}
},
/**
- * Lookup294: ethereum::log::Log
+ * Lookup293: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -2392,7 +2390,7 @@
data: 'Bytes'
},
/**
- * Lookup295: pallet_ethereum::pallet::Event
+ * Lookup294: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -2400,7 +2398,7 @@
}
},
/**
- * Lookup296: evm_core::error::ExitReason
+ * Lookup295: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -2411,13 +2409,13 @@
}
},
/**
- * Lookup297: evm_core::error::ExitSucceed
+ * Lookup296: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup298: evm_core::error::ExitError
+ * Lookup297: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -2439,13 +2437,13 @@
}
},
/**
- * Lookup301: evm_core::error::ExitRevert
+ * Lookup300: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup302: evm_core::error::ExitFatal
+ * Lookup301: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -2456,7 +2454,7 @@
}
},
/**
- * Lookup303: frame_system::Phase
+ * Lookup302: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -2466,14 +2464,14 @@
}
},
/**
- * Lookup305: frame_system::LastRuntimeUpgradeInfo
+ * Lookup304: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup306: frame_system::limits::BlockWeights
+ * Lookup305: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'u64',
@@ -2481,7 +2479,7 @@
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup307: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup306: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2489,7 +2487,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup308: frame_system::limits::WeightsPerClass
+ * Lookup307: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'u64',
@@ -2498,13 +2496,13 @@
reserved: 'Option<u64>'
},
/**
- * Lookup310: frame_system::limits::BlockLength
+ * Lookup309: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup311: frame_support::weights::PerDispatchClass<T>
+ * Lookup310: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -2512,14 +2510,14 @@
mandatory: 'u32'
},
/**
- * Lookup312: frame_support::weights::RuntimeDbWeight
+ * Lookup311: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup313: sp_version::RuntimeVersion
+ * Lookup312: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -2532,19 +2530,19 @@
stateVersion: 'u8'
},
/**
- * Lookup317: frame_system::pallet::Error<T>
+ * Lookup316: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup319: orml_vesting::module::Error<T>
+ * Lookup318: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup321: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup320: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2552,19 +2550,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup322: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup321: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup325: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup324: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup328: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup327: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2574,13 +2572,13 @@
lastIndex: 'u16'
},
/**
- * Lookup329: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup328: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup331: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup330: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2591,29 +2589,29 @@
xcmpMaxIndividualWeight: 'u64'
},
/**
- * Lookup333: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup332: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup334: pallet_xcm::pallet::Error<T>
+ * Lookup333: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup335: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup334: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup336: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup335: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'u64'
},
/**
- * Lookup337: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup336: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -2621,19 +2619,19 @@
overweightCount: 'u64'
},
/**
- * Lookup340: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup339: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup344: pallet_unique::Error<T>
+ * Lookup343: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup347: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup346: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletUniqueSchedulerScheduledV3: {
maybeId: 'Option<[u8;16]>',
@@ -2643,7 +2641,7 @@
origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup348: opal_runtime::OriginCaller
+ * Lookup347: opal_runtime::OriginCaller
**/
OpalRuntimeOriginCaller: {
_enum: {
@@ -2752,7 +2750,7 @@
}
},
/**
- * Lookup349: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ * Lookup348: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
**/
FrameSupportDispatchRawOrigin: {
_enum: {
@@ -2762,7 +2760,7 @@
}
},
/**
- * Lookup350: pallet_xcm::pallet::Origin
+ * Lookup349: pallet_xcm::pallet::Origin
**/
PalletXcmOrigin: {
_enum: {
@@ -2771,7 +2769,7 @@
}
},
/**
- * Lookup351: cumulus_pallet_xcm::pallet::Origin
+ * Lookup350: cumulus_pallet_xcm::pallet::Origin
**/
CumulusPalletXcmOrigin: {
_enum: {
@@ -2780,7 +2778,7 @@
}
},
/**
- * Lookup352: pallet_ethereum::RawOrigin
+ * Lookup351: pallet_ethereum::RawOrigin
**/
PalletEthereumRawOrigin: {
_enum: {
@@ -2788,17 +2786,17 @@
}
},
/**
- * Lookup353: sp_core::Void
+ * Lookup352: sp_core::Void
**/
SpCoreVoid: 'Null',
/**
- * Lookup354: pallet_unique_scheduler::pallet::Error<T>
+ * Lookup353: pallet_unique_scheduler::pallet::Error<T>
**/
PalletUniqueSchedulerError: {
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
},
/**
- * Lookup355: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup354: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -2812,7 +2810,7 @@
externalCollection: 'bool'
},
/**
- * Lookup356: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup355: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipState: {
_enum: {
@@ -2822,7 +2820,7 @@
}
},
/**
- * Lookup357: up_data_structs::Properties
+ * Lookup356: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2830,15 +2828,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup358: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup357: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup363: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup362: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup370: up_data_structs::CollectionStats
+ * Lookup369: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2846,18 +2844,18 @@
alive: 'u32'
},
/**
- * Lookup371: up_data_structs::TokenChild
+ * Lookup370: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup372: PhantomType::up_data_structs<T>
+ * Lookup371: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup374: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup373: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -2865,7 +2863,7 @@
pieces: 'u128'
},
/**
- * Lookup376: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup375: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2881,7 +2879,7 @@
readOnly: 'bool'
},
/**
- * Lookup377: rmrk_traits::collection::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup376: rmrk_traits::collection::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -2891,7 +2889,7 @@
nftsCount: 'u32'
},
/**
- * Lookup378: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup377: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -2901,14 +2899,14 @@
pending: 'bool'
},
/**
- * Lookup380: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup379: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup381: rmrk_traits::resource::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup380: rmrk_traits::resource::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -2917,14 +2915,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup382: rmrk_traits::property::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup381: rmrk_traits::property::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup383: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup382: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -2932,26 +2930,26 @@
symbol: 'Bytes'
},
/**
- * Lookup384: rmrk_traits::nft::NftChild
+ * Lookup383: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup386: pallet_common::pallet::Error<T>
+ * Lookup385: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_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', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
},
/**
- * Lookup388: pallet_fungible::pallet::Error<T>
+ * Lookup387: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup389: pallet_refungible::ItemData
+ * Lookup388: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
@@ -2990,7 +2988,7 @@
* Lookup400: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
- _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
+ _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
* Lookup402: pallet_rmrk_equip::pallet::Error<T>
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth162716271628 /** @name UpDataStructsCreateReFungibleData (188) */1628 /** @name UpDataStructsCreateReFungibleData (188) */1629 export interface UpDataStructsCreateReFungibleData extends Struct {1629 export interface UpDataStructsCreateReFungibleData extends Struct {1630 readonly constData: Bytes;1631 readonly pieces: u128;1630 readonly pieces: u128;1632 readonly properties: Vec<UpDataStructsProperty>;1631 readonly properties: Vec<UpDataStructsProperty>;1633 }1632 }163416331635 /** @name UpDataStructsCreateItemExData (193) */1634 /** @name UpDataStructsCreateItemExData (192) */1636 export interface UpDataStructsCreateItemExData extends Enum {1635 export interface UpDataStructsCreateItemExData extends Enum {1637 readonly isNft: boolean;1636 readonly isNft: boolean;1638 readonly asNft: Vec<UpDataStructsCreateNftExData>;1637 readonly asNft: Vec<UpDataStructsCreateNftExData>;1645 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1644 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1646 }1645 }164716461648 /** @name UpDataStructsCreateNftExData (195) */1647 /** @name UpDataStructsCreateNftExData (194) */1649 export interface UpDataStructsCreateNftExData extends Struct {1648 export interface UpDataStructsCreateNftExData extends Struct {1650 readonly properties: Vec<UpDataStructsProperty>;1649 readonly properties: Vec<UpDataStructsProperty>;1651 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1650 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1652 }1651 }165316521654 /** @name UpDataStructsCreateRefungibleExData (202) */1653 /** @name UpDataStructsCreateRefungibleExData (201) */1655 export interface UpDataStructsCreateRefungibleExData extends Struct {1654 export interface UpDataStructsCreateRefungibleExData extends Struct {1656 readonly constData: Bytes;1657 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1655 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1658 readonly properties: Vec<UpDataStructsProperty>;1656 readonly properties: Vec<UpDataStructsProperty>;1659 }1657 }166016581661 /** @name PalletUniqueSchedulerCall (204) */1659 /** @name PalletUniqueSchedulerCall (203) */1662 export interface PalletUniqueSchedulerCall extends Enum {1660 export interface PalletUniqueSchedulerCall extends Enum {1663 readonly isScheduleNamed: boolean;1661 readonly isScheduleNamed: boolean;1664 readonly asScheduleNamed: {1662 readonly asScheduleNamed: {1683 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';1681 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';1684 }1682 }168516831686 /** @name FrameSupportScheduleMaybeHashed (206) */1684 /** @name FrameSupportScheduleMaybeHashed (205) */1687 export interface FrameSupportScheduleMaybeHashed extends Enum {1685 export interface FrameSupportScheduleMaybeHashed extends Enum {1688 readonly isValue: boolean;1686 readonly isValue: boolean;1689 readonly asValue: Call;1687 readonly asValue: Call;1692 readonly type: 'Value' | 'Hash';1690 readonly type: 'Value' | 'Hash';1693 }1691 }169416921695 /** @name PalletTemplateTransactionPaymentCall (207) */1693 /** @name PalletTemplateTransactionPaymentCall (206) */1696 export type PalletTemplateTransactionPaymentCall = Null;1694 export type PalletTemplateTransactionPaymentCall = Null;169716951698 /** @name PalletStructureCall (208) */1696 /** @name PalletStructureCall (207) */1699 export type PalletStructureCall = Null;1697 export type PalletStructureCall = Null;170016981701 /** @name PalletRmrkCoreCall (209) */1699 /** @name PalletRmrkCoreCall (208) */1702 export interface PalletRmrkCoreCall extends Enum {1700 export interface PalletRmrkCoreCall extends Enum {1703 readonly isCreateCollection: boolean;1701 readonly isCreateCollection: boolean;1704 readonly asCreateCollection: {1702 readonly asCreateCollection: {1804 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1802 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1805 }1803 }180618041807 /** @name RmrkTraitsResourceResourceTypes (215) */1805 /** @name RmrkTraitsResourceResourceTypes (214) */1808 export interface RmrkTraitsResourceResourceTypes extends Enum {1806 export interface RmrkTraitsResourceResourceTypes extends Enum {1809 readonly isBasic: boolean;1807 readonly isBasic: boolean;1810 readonly asBasic: RmrkTraitsResourceBasicResource;1808 readonly asBasic: RmrkTraitsResourceBasicResource;1815 readonly type: 'Basic' | 'Composable' | 'Slot';1813 readonly type: 'Basic' | 'Composable' | 'Slot';1816 }1814 }181718151818 /** @name RmrkTraitsResourceBasicResource (217) */1816 /** @name RmrkTraitsResourceBasicResource (216) */1819 export interface RmrkTraitsResourceBasicResource extends Struct {1817 export interface RmrkTraitsResourceBasicResource extends Struct {1820 readonly src: Option<Bytes>;1818 readonly src: Option<Bytes>;1821 readonly metadata: Option<Bytes>;1819 readonly metadata: Option<Bytes>;1822 readonly license: Option<Bytes>;1820 readonly license: Option<Bytes>;1823 readonly thumb: Option<Bytes>;1821 readonly thumb: Option<Bytes>;1824 }1822 }182518231826 /** @name RmrkTraitsResourceComposableResource (219) */1824 /** @name RmrkTraitsResourceComposableResource (218) */1827 export interface RmrkTraitsResourceComposableResource extends Struct {1825 export interface RmrkTraitsResourceComposableResource extends Struct {1828 readonly parts: Vec<u32>;1826 readonly parts: Vec<u32>;1829 readonly base: u32;1827 readonly base: u32;1833 readonly thumb: Option<Bytes>;1831 readonly thumb: Option<Bytes>;1834 }1832 }183518331836 /** @name RmrkTraitsResourceSlotResource (220) */1834 /** @name RmrkTraitsResourceSlotResource (219) */1837 export interface RmrkTraitsResourceSlotResource extends Struct {1835 export interface RmrkTraitsResourceSlotResource extends Struct {1838 readonly base: u32;1836 readonly base: u32;1839 readonly src: Option<Bytes>;1837 readonly src: Option<Bytes>;1843 readonly thumb: Option<Bytes>;1841 readonly thumb: Option<Bytes>;1844 }1842 }184518431846 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (222) */1844 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (221) */1847 export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1845 export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1848 readonly isAccountId: boolean;1846 readonly isAccountId: boolean;1849 readonly asAccountId: AccountId32;1847 readonly asAccountId: AccountId32;1852 readonly type: 'AccountId' | 'CollectionAndNftTuple';1850 readonly type: 'AccountId' | 'CollectionAndNftTuple';1853 }1851 }185418521855 /** @name PalletRmrkEquipCall (226) */1853 /** @name PalletRmrkEquipCall (225) */1856 export interface PalletRmrkEquipCall extends Enum {1854 export interface PalletRmrkEquipCall extends Enum {1857 readonly isCreateBase: boolean;1855 readonly isCreateBase: boolean;1858 readonly asCreateBase: {1856 readonly asCreateBase: {1874 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1872 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1875 }1873 }187618741877 /** @name RmrkTraitsPartPartType (229) */1875 /** @name RmrkTraitsPartPartType (228) */1878 export interface RmrkTraitsPartPartType extends Enum {1876 export interface RmrkTraitsPartPartType extends Enum {1879 readonly isFixedPart: boolean;1877 readonly isFixedPart: boolean;1880 readonly asFixedPart: RmrkTraitsPartFixedPart;1878 readonly asFixedPart: RmrkTraitsPartFixedPart;1883 readonly type: 'FixedPart' | 'SlotPart';1881 readonly type: 'FixedPart' | 'SlotPart';1884 }1882 }188518831886 /** @name RmrkTraitsPartFixedPart (231) */1884 /** @name RmrkTraitsPartFixedPart (230) */1887 export interface RmrkTraitsPartFixedPart extends Struct {1885 export interface RmrkTraitsPartFixedPart extends Struct {1888 readonly id: u32;1886 readonly id: u32;1889 readonly z: u32;1887 readonly z: u32;1890 readonly src: Bytes;1888 readonly src: Bytes;1891 }1889 }189218901893 /** @name RmrkTraitsPartSlotPart (232) */1891 /** @name RmrkTraitsPartSlotPart (231) */1894 export interface RmrkTraitsPartSlotPart extends Struct {1892 export interface RmrkTraitsPartSlotPart extends Struct {1895 readonly id: u32;1893 readonly id: u32;1896 readonly equippable: RmrkTraitsPartEquippableList;1894 readonly equippable: RmrkTraitsPartEquippableList;1897 readonly src: Bytes;1895 readonly src: Bytes;1898 readonly z: u32;1896 readonly z: u32;1899 }1897 }190018981901 /** @name RmrkTraitsPartEquippableList (233) */1899 /** @name RmrkTraitsPartEquippableList (232) */1902 export interface RmrkTraitsPartEquippableList extends Enum {1900 export interface RmrkTraitsPartEquippableList extends Enum {1903 readonly isAll: boolean;1901 readonly isAll: boolean;1904 readonly isEmpty: boolean;1902 readonly isEmpty: boolean;1907 readonly type: 'All' | 'Empty' | 'Custom';1905 readonly type: 'All' | 'Empty' | 'Custom';1908 }1906 }190919071910 /** @name RmrkTraitsTheme (235) */1908 /** @name RmrkTraitsTheme (234) */1911 export interface RmrkTraitsTheme extends Struct {1909 export interface RmrkTraitsTheme extends Struct {1912 readonly name: Bytes;1910 readonly name: Bytes;1913 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;1911 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;1914 readonly inherit: bool;1912 readonly inherit: bool;1915 }1913 }191619141917 /** @name RmrkTraitsThemeThemeProperty (237) */1915 /** @name RmrkTraitsThemeThemeProperty (236) */1918 export interface RmrkTraitsThemeThemeProperty extends Struct {1916 export interface RmrkTraitsThemeThemeProperty extends Struct {1919 readonly key: Bytes;1917 readonly key: Bytes;1920 readonly value: Bytes;1918 readonly value: Bytes;1921 }1919 }192219201923 /** @name PalletEvmCall (239) */1921 /** @name PalletEvmCall (238) */1924 export interface PalletEvmCall extends Enum {1922 export interface PalletEvmCall extends Enum {1925 readonly isWithdraw: boolean;1923 readonly isWithdraw: boolean;1926 readonly asWithdraw: {1924 readonly asWithdraw: {1965 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1963 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1966 }1964 }196719651968 /** @name PalletEthereumCall (245) */1966 /** @name PalletEthereumCall (244) */1969 export interface PalletEthereumCall extends Enum {1967 export interface PalletEthereumCall extends Enum {1970 readonly isTransact: boolean;1968 readonly isTransact: boolean;1971 readonly asTransact: {1969 readonly asTransact: {1974 readonly type: 'Transact';1972 readonly type: 'Transact';1975 }1973 }197619741977 /** @name EthereumTransactionTransactionV2 (246) */1975 /** @name EthereumTransactionTransactionV2 (245) */1978 export interface EthereumTransactionTransactionV2 extends Enum {1976 export interface EthereumTransactionTransactionV2 extends Enum {1979 readonly isLegacy: boolean;1977 readonly isLegacy: boolean;1980 readonly asLegacy: EthereumTransactionLegacyTransaction;1978 readonly asLegacy: EthereumTransactionLegacyTransaction;1985 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1983 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1986 }1984 }198719851988 /** @name EthereumTransactionLegacyTransaction (247) */1986 /** @name EthereumTransactionLegacyTransaction (246) */1989 export interface EthereumTransactionLegacyTransaction extends Struct {1987 export interface EthereumTransactionLegacyTransaction extends Struct {1990 readonly nonce: U256;1988 readonly nonce: U256;1991 readonly gasPrice: U256;1989 readonly gasPrice: U256;1996 readonly signature: EthereumTransactionTransactionSignature;1994 readonly signature: EthereumTransactionTransactionSignature;1997 }1995 }199819961999 /** @name EthereumTransactionTransactionAction (248) */1997 /** @name EthereumTransactionTransactionAction (247) */2000 export interface EthereumTransactionTransactionAction extends Enum {1998 export interface EthereumTransactionTransactionAction extends Enum {2001 readonly isCall: boolean;1999 readonly isCall: boolean;2002 readonly asCall: H160;2000 readonly asCall: H160;2003 readonly isCreate: boolean;2001 readonly isCreate: boolean;2004 readonly type: 'Call' | 'Create';2002 readonly type: 'Call' | 'Create';2005 }2003 }200620042007 /** @name EthereumTransactionTransactionSignature (249) */2005 /** @name EthereumTransactionTransactionSignature (248) */2008 export interface EthereumTransactionTransactionSignature extends Struct {2006 export interface EthereumTransactionTransactionSignature extends Struct {2009 readonly v: u64;2007 readonly v: u64;2010 readonly r: H256;2008 readonly r: H256;2011 readonly s: H256;2009 readonly s: H256;2012 }2010 }201320112014 /** @name EthereumTransactionEip2930Transaction (251) */2012 /** @name EthereumTransactionEip2930Transaction (250) */2015 export interface EthereumTransactionEip2930Transaction extends Struct {2013 export interface EthereumTransactionEip2930Transaction extends Struct {2016 readonly chainId: u64;2014 readonly chainId: u64;2017 readonly nonce: U256;2015 readonly nonce: U256;2026 readonly s: H256;2024 readonly s: H256;2027 }2025 }202820262029 /** @name EthereumTransactionAccessListItem (253) */2027 /** @name EthereumTransactionAccessListItem (252) */2030 export interface EthereumTransactionAccessListItem extends Struct {2028 export interface EthereumTransactionAccessListItem extends Struct {2031 readonly address: H160;2029 readonly address: H160;2032 readonly storageKeys: Vec<H256>;2030 readonly storageKeys: Vec<H256>;2033 }2031 }203420322035 /** @name EthereumTransactionEip1559Transaction (254) */2033 /** @name EthereumTransactionEip1559Transaction (253) */2036 export interface EthereumTransactionEip1559Transaction extends Struct {2034 export interface EthereumTransactionEip1559Transaction extends Struct {2037 readonly chainId: u64;2035 readonly chainId: u64;2038 readonly nonce: U256;2036 readonly nonce: U256;2048 readonly s: H256;2046 readonly s: H256;2049 }2047 }205020482051 /** @name PalletEvmMigrationCall (255) */2049 /** @name PalletEvmMigrationCall (254) */2052 export interface PalletEvmMigrationCall extends Enum {2050 export interface PalletEvmMigrationCall extends Enum {2053 readonly isBegin: boolean;2051 readonly isBegin: boolean;2054 readonly asBegin: {2052 readonly asBegin: {2067 readonly type: 'Begin' | 'SetData' | 'Finish';2065 readonly type: 'Begin' | 'SetData' | 'Finish';2068 }2066 }206920672070 /** @name PalletSudoEvent (258) */2068 /** @name PalletSudoEvent (257) */2071 export interface PalletSudoEvent extends Enum {2069 export interface PalletSudoEvent extends Enum {2072 readonly isSudid: boolean;2070 readonly isSudid: boolean;2073 readonly asSudid: {2071 readonly asSudid: {2084 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2082 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2085 }2083 }208620842087 /** @name SpRuntimeDispatchError (260) */2085 /** @name SpRuntimeDispatchError (259) */2088 export interface SpRuntimeDispatchError extends Enum {2086 export interface SpRuntimeDispatchError extends Enum {2089 readonly isOther: boolean;2087 readonly isOther: boolean;2090 readonly isCannotLookup: boolean;2088 readonly isCannotLookup: boolean;2103 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2101 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2104 }2102 }210521032106 /** @name SpRuntimeModuleError (261) */2104 /** @name SpRuntimeModuleError (260) */2107 export interface SpRuntimeModuleError extends Struct {2105 export interface SpRuntimeModuleError extends Struct {2108 readonly index: u8;2106 readonly index: u8;2109 readonly error: U8aFixed;2107 readonly error: U8aFixed;2110 }2108 }211121092112 /** @name SpRuntimeTokenError (262) */2110 /** @name SpRuntimeTokenError (261) */2113 export interface SpRuntimeTokenError extends Enum {2111 export interface SpRuntimeTokenError extends Enum {2114 readonly isNoFunds: boolean;2112 readonly isNoFunds: boolean;2115 readonly isWouldDie: boolean;2113 readonly isWouldDie: boolean;2121 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2119 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2122 }2120 }212321212124 /** @name SpRuntimeArithmeticError (263) */2122 /** @name SpRuntimeArithmeticError (262) */2125 export interface SpRuntimeArithmeticError extends Enum {2123 export interface SpRuntimeArithmeticError extends Enum {2126 readonly isUnderflow: boolean;2124 readonly isUnderflow: boolean;2127 readonly isOverflow: boolean;2125 readonly isOverflow: boolean;2128 readonly isDivisionByZero: boolean;2126 readonly isDivisionByZero: boolean;2129 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2127 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2130 }2128 }213121292132 /** @name SpRuntimeTransactionalError (264) */2130 /** @name SpRuntimeTransactionalError (263) */2133 export interface SpRuntimeTransactionalError extends Enum {2131 export interface SpRuntimeTransactionalError extends Enum {2134 readonly isLimitReached: boolean;2132 readonly isLimitReached: boolean;2135 readonly isNoLayer: boolean;2133 readonly isNoLayer: boolean;2136 readonly type: 'LimitReached' | 'NoLayer';2134 readonly type: 'LimitReached' | 'NoLayer';2137 }2135 }213821362139 /** @name PalletSudoError (265) */2137 /** @name PalletSudoError (264) */2140 export interface PalletSudoError extends Enum {2138 export interface PalletSudoError extends Enum {2141 readonly isRequireSudo: boolean;2139 readonly isRequireSudo: boolean;2142 readonly type: 'RequireSudo';2140 readonly type: 'RequireSudo';2143 }2141 }214421422145 /** @name FrameSystemAccountInfo (266) */2143 /** @name FrameSystemAccountInfo (265) */2146 export interface FrameSystemAccountInfo extends Struct {2144 export interface FrameSystemAccountInfo extends Struct {2147 readonly nonce: u32;2145 readonly nonce: u32;2148 readonly consumers: u32;2146 readonly consumers: u32;2151 readonly data: PalletBalancesAccountData;2149 readonly data: PalletBalancesAccountData;2152 }2150 }215321512154 /** @name FrameSupportWeightsPerDispatchClassU64 (267) */2152 /** @name FrameSupportWeightsPerDispatchClassU64 (266) */2155 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2153 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2156 readonly normal: u64;2154 readonly normal: u64;2157 readonly operational: u64;2155 readonly operational: u64;2158 readonly mandatory: u64;2156 readonly mandatory: u64;2159 }2157 }216021582161 /** @name SpRuntimeDigest (268) */2159 /** @name SpRuntimeDigest (267) */2162 export interface SpRuntimeDigest extends Struct {2160 export interface SpRuntimeDigest extends Struct {2163 readonly logs: Vec<SpRuntimeDigestDigestItem>;2161 readonly logs: Vec<SpRuntimeDigestDigestItem>;2164 }2162 }216521632166 /** @name SpRuntimeDigestDigestItem (270) */2164 /** @name SpRuntimeDigestDigestItem (269) */2167 export interface SpRuntimeDigestDigestItem extends Enum {2165 export interface SpRuntimeDigestDigestItem extends Enum {2168 readonly isOther: boolean;2166 readonly isOther: boolean;2169 readonly asOther: Bytes;2167 readonly asOther: Bytes;2177 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2175 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2178 }2176 }217921772180 /** @name FrameSystemEventRecord (272) */2178 /** @name FrameSystemEventRecord (271) */2181 export interface FrameSystemEventRecord extends Struct {2179 export interface FrameSystemEventRecord extends Struct {2182 readonly phase: FrameSystemPhase;2180 readonly phase: FrameSystemPhase;2183 readonly event: Event;2181 readonly event: Event;2184 readonly topics: Vec<H256>;2182 readonly topics: Vec<H256>;2185 }2183 }218621842187 /** @name FrameSystemEvent (274) */2185 /** @name FrameSystemEvent (273) */2188 export interface FrameSystemEvent extends Enum {2186 export interface FrameSystemEvent extends Enum {2189 readonly isExtrinsicSuccess: boolean;2187 readonly isExtrinsicSuccess: boolean;2190 readonly asExtrinsicSuccess: {2188 readonly asExtrinsicSuccess: {2212 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2210 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2213 }2211 }221422122215 /** @name FrameSupportWeightsDispatchInfo (275) */2213 /** @name FrameSupportWeightsDispatchInfo (274) */2216 export interface FrameSupportWeightsDispatchInfo extends Struct {2214 export interface FrameSupportWeightsDispatchInfo extends Struct {2217 readonly weight: u64;2215 readonly weight: u64;2218 readonly class: FrameSupportWeightsDispatchClass;2216 readonly class: FrameSupportWeightsDispatchClass;2219 readonly paysFee: FrameSupportWeightsPays;2217 readonly paysFee: FrameSupportWeightsPays;2220 }2218 }222122192222 /** @name FrameSupportWeightsDispatchClass (276) */2220 /** @name FrameSupportWeightsDispatchClass (275) */2223 export interface FrameSupportWeightsDispatchClass extends Enum {2221 export interface FrameSupportWeightsDispatchClass extends Enum {2224 readonly isNormal: boolean;2222 readonly isNormal: boolean;2225 readonly isOperational: boolean;2223 readonly isOperational: boolean;2226 readonly isMandatory: boolean;2224 readonly isMandatory: boolean;2227 readonly type: 'Normal' | 'Operational' | 'Mandatory';2225 readonly type: 'Normal' | 'Operational' | 'Mandatory';2228 }2226 }222922272230 /** @name FrameSupportWeightsPays (277) */2228 /** @name FrameSupportWeightsPays (276) */2231 export interface FrameSupportWeightsPays extends Enum {2229 export interface FrameSupportWeightsPays extends Enum {2232 readonly isYes: boolean;2230 readonly isYes: boolean;2233 readonly isNo: boolean;2231 readonly isNo: boolean;2234 readonly type: 'Yes' | 'No';2232 readonly type: 'Yes' | 'No';2235 }2233 }223622342237 /** @name OrmlVestingModuleEvent (278) */2235 /** @name OrmlVestingModuleEvent (277) */2238 export interface OrmlVestingModuleEvent extends Enum {2236 export interface OrmlVestingModuleEvent extends Enum {2239 readonly isVestingScheduleAdded: boolean;2237 readonly isVestingScheduleAdded: boolean;2240 readonly asVestingScheduleAdded: {2238 readonly asVestingScheduleAdded: {2254 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2252 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2255 }2253 }225622542257 /** @name CumulusPalletXcmpQueueEvent (279) */2255 /** @name CumulusPalletXcmpQueueEvent (278) */2258 export interface CumulusPalletXcmpQueueEvent extends Enum {2256 export interface CumulusPalletXcmpQueueEvent extends Enum {2259 readonly isSuccess: boolean;2257 readonly isSuccess: boolean;2260 readonly asSuccess: Option<H256>;2258 readonly asSuccess: Option<H256>;2275 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2273 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2276 }2274 }227722752278 /** @name PalletXcmEvent (280) */2276 /** @name PalletXcmEvent (279) */2279 export interface PalletXcmEvent extends Enum {2277 export interface PalletXcmEvent extends Enum {2280 readonly isAttempted: boolean;2278 readonly isAttempted: boolean;2281 readonly asAttempted: XcmV2TraitsOutcome;2279 readonly asAttempted: XcmV2TraitsOutcome;2312 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2310 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2313 }2311 }231423122315 /** @name XcmV2TraitsOutcome (281) */2313 /** @name XcmV2TraitsOutcome (280) */2316 export interface XcmV2TraitsOutcome extends Enum {2314 export interface XcmV2TraitsOutcome extends Enum {2317 readonly isComplete: boolean;2315 readonly isComplete: boolean;2318 readonly asComplete: u64;2316 readonly asComplete: u64;2323 readonly type: 'Complete' | 'Incomplete' | 'Error';2321 readonly type: 'Complete' | 'Incomplete' | 'Error';2324 }2322 }232523232326 /** @name CumulusPalletXcmEvent (283) */2324 /** @name CumulusPalletXcmEvent (282) */2327 export interface CumulusPalletXcmEvent extends Enum {2325 export interface CumulusPalletXcmEvent extends Enum {2328 readonly isInvalidFormat: boolean;2326 readonly isInvalidFormat: boolean;2329 readonly asInvalidFormat: U8aFixed;2327 readonly asInvalidFormat: U8aFixed;2334 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2332 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2335 }2333 }233623342337 /** @name CumulusPalletDmpQueueEvent (284) */2335 /** @name CumulusPalletDmpQueueEvent (283) */2338 export interface CumulusPalletDmpQueueEvent extends Enum {2336 export interface CumulusPalletDmpQueueEvent extends Enum {2339 readonly isInvalidFormat: boolean;2337 readonly isInvalidFormat: boolean;2340 readonly asInvalidFormat: {2338 readonly asInvalidFormat: {2369 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2367 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2370 }2368 }237123692372 /** @name PalletUniqueRawEvent (285) */2370 /** @name PalletUniqueRawEvent (284) */2373 export interface PalletUniqueRawEvent extends Enum {2371 export interface PalletUniqueRawEvent extends Enum {2374 readonly isCollectionSponsorRemoved: boolean;2372 readonly isCollectionSponsorRemoved: boolean;2375 readonly asCollectionSponsorRemoved: u32;2373 readonly asCollectionSponsorRemoved: u32;2394 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2392 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2395 }2393 }239623942397 /** @name PalletUniqueSchedulerEvent (286) */2395 /** @name PalletUniqueSchedulerEvent (285) */2398 export interface PalletUniqueSchedulerEvent extends Enum {2396 export interface PalletUniqueSchedulerEvent extends Enum {2399 readonly isScheduled: boolean;2397 readonly isScheduled: boolean;2400 readonly asScheduled: {2398 readonly asScheduled: {2421 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';2419 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';2422 }2420 }242324212424 /** @name FrameSupportScheduleLookupError (288) */2422 /** @name FrameSupportScheduleLookupError (287) */2425 export interface FrameSupportScheduleLookupError extends Enum {2423 export interface FrameSupportScheduleLookupError extends Enum {2426 readonly isUnknown: boolean;2424 readonly isUnknown: boolean;2427 readonly isBadFormat: boolean;2425 readonly isBadFormat: boolean;2428 readonly type: 'Unknown' | 'BadFormat';2426 readonly type: 'Unknown' | 'BadFormat';2429 }2427 }243024282431 /** @name PalletCommonEvent (289) */2429 /** @name PalletCommonEvent (288) */2432 export interface PalletCommonEvent extends Enum {2430 export interface PalletCommonEvent extends Enum {2433 readonly isCollectionCreated: boolean;2431 readonly isCollectionCreated: boolean;2434 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2432 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2455 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2453 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2456 }2454 }245724552458 /** @name PalletStructureEvent (290) */2456 /** @name PalletStructureEvent (289) */2459 export interface PalletStructureEvent extends Enum {2457 export interface PalletStructureEvent extends Enum {2460 readonly isExecuted: boolean;2458 readonly isExecuted: boolean;2461 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2459 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2462 readonly type: 'Executed';2460 readonly type: 'Executed';2463 }2461 }246424622465 /** @name PalletRmrkCoreEvent (291) */2463 /** @name PalletRmrkCoreEvent (290) */2466 export interface PalletRmrkCoreEvent extends Enum {2464 export interface PalletRmrkCoreEvent extends Enum {2467 readonly isCollectionCreated: boolean;2465 readonly isCollectionCreated: boolean;2468 readonly asCollectionCreated: {2466 readonly asCollectionCreated: {2552 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';2550 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';2553 }2551 }255425522555 /** @name PalletRmrkEquipEvent (292) */2553 /** @name PalletRmrkEquipEvent (291) */2556 export interface PalletRmrkEquipEvent extends Enum {2554 export interface PalletRmrkEquipEvent extends Enum {2557 readonly isBaseCreated: boolean;2555 readonly isBaseCreated: boolean;2558 readonly asBaseCreated: {2556 readonly asBaseCreated: {2567 readonly type: 'BaseCreated' | 'EquippablesUpdated';2565 readonly type: 'BaseCreated' | 'EquippablesUpdated';2568 }2566 }256925672570 /** @name PalletEvmEvent (293) */2568 /** @name PalletEvmEvent (292) */2571 export interface PalletEvmEvent extends Enum {2569 export interface PalletEvmEvent extends Enum {2572 readonly isLog: boolean;2570 readonly isLog: boolean;2573 readonly asLog: EthereumLog;2571 readonly asLog: EthereumLog;2586 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2584 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2587 }2585 }258825862589 /** @name EthereumLog (294) */2587 /** @name EthereumLog (293) */2590 export interface EthereumLog extends Struct {2588 export interface EthereumLog extends Struct {2591 readonly address: H160;2589 readonly address: H160;2592 readonly topics: Vec<H256>;2590 readonly topics: Vec<H256>;2593 readonly data: Bytes;2591 readonly data: Bytes;2594 }2592 }259525932596 /** @name PalletEthereumEvent (295) */2594 /** @name PalletEthereumEvent (294) */2597 export interface PalletEthereumEvent extends Enum {2595 export interface PalletEthereumEvent extends Enum {2598 readonly isExecuted: boolean;2596 readonly isExecuted: boolean;2599 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2597 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2600 readonly type: 'Executed';2598 readonly type: 'Executed';2601 }2599 }260226002603 /** @name EvmCoreErrorExitReason (296) */2601 /** @name EvmCoreErrorExitReason (295) */2604 export interface EvmCoreErrorExitReason extends Enum {2602 export interface EvmCoreErrorExitReason extends Enum {2605 readonly isSucceed: boolean;2603 readonly isSucceed: boolean;2606 readonly asSucceed: EvmCoreErrorExitSucceed;2604 readonly asSucceed: EvmCoreErrorExitSucceed;2613 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2611 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2614 }2612 }261526132616 /** @name EvmCoreErrorExitSucceed (297) */2614 /** @name EvmCoreErrorExitSucceed (296) */2617 export interface EvmCoreErrorExitSucceed extends Enum {2615 export interface EvmCoreErrorExitSucceed extends Enum {2618 readonly isStopped: boolean;2616 readonly isStopped: boolean;2619 readonly isReturned: boolean;2617 readonly isReturned: boolean;2620 readonly isSuicided: boolean;2618 readonly isSuicided: boolean;2621 readonly type: 'Stopped' | 'Returned' | 'Suicided';2619 readonly type: 'Stopped' | 'Returned' | 'Suicided';2622 }2620 }262326212624 /** @name EvmCoreErrorExitError (298) */2622 /** @name EvmCoreErrorExitError (297) */2625 export interface EvmCoreErrorExitError extends Enum {2623 export interface EvmCoreErrorExitError extends Enum {2626 readonly isStackUnderflow: boolean;2624 readonly isStackUnderflow: boolean;2627 readonly isStackOverflow: boolean;2625 readonly isStackOverflow: boolean;2642 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2640 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2643 }2641 }264426422645 /** @name EvmCoreErrorExitRevert (301) */2643 /** @name EvmCoreErrorExitRevert (300) */2646 export interface EvmCoreErrorExitRevert extends Enum {2644 export interface EvmCoreErrorExitRevert extends Enum {2647 readonly isReverted: boolean;2645 readonly isReverted: boolean;2648 readonly type: 'Reverted';2646 readonly type: 'Reverted';2649 }2647 }265026482651 /** @name EvmCoreErrorExitFatal (302) */2649 /** @name EvmCoreErrorExitFatal (301) */2652 export interface EvmCoreErrorExitFatal extends Enum {2650 export interface EvmCoreErrorExitFatal extends Enum {2653 readonly isNotSupported: boolean;2651 readonly isNotSupported: boolean;2654 readonly isUnhandledInterrupt: boolean;2652 readonly isUnhandledInterrupt: boolean;2659 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2657 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2660 }2658 }266126592662 /** @name FrameSystemPhase (303) */2660 /** @name FrameSystemPhase (302) */2663 export interface FrameSystemPhase extends Enum {2661 export interface FrameSystemPhase extends Enum {2664 readonly isApplyExtrinsic: boolean;2662 readonly isApplyExtrinsic: boolean;2665 readonly asApplyExtrinsic: u32;2663 readonly asApplyExtrinsic: u32;2668 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2666 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2669 }2667 }267026682671 /** @name FrameSystemLastRuntimeUpgradeInfo (305) */2669 /** @name FrameSystemLastRuntimeUpgradeInfo (304) */2672 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2670 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2673 readonly specVersion: Compact<u32>;2671 readonly specVersion: Compact<u32>;2674 readonly specName: Text;2672 readonly specName: Text;2675 }2673 }267626742677 /** @name FrameSystemLimitsBlockWeights (306) */2675 /** @name FrameSystemLimitsBlockWeights (305) */2678 export interface FrameSystemLimitsBlockWeights extends Struct {2676 export interface FrameSystemLimitsBlockWeights extends Struct {2679 readonly baseBlock: u64;2677 readonly baseBlock: u64;2680 readonly maxBlock: u64;2678 readonly maxBlock: u64;2681 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2679 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2682 }2680 }268326812684 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (307) */2682 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (306) */2685 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2683 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2686 readonly normal: FrameSystemLimitsWeightsPerClass;2684 readonly normal: FrameSystemLimitsWeightsPerClass;2687 readonly operational: FrameSystemLimitsWeightsPerClass;2685 readonly operational: FrameSystemLimitsWeightsPerClass;2688 readonly mandatory: FrameSystemLimitsWeightsPerClass;2686 readonly mandatory: FrameSystemLimitsWeightsPerClass;2689 }2687 }269026882691 /** @name FrameSystemLimitsWeightsPerClass (308) */2689 /** @name FrameSystemLimitsWeightsPerClass (307) */2692 export interface FrameSystemLimitsWeightsPerClass extends Struct {2690 export interface FrameSystemLimitsWeightsPerClass extends Struct {2693 readonly baseExtrinsic: u64;2691 readonly baseExtrinsic: u64;2694 readonly maxExtrinsic: Option<u64>;2692 readonly maxExtrinsic: Option<u64>;2695 readonly maxTotal: Option<u64>;2693 readonly maxTotal: Option<u64>;2696 readonly reserved: Option<u64>;2694 readonly reserved: Option<u64>;2697 }2695 }269826962699 /** @name FrameSystemLimitsBlockLength (310) */2697 /** @name FrameSystemLimitsBlockLength (309) */2700 export interface FrameSystemLimitsBlockLength extends Struct {2698 export interface FrameSystemLimitsBlockLength extends Struct {2701 readonly max: FrameSupportWeightsPerDispatchClassU32;2699 readonly max: FrameSupportWeightsPerDispatchClassU32;2702 }2700 }270327012704 /** @name FrameSupportWeightsPerDispatchClassU32 (311) */2702 /** @name FrameSupportWeightsPerDispatchClassU32 (310) */2705 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2703 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2706 readonly normal: u32;2704 readonly normal: u32;2707 readonly operational: u32;2705 readonly operational: u32;2708 readonly mandatory: u32;2706 readonly mandatory: u32;2709 }2707 }271027082711 /** @name FrameSupportWeightsRuntimeDbWeight (312) */2709 /** @name FrameSupportWeightsRuntimeDbWeight (311) */2712 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2710 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2713 readonly read: u64;2711 readonly read: u64;2714 readonly write: u64;2712 readonly write: u64;2715 }2713 }271627142717 /** @name SpVersionRuntimeVersion (313) */2715 /** @name SpVersionRuntimeVersion (312) */2718 export interface SpVersionRuntimeVersion extends Struct {2716 export interface SpVersionRuntimeVersion extends Struct {2719 readonly specName: Text;2717 readonly specName: Text;2720 readonly implName: Text;2718 readonly implName: Text;2726 readonly stateVersion: u8;2724 readonly stateVersion: u8;2727 }2725 }272827262729 /** @name FrameSystemError (317) */2727 /** @name FrameSystemError (316) */2730 export interface FrameSystemError extends Enum {2728 export interface FrameSystemError extends Enum {2731 readonly isInvalidSpecName: boolean;2729 readonly isInvalidSpecName: boolean;2732 readonly isSpecVersionNeedsToIncrease: boolean;2730 readonly isSpecVersionNeedsToIncrease: boolean;2737 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2735 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2738 }2736 }273927372740 /** @name OrmlVestingModuleError (319) */2738 /** @name OrmlVestingModuleError (318) */2741 export interface OrmlVestingModuleError extends Enum {2739 export interface OrmlVestingModuleError extends Enum {2742 readonly isZeroVestingPeriod: boolean;2740 readonly isZeroVestingPeriod: boolean;2743 readonly isZeroVestingPeriodCount: boolean;2741 readonly isZeroVestingPeriodCount: boolean;2748 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2746 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2749 }2747 }275027482751 /** @name CumulusPalletXcmpQueueInboundChannelDetails (321) */2749 /** @name CumulusPalletXcmpQueueInboundChannelDetails (320) */2752 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2750 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2753 readonly sender: u32;2751 readonly sender: u32;2754 readonly state: CumulusPalletXcmpQueueInboundState;2752 readonly state: CumulusPalletXcmpQueueInboundState;2755 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2753 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2756 }2754 }275727552758 /** @name CumulusPalletXcmpQueueInboundState (322) */2756 /** @name CumulusPalletXcmpQueueInboundState (321) */2759 export interface CumulusPalletXcmpQueueInboundState extends Enum {2757 export interface CumulusPalletXcmpQueueInboundState extends Enum {2760 readonly isOk: boolean;2758 readonly isOk: boolean;2761 readonly isSuspended: boolean;2759 readonly isSuspended: boolean;2762 readonly type: 'Ok' | 'Suspended';2760 readonly type: 'Ok' | 'Suspended';2763 }2761 }276427622765 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (325) */2763 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (324) */2766 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2764 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2767 readonly isConcatenatedVersionedXcm: boolean;2765 readonly isConcatenatedVersionedXcm: boolean;2768 readonly isConcatenatedEncodedBlob: boolean;2766 readonly isConcatenatedEncodedBlob: boolean;2769 readonly isSignals: boolean;2767 readonly isSignals: boolean;2770 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2768 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2771 }2769 }277227702773 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (328) */2771 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (327) */2774 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2772 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2775 readonly recipient: u32;2773 readonly recipient: u32;2776 readonly state: CumulusPalletXcmpQueueOutboundState;2774 readonly state: CumulusPalletXcmpQueueOutboundState;2779 readonly lastIndex: u16;2777 readonly lastIndex: u16;2780 }2778 }278127792782 /** @name CumulusPalletXcmpQueueOutboundState (329) */2780 /** @name CumulusPalletXcmpQueueOutboundState (328) */2783 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2781 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2784 readonly isOk: boolean;2782 readonly isOk: boolean;2785 readonly isSuspended: boolean;2783 readonly isSuspended: boolean;2786 readonly type: 'Ok' | 'Suspended';2784 readonly type: 'Ok' | 'Suspended';2787 }2785 }278827862789 /** @name CumulusPalletXcmpQueueQueueConfigData (331) */2787 /** @name CumulusPalletXcmpQueueQueueConfigData (330) */2790 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2788 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2791 readonly suspendThreshold: u32;2789 readonly suspendThreshold: u32;2792 readonly dropThreshold: u32;2790 readonly dropThreshold: u32;2796 readonly xcmpMaxIndividualWeight: u64;2794 readonly xcmpMaxIndividualWeight: u64;2797 }2795 }279827962799 /** @name CumulusPalletXcmpQueueError (333) */2797 /** @name CumulusPalletXcmpQueueError (332) */2800 export interface CumulusPalletXcmpQueueError extends Enum {2798 export interface CumulusPalletXcmpQueueError extends Enum {2801 readonly isFailedToSend: boolean;2799 readonly isFailedToSend: boolean;2802 readonly isBadXcmOrigin: boolean;2800 readonly isBadXcmOrigin: boolean;2806 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2804 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2807 }2805 }280828062809 /** @name PalletXcmError (334) */2807 /** @name PalletXcmError (333) */2810 export interface PalletXcmError extends Enum {2808 export interface PalletXcmError extends Enum {2811 readonly isUnreachable: boolean;2809 readonly isUnreachable: boolean;2812 readonly isSendFailure: boolean;2810 readonly isSendFailure: boolean;2824 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2822 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2825 }2823 }282628242827 /** @name CumulusPalletXcmError (335) */2825 /** @name CumulusPalletXcmError (334) */2828 export type CumulusPalletXcmError = Null;2826 export type CumulusPalletXcmError = Null;282928272830 /** @name CumulusPalletDmpQueueConfigData (336) */2828 /** @name CumulusPalletDmpQueueConfigData (335) */2831 export interface CumulusPalletDmpQueueConfigData extends Struct {2829 export interface CumulusPalletDmpQueueConfigData extends Struct {2832 readonly maxIndividual: u64;2830 readonly maxIndividual: u64;2833 }2831 }283428322835 /** @name CumulusPalletDmpQueuePageIndexData (337) */2833 /** @name CumulusPalletDmpQueuePageIndexData (336) */2836 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2834 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2837 readonly beginUsed: u32;2835 readonly beginUsed: u32;2838 readonly endUsed: u32;2836 readonly endUsed: u32;2839 readonly overweightCount: u64;2837 readonly overweightCount: u64;2840 }2838 }284128392842 /** @name CumulusPalletDmpQueueError (340) */2840 /** @name CumulusPalletDmpQueueError (339) */2843 export interface CumulusPalletDmpQueueError extends Enum {2841 export interface CumulusPalletDmpQueueError extends Enum {2844 readonly isUnknown: boolean;2842 readonly isUnknown: boolean;2845 readonly isOverLimit: boolean;2843 readonly isOverLimit: boolean;2846 readonly type: 'Unknown' | 'OverLimit';2844 readonly type: 'Unknown' | 'OverLimit';2847 }2845 }284828462849 /** @name PalletUniqueError (344) */2847 /** @name PalletUniqueError (343) */2850 export interface PalletUniqueError extends Enum {2848 export interface PalletUniqueError extends Enum {2851 readonly isCollectionDecimalPointLimitExceeded: boolean;2849 readonly isCollectionDecimalPointLimitExceeded: boolean;2852 readonly isConfirmUnsetSponsorFail: boolean;2850 readonly isConfirmUnsetSponsorFail: boolean;2855 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2853 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2856 }2854 }285728552858 /** @name PalletUniqueSchedulerScheduledV3 (347) */2856 /** @name PalletUniqueSchedulerScheduledV3 (346) */2859 export interface PalletUniqueSchedulerScheduledV3 extends Struct {2857 export interface PalletUniqueSchedulerScheduledV3 extends Struct {2860 readonly maybeId: Option<U8aFixed>;2858 readonly maybeId: Option<U8aFixed>;2861 readonly priority: u8;2859 readonly priority: u8;2864 readonly origin: OpalRuntimeOriginCaller;2862 readonly origin: OpalRuntimeOriginCaller;2865 }2863 }286628642867 /** @name OpalRuntimeOriginCaller (348) */2865 /** @name OpalRuntimeOriginCaller (347) */2868 export interface OpalRuntimeOriginCaller extends Enum {2866 export interface OpalRuntimeOriginCaller extends Enum {2869 readonly isVoid: boolean;2867 readonly isVoid: boolean;2870 readonly isSystem: boolean;2868 readonly isSystem: boolean;2878 readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';2876 readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';2879 }2877 }288028782881 /** @name FrameSupportDispatchRawOrigin (349) */2879 /** @name FrameSupportDispatchRawOrigin (348) */2882 export interface FrameSupportDispatchRawOrigin extends Enum {2880 export interface FrameSupportDispatchRawOrigin extends Enum {2883 readonly isRoot: boolean;2881 readonly isRoot: boolean;2884 readonly isSigned: boolean;2882 readonly isSigned: boolean;2887 readonly type: 'Root' | 'Signed' | 'None';2885 readonly type: 'Root' | 'Signed' | 'None';2888 }2886 }288928872890 /** @name PalletXcmOrigin (350) */2888 /** @name PalletXcmOrigin (349) */2891 export interface PalletXcmOrigin extends Enum {2889 export interface PalletXcmOrigin extends Enum {2892 readonly isXcm: boolean;2890 readonly isXcm: boolean;2893 readonly asXcm: XcmV1MultiLocation;2891 readonly asXcm: XcmV1MultiLocation;2896 readonly type: 'Xcm' | 'Response';2894 readonly type: 'Xcm' | 'Response';2897 }2895 }289828962899 /** @name CumulusPalletXcmOrigin (351) */2897 /** @name CumulusPalletXcmOrigin (350) */2900 export interface CumulusPalletXcmOrigin extends Enum {2898 export interface CumulusPalletXcmOrigin extends Enum {2901 readonly isRelay: boolean;2899 readonly isRelay: boolean;2902 readonly isSiblingParachain: boolean;2900 readonly isSiblingParachain: boolean;2903 readonly asSiblingParachain: u32;2901 readonly asSiblingParachain: u32;2904 readonly type: 'Relay' | 'SiblingParachain';2902 readonly type: 'Relay' | 'SiblingParachain';2905 }2903 }290629042907 /** @name PalletEthereumRawOrigin (352) */2905 /** @name PalletEthereumRawOrigin (351) */2908 export interface PalletEthereumRawOrigin extends Enum {2906 export interface PalletEthereumRawOrigin extends Enum {2909 readonly isEthereumTransaction: boolean;2907 readonly isEthereumTransaction: boolean;2910 readonly asEthereumTransaction: H160;2908 readonly asEthereumTransaction: H160;2911 readonly type: 'EthereumTransaction';2909 readonly type: 'EthereumTransaction';2912 }2910 }291329112914 /** @name SpCoreVoid (353) */2912 /** @name SpCoreVoid (352) */2915 export type SpCoreVoid = Null;2913 export type SpCoreVoid = Null;291629142917 /** @name PalletUniqueSchedulerError (354) */2915 /** @name PalletUniqueSchedulerError (353) */2918 export interface PalletUniqueSchedulerError extends Enum {2916 export interface PalletUniqueSchedulerError extends Enum {2919 readonly isFailedToSchedule: boolean;2917 readonly isFailedToSchedule: boolean;2920 readonly isNotFound: boolean;2918 readonly isNotFound: boolean;2923 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';2921 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';2924 }2922 }292529232926 /** @name UpDataStructsCollection (355) */2924 /** @name UpDataStructsCollection (354) */2927 export interface UpDataStructsCollection extends Struct {2925 export interface UpDataStructsCollection extends Struct {2928 readonly owner: AccountId32;2926 readonly owner: AccountId32;2929 readonly mode: UpDataStructsCollectionMode;2927 readonly mode: UpDataStructsCollectionMode;2936 readonly externalCollection: bool;2934 readonly externalCollection: bool;2937 }2935 }293829362939 /** @name UpDataStructsSponsorshipState (356) */2937 /** @name UpDataStructsSponsorshipState (355) */2940 export interface UpDataStructsSponsorshipState extends Enum {2938 export interface UpDataStructsSponsorshipState extends Enum {2941 readonly isDisabled: boolean;2939 readonly isDisabled: boolean;2942 readonly isUnconfirmed: boolean;2940 readonly isUnconfirmed: boolean;2946 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2944 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2947 }2945 }294829462949 /** @name UpDataStructsProperties (357) */2947 /** @name UpDataStructsProperties (356) */2950 export interface UpDataStructsProperties extends Struct {2948 export interface UpDataStructsProperties extends Struct {2951 readonly map: UpDataStructsPropertiesMapBoundedVec;2949 readonly map: UpDataStructsPropertiesMapBoundedVec;2952 readonly consumedSpace: u32;2950 readonly consumedSpace: u32;2953 readonly spaceLimit: u32;2951 readonly spaceLimit: u32;2954 }2952 }295529532956 /** @name UpDataStructsPropertiesMapBoundedVec (358) */2954 /** @name UpDataStructsPropertiesMapBoundedVec (357) */2957 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}2955 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}295829562959 /** @name UpDataStructsPropertiesMapPropertyPermission (363) */2957 /** @name UpDataStructsPropertiesMapPropertyPermission (362) */2960 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}2958 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}296129592962 /** @name UpDataStructsCollectionStats (370) */2960 /** @name UpDataStructsCollectionStats (369) */2963 export interface UpDataStructsCollectionStats extends Struct {2961 export interface UpDataStructsCollectionStats extends Struct {2964 readonly created: u32;2962 readonly created: u32;2965 readonly destroyed: u32;2963 readonly destroyed: u32;2966 readonly alive: u32;2964 readonly alive: u32;2967 }2965 }296829662969 /** @name UpDataStructsTokenChild (371) */2967 /** @name UpDataStructsTokenChild (370) */2970 export interface UpDataStructsTokenChild extends Struct {2968 export interface UpDataStructsTokenChild extends Struct {2971 readonly token: u32;2969 readonly token: u32;2972 readonly collection: u32;2970 readonly collection: u32;2973 }2971 }297429722975 /** @name PhantomTypeUpDataStructs (372) */2973 /** @name PhantomTypeUpDataStructs (371) */2976 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}2974 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}297729752978 /** @name UpDataStructsTokenData (374) */2976 /** @name UpDataStructsTokenData (373) */2979 export interface UpDataStructsTokenData extends Struct {2977 export interface UpDataStructsTokenData extends Struct {2980 readonly properties: Vec<UpDataStructsProperty>;2978 readonly properties: Vec<UpDataStructsProperty>;2981 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2979 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2982 readonly pieces: u128;2980 readonly pieces: u128;2983 }2981 }298429822985 /** @name UpDataStructsRpcCollection (376) */2983 /** @name UpDataStructsRpcCollection (375) */2986 export interface UpDataStructsRpcCollection extends Struct {2984 export interface UpDataStructsRpcCollection extends Struct {2987 readonly owner: AccountId32;2985 readonly owner: AccountId32;2988 readonly mode: UpDataStructsCollectionMode;2986 readonly mode: UpDataStructsCollectionMode;2997 readonly readOnly: bool;2995 readonly readOnly: bool;2998 }2996 }299929973000 /** @name RmrkTraitsCollectionCollectionInfo (377) */2998 /** @name RmrkTraitsCollectionCollectionInfo (376) */3001 export interface RmrkTraitsCollectionCollectionInfo extends Struct {2999 export interface RmrkTraitsCollectionCollectionInfo extends Struct {3002 readonly issuer: AccountId32;3000 readonly issuer: AccountId32;3003 readonly metadata: Bytes;3001 readonly metadata: Bytes;3006 readonly nftsCount: u32;3004 readonly nftsCount: u32;3007 }3005 }300830063009 /** @name RmrkTraitsNftNftInfo (378) */3007 /** @name RmrkTraitsNftNftInfo (377) */3010 export interface RmrkTraitsNftNftInfo extends Struct {3008 export interface RmrkTraitsNftNftInfo extends Struct {3011 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3009 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3012 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3010 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3015 readonly pending: bool;3013 readonly pending: bool;3016 }3014 }301730153018 /** @name RmrkTraitsNftRoyaltyInfo (380) */3016 /** @name RmrkTraitsNftRoyaltyInfo (379) */3019 export interface RmrkTraitsNftRoyaltyInfo extends Struct {3017 export interface RmrkTraitsNftRoyaltyInfo extends Struct {3020 readonly recipient: AccountId32;3018 readonly recipient: AccountId32;3021 readonly amount: Permill;3019 readonly amount: Permill;3022 }3020 }302330213024 /** @name RmrkTraitsResourceResourceInfo (381) */3022 /** @name RmrkTraitsResourceResourceInfo (380) */3025 export interface RmrkTraitsResourceResourceInfo extends Struct {3023 export interface RmrkTraitsResourceResourceInfo extends Struct {3026 readonly id: u32;3024 readonly id: u32;3027 readonly resource: RmrkTraitsResourceResourceTypes;3025 readonly resource: RmrkTraitsResourceResourceTypes;3028 readonly pending: bool;3026 readonly pending: bool;3029 readonly pendingRemoval: bool;3027 readonly pendingRemoval: bool;3030 }3028 }303130293032 /** @name RmrkTraitsPropertyPropertyInfo (382) */3030 /** @name RmrkTraitsPropertyPropertyInfo (381) */3033 export interface RmrkTraitsPropertyPropertyInfo extends Struct {3031 export interface RmrkTraitsPropertyPropertyInfo extends Struct {3034 readonly key: Bytes;3032 readonly key: Bytes;3035 readonly value: Bytes;3033 readonly value: Bytes;3036 }3034 }303730353038 /** @name RmrkTraitsBaseBaseInfo (383) */3036 /** @name RmrkTraitsBaseBaseInfo (382) */3039 export interface RmrkTraitsBaseBaseInfo extends Struct {3037 export interface RmrkTraitsBaseBaseInfo extends Struct {3040 readonly issuer: AccountId32;3038 readonly issuer: AccountId32;3041 readonly baseType: Bytes;3039 readonly baseType: Bytes;3042 readonly symbol: Bytes;3040 readonly symbol: Bytes;3043 }3041 }304430423045 /** @name RmrkTraitsNftNftChild (384) */3043 /** @name RmrkTraitsNftNftChild (383) */3046 export interface RmrkTraitsNftNftChild extends Struct {3044 export interface RmrkTraitsNftNftChild extends Struct {3047 readonly collectionId: u32;3045 readonly collectionId: u32;3048 readonly nftId: u32;3046 readonly nftId: u32;3049 }3047 }305030483051 /** @name PalletCommonError (386) */3049 /** @name PalletCommonError (385) */3052 export interface PalletCommonError extends Enum {3050 export interface PalletCommonError extends Enum {3053 readonly isCollectionNotFound: boolean;3051 readonly isCollectionNotFound: boolean;3054 readonly isMustBeTokenOwner: boolean;3052 readonly isMustBeTokenOwner: boolean;3087 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' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3085 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' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3088 }3086 }308930873090 /** @name PalletFungibleError (388) */3088 /** @name PalletFungibleError (387) */3091 export interface PalletFungibleError extends Enum {3089 export interface PalletFungibleError extends Enum {3092 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3090 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3093 readonly isFungibleItemsHaveNoId: boolean;3091 readonly isFungibleItemsHaveNoId: boolean;3097 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3095 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3098 }3096 }309930973100 /** @name PalletRefungibleItemData (389) */3098 /** @name PalletRefungibleItemData (388) */3101 export interface PalletRefungibleItemData extends Struct {3099 export interface PalletRefungibleItemData extends Struct {3102 readonly constData: Bytes;3100 readonly constData: Bytes;3103 }3101 }3144 /** @name PalletRmrkCoreError (400) */3142 /** @name PalletRmrkCoreError (400) */3145 export interface PalletRmrkCoreError extends Enum {3143 export interface PalletRmrkCoreError extends Enum {3146 readonly isCorruptedCollectionType: boolean;3144 readonly isCorruptedCollectionType: boolean;3147 readonly isNftTypeEncodeError: boolean;3148 readonly isRmrkPropertyKeyIsTooLong: boolean;3145 readonly isRmrkPropertyKeyIsTooLong: boolean;3149 readonly isRmrkPropertyValueIsTooLong: boolean;3146 readonly isRmrkPropertyValueIsTooLong: boolean;3150 readonly isRmrkPropertyIsNotFound: boolean;3147 readonly isRmrkPropertyIsNotFound: boolean;3163 readonly isCannotRejectNonPendingNft: boolean;3160 readonly isCannotRejectNonPendingNft: boolean;3164 readonly isResourceNotPending: boolean;3161 readonly isResourceNotPending: boolean;3165 readonly isNoAvailableResourceId: boolean;3162 readonly isNoAvailableResourceId: boolean;3166 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3163 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3167 }3164 }316831653169 /** @name PalletRmrkEquipError (402) */3166 /** @name PalletRmrkEquipError (402) */