Skip to content

Commit a9c3748

Browse files
authored
chore: NOJIRA: Change hybrid minting strategy threshold token ID to 2**128. (#81)
1 parent 2182128 commit a9c3748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/token/erc721/abstract/ERC721Hybrid.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ abstract contract ERC721Hybrid is ERC721PsiBurnable, ERC721, IImmutableERC721Err
5555
* minted by quantity
5656
**/
5757
function bulkMintThreshold() public pure virtual returns (uint256) {
58-
return 2 ** 64;
58+
return 2 ** 128;
5959
}
6060

6161
/// @dev returns the startTokenID for the minting by quantity section of the contract

0 commit comments

Comments
 (0)