Skip to content

Commit

Permalink
emit contract uri event
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Wolf <wolfynft@gmail.com>
  • Loading branch information
wolfy-nft committed Jan 6, 2025
1 parent 44f2849 commit c04f419
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ contract ERC721MagicDropMetadataCloneable is
/// @param newContractURI The new contract metadata URI.
function setContractURI(string calldata newContractURI) external override onlyOwner {
_setContractURI(newContractURI);

emit ContractURIUpdated(newContractURI);
}

/// @notice Adjusts the maximum token supply.
Expand Down

0 comments on commit c04f419

Please sign in to comment.