Updated params on TokenDelegate.sol

This commit is contained in:
Thrilok Kumar 2021-03-29 04:50:46 +05:30
parent 51815d5b1e
commit 72ef69c4a2

View File

@ -6,10 +6,10 @@ import { SafeMath } from "./SafeMath.sol";
contract InstaTokenDelegate is TokenDelegateStorageV1, TokenEvents { contract InstaTokenDelegate is TokenDelegateStorageV1, TokenEvents {
/// @notice Minimum time between mints /// @notice Minimum time between mints
uint32 public constant minimumTimeBetweenMints = 1 days * 7; // TODO @thrilok209 @KaymasJain - Replace it uint32 public constant minimumTimeBetweenMints = 1 days * 365; // 365 days
/// @notice Cap on the percentage of totalSupply that can be minted at each mint /// @notice Cap on the percentage of totalSupply that can be minted at each mint
uint8 public constant mintCap = 2; // TODO @thrilok209 @KaymasJain - Replace it uint8 public constant mintCap = 2; // 2%
/// @notice The EIP-712 typehash for the contract's domain /// @notice The EIP-712 typehash for the contract's domain
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");