Skip to content

Commit 6ac3bd5

Browse files
Krishang NadgaudaKrishang Nadgauda
authored andcommitted
DropERC721: cleanup comments
1 parent 7d73e34 commit 6ac3bd5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

contracts/drop/DropERC721.sol

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)