Skip to content

Commit

Permalink
move func
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 Dec 9, 2024
1 parent 99ff684 commit 0fd4dc3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions contracts/nft/erc721m/ERC721MInitializableV1_0_1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,6 @@ contract ERC721MInitializableV1_0_1 is
return _contractURI;
}

function isFrozen() public view returns (bool) {
return _frozen;
}

/*==============================================================
= MODIFIERS =
==============================================================*/
Expand Down Expand Up @@ -231,6 +227,12 @@ contract ERC721MInitializableV1_0_1 is
return _setupLocked;
}

/// @notice Checks if the contract is frozen
/// @return Whether the contract is frozen
function isFrozen() public view returns (bool) {
return _frozen;
}

/// @notice Checks if the contract supports a given interface
/// @param interfaceId The interface identifier
/// @return True if the contract supports the interface, false otherwise
Expand Down

0 comments on commit 0fd4dc3

Please sign in to comment.