{
    "Function": "createCollection",
    "File": "smart-contracts/NextGenCore.sol",
    "Parent Contracts": [
        "smart-contracts/ERC2981.sol",
        "smart-contracts/Ownable.sol",
        "smart-contracts/ERC721Enumerable.sol",
        "smart-contracts/IERC721Enumerable.sol",
        "smart-contracts/ERC721.sol",
        "smart-contracts/IERC721Metadata.sol",
        "smart-contracts/IERC721.sol",
        "smart-contracts/ERC165.sol",
        "smart-contracts/IERC2981.sol",
        "smart-contracts/IERC165.sol",
        "smart-contracts/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "FunctionAdminRequired"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function createCollection(string memory _collectionName, string memory _collectionArtist, string memory _collectionDescription, string memory _collectionWebsite, string memory _collectionLicense, string memory _collectionBaseURI, string memory _collectionLibrary, string[] memory _collectionScript) public FunctionAdminRequired(this.createCollection.selector) {\n        collectionInfo[newCollectionIndex].collectionName = _collectionName;\n        collectionInfo[newCollectionIndex].collectionArtist = _collectionArtist;\n        collectionInfo[newCollectionIndex].collectionDescription = _collectionDescription;\n        collectionInfo[newCollectionIndex].collectionWebsite = _collectionWebsite;\n        collectionInfo[newCollectionIndex].collectionLicense = _collectionLicense;\n        collectionInfo[newCollectionIndex].collectionBaseURI = _collectionBaseURI;\n        collectionInfo[newCollectionIndex].collectionLibrary = _collectionLibrary;\n        collectionInfo[newCollectionIndex].collectionScript = _collectionScript;\n        isCollectionCreated[newCollectionIndex] = true;\n        newCollectionIndex = newCollectionIndex + 1;\n    }"
}