Colle Marketplace
Colle.ioWebApp (Live)WebApp (Test)
  • Contracts Overview
  • Functional Requirements
  • Contract Descriptions
  • Technical Project & Audit Details
  • Test Coverage Report
  • Static Analysis
  • Royalty Pool Explained
  • Sale State Explained
  • Sales Tax Explained
  • marketplace
    • IMarketHub
    • IMarketHubRegistrar
    • MarketHub
    • MarketHubRegistrar
    • MarketHubRegistrarUpgradeable
    • collections
      • ColleCollection
      • ColleCollectionUpgradeable
      • CollectionRegistry
      • IColleCollection
      • IColleCollectionUpgradeable
      • ICollectionRegistry
    • currencies
      • BaseCurrency
      • CurrencyRegistry
      • ICurrency
      • ICurrencyRegistry
      • USDCCurrency
    • escrow
      • EscrowUpgradeable
      • IEscrow
      • IEscrowRegistry
    • kycs
      • Account
      • IKYCRegistry
      • KYCRegistry
    • markets
      • BaseMarketUpgradeable
      • IListingMarket
      • IMarket
      • IMarketRegistry
      • IOfferMarket
      • ListingMarketUpgradeable
      • MarketRegistry
      • OfferMarketUpgradeable
    • royalties
      • BaseRoyalty
      • BlackTierRoyalty
      • GoldTierRoyalty
      • GreenTierRoyalty
      • IRoyalty
      • IRoyaltyPool
      • IRoyaltyRegistry
      • PlatinumTierRoyalty
      • RoyaltyPool
      • RoyaltyRegistry
      • v1
        • BlackTierRoyaltyV1
        • GoldTierRoyaltyV1
        • GreenTierRoyaltyV1
        • PlatinumTierRoyaltyV1
    • taxes
      • ITaxPolicyRegistry
      • Tax
      • TaxPolicyRegistry
    • upgrade-gatekeeper
      • IUpgradeGatekeeper
      • UpgradeGatekeeper
    • vaults
      • IVault
      • IVaultRegistry
      • VaultUpgradeable
  • team-smart-wallet
    • ITeamSmartWallet
    • ITeamSmartWalletHelper
    • TeamSmartWallet
    • TeamSmartWalletFactory
    • TeamSmartWalletPermitHelper
  • utils
    • MarketAccess
    • MarketAccessUpgradeable
    • Signature
    • SignatureValidator
Powered by GitBook
On this page
  • RegisteredCollection
  • UnregisteredCollection
  • registerCollection
  • Parameters
  • unregisterCollection
  • Parameters
  • isERC721Registered
  • Parameters
  • Return Values
  • getCollection
  • Parameters
  • Return Values
  1. marketplace
  2. collections

ICollectionRegistry

Interface for the CollectionRegistry contract.

This interface lists all the external functions implemented in the CollectionRegistry contract.

RegisteredCollection

event RegisteredCollection(address collection)

Emitted when a collection is registered.

UnregisteredCollection

event UnregisteredCollection(address collection)

Emitted when a collection is unregistered.

registerCollection

function registerCollection(address _collection) external

Registers a new collection.

Parameters

Name
Type
Description

_collection

address

The address of the collection to register.

unregisterCollection

function unregisterCollection(address _collection) external

Unregisters an existing collection.

Parameters

Name
Type
Description

_collection

address

The address of the collection to unregister.

isERC721Registered

function isERC721Registered(address _collection) external view returns (bool)

Checks if a collection is registered.

Parameters

Name
Type
Description

_collection

address

The address of the collection to check.

Return Values

Name
Type
Description

[0]

bool

A boolean indicating whether the collection is registered or not.

getCollection

function getCollection(address _collection) external view returns (contract IColleCollection)

Returns the collection interface for a registered collection.

Parameters

Name
Type
Description

_collection

address

The address of the collection.

Return Values

Name
Type
Description

[0]

contract IColleCollection

The interface of the registered collection.

PreviousIColleCollectionUpgradeableNextcurrencies

Last updated 2 years ago