IRMRKCatalog
RMRK team
IRMRKCatalog
An interface Catalog for RMRK equippable module.
Methods
checkIsEquippable
function checkIsEquippable(uint64 partId, address targetAddress) external view returns (bool isEquippable)Used to check whether the given address is allowed to equip the desired Part.
Returns true if a collection may equip asset with partId.
Parameters
| Name | Type | Description |
|---|---|---|
| partId | uint64 | The ID of the part that we are checking |
| targetAddress | address | The address that we are checking for whether the part can be equipped into it or not |
Returns
| Name | Type | Description |
|---|---|---|
| isEquippable | bool | The status indicating whether the targetAddress can be equipped into Part with partId or not |
checkIsEquippableToAll
function checkIsEquippableToAll(uint64 partId) external view returns (bool isEquippableToAll)Used to check if the part is equippable by all addresses.
Returns true if part is equippable to all.
Parameters
| Name | Type | Description |
|---|---|---|
| partId | uint64 | ID of the part that we are checking |
Returns
| Name | Type | Description |
|---|---|---|
| isEquippableToAll | bool | The status indicating whether the part with partId can be equipped by any address or not |
getMetadataURI
function getMetadataURI() external view returns (string)Used to return the metadata URI of the associated Catalog.
Returns
| Name | Type | Description |
|---|---|---|
| _0 | string | Catalog metadata URI |
getPart
function getPart(uint64 partId) external view returns (struct IRMRKCatalog.Part part)Used to retrieve a Part with id partId
Parameters
| Name | Type | Description |
|---|---|---|
| partId | uint64 | ID of the part that we are retrieving |
Returns
| Name | Type | Description |
|---|---|---|
| part | IRMRKCatalog.Part | The Part struct associated with given partId |
getParts
function getParts(uint64[] partIds) external view returns (struct IRMRKCatalog.Part[] part)Used to retrieve multiple parts at the same time.
Parameters
| Name | Type | Description |
|---|---|---|
| partIds | uint64[] | An array of part IDs that we want to retrieve |
Returns
| Name | Type | Description |
|---|---|---|
| part | IRMRKCatalog.Part[] | An array of Part structs associated with given partIds |
getType
function getType() external view returns (string)Used to return the itemType of the associated Catalog
Returns
| Name | Type | Description |
|---|---|---|
| _0 | string | itemType of the associated Catalog |
supportsInterface
function supportsInterface(bytes4 interfaceId) external view returns (bool)Returns true if this contract implements the interface defined by interfaceId. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP (opens in a new tab) section] to learn more about how these ids are created. This function call must use less than 30 000 gas.
Parameters
| Name | Type | Description |
|---|---|---|
| interfaceId | bytes4 | undefined |
Returns
| Name | Type | Description |
|---|---|---|
| _0 | bool | undefined |
Events
AddedEquippables
event AddedEquippables(uint64 indexed partId, address[] equippableAddresses)Event to announce new equippables to the part.
It is emitted when new addresses are marked as equippable for partId.
Parameters
| Name | Type | Description |
|---|---|---|
partId indexed | uint64 | ID of the part that had new equippable addresses added |
| equippableAddresses | address[] | An array of the new addresses that can equip this part |
AddedPart
event AddedPart(uint64 indexed partId, enum IRMRKCatalog.ItemType indexed itemType, uint8 zIndex, address[] equippableAddresses, string metadataURI)Event to announce addition of a new part.
It is emitted when a new part is added.
Parameters
| Name | Type | Description |
|---|---|---|
partId indexed | uint64 | ID of the part that was added |
itemType indexed | enum IRMRKCatalog.ItemType | Enum value specifying whether the part is None, Slot and Fixed |
| zIndex | uint8 | An uint specifying the z value of the part. It is used to specify the depth which the part should be rendered at |
| equippableAddresses | address[] | An array of addresses that can equip this part |
| metadataURI | string | The metadata URI of the part |
SetEquippableToAll
event SetEquippableToAll(uint64 indexed partId)Event to announce that a given part can be equipped by any address.
It is emitted when a given part is marked as equippable by any.
Parameters
| Name | Type | Description |
|---|---|---|
partId indexed | uint64 | ID of the part marked as equippable by any address |
SetEquippables
event SetEquippables(uint64 indexed partId, address[] equippableAddresses)Event to announce the overriding of equippable addresses of the part.
It is emitted when the existing list of addresses marked as equippable for partId is overwritten by a new one.
Parameters
| Name | Type | Description |
|---|---|---|
partId indexed | uint64 | ID of the part whose list of equippable addresses was overwritten |
| equippableAddresses | address[] | The new, full, list of addresses that can equip this part |