From 72ef69c4a2c3f179c6f8bebe57c51ff9ce8d2af3 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Mon, 29 Mar 2021 04:50:46 +0530 Subject: [PATCH] Updated params on TokenDelegate.sol --- contracts/TokenDelegate.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/TokenDelegate.sol b/contracts/TokenDelegate.sol index 6170214..56a2ead 100644 --- a/contracts/TokenDelegate.sol +++ b/contracts/TokenDelegate.sol @@ -6,10 +6,10 @@ import { SafeMath } from "./SafeMath.sol"; contract InstaTokenDelegate is TokenDelegateStorageV1, TokenEvents { /// @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 - 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 bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");