ICollectionRegistry
Interface for the CollectionRegistry contract.
This interface lists all the external functions implemented in the CollectionRegistry contract.
RegisteredCollection
Emitted when a collection is registered.
UnregisteredCollection
Emitted when a collection is unregistered.
registerCollection
Registers a new collection.
Parameters
_collection
address
The address of the collection to register.
unregisterCollection
Unregisters an existing collection.
Parameters
_collection
address
The address of the collection to unregister.
isERC721Registered
Checks if a collection is registered.
Parameters
_collection
address
The address of the collection to check.
Return Values
[0]
bool
A boolean indicating whether the collection is registered or not.
getCollection
Returns the collection interface for a registered collection.
Parameters
_collection
address
The address of the collection.
Return Values
[0]
contract IColleCollection
The interface of the registered collection.
Last updated