You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/drop/DropERC20.sol
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -463,13 +463,13 @@ contract DropERC20 is
463
463
emitWalletClaimCountUpdated(_claimer, _count);
464
464
}
465
465
466
-
/// @dev Lets a contract admin set a maximum number of tokens that can be claimed by any wallet.
466
+
/// @dev Set a maximum number of tokens that can be claimed by any wallet. Must be parsed to 18 decimals when setting, by adding 18 zeros after the desired value.
467
467
function setMaxWalletClaimCount(uint256_count) externalonlyRole(DEFAULT_ADMIN_ROLE) {
468
468
maxWalletClaimCount = _count;
469
469
emitMaxWalletClaimCountUpdated(_count);
470
470
}
471
471
472
-
/// @dev Lets a contract admin set the global maximum supply of tokens.
472
+
/// @dev Set global maximum supply. Must be parsed to 18 decimals when setting, by adding 18 zeros after the desired value.
473
473
function setMaxTotalSupply(uint256_maxTotalSupply) externalonlyRole(DEFAULT_ADMIN_ROLE) {
0 commit comments