File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,10 @@ contract DropERC721 is
130130 return super .supportsInterface (interfaceId) || type (IERC2981Upgradeable ).interfaceId == interfaceId;
131131 }
132132
133+ /*///////////////////////////////////////////////////////////////
134+ Contract identifiers
135+ //////////////////////////////////////////////////////////////*/
136+
133137 function contractType () external pure returns (bytes32 ) {
134138 return bytes32 ("DropERC721 " );
135139 }
@@ -176,6 +180,10 @@ contract DropERC721 is
176180 emit TokenURIRevealed (_index, revealedURI);
177181 }
178182
183+ /*///////////////////////////////////////////////////////////////
184+ Setter functions
185+ //////////////////////////////////////////////////////////////*/
186+
179187 /// @dev Lets a contract admin set the global maximum supply for collection's NFTs.
180188 function setMaxTotalSupply (uint256 _maxTotalSupply ) external onlyRole (DEFAULT_ADMIN_ROLE) {
181189 maxTotalSupply = _maxTotalSupply;
You can’t perform that action at this time.
0 commit comments