Moved decimals to TokenDelegatorStorage

This commit is contained in:
Thrilok Kumar 2021-03-27 02:16:29 +05:30
parent ec0311e098
commit c072d9767c
2 changed files with 4 additions and 3 deletions

View File

@ -6,9 +6,6 @@ import { SafeMath } from "./SafeMath.sol";
// TODO @thrilok209 @KaymasJain - Rename it
contract TokenDelegate is TokenDelegateStorageV1, TokenEvents {
/// @notice EIP-20 token decimals for this token
uint8 public constant decimals = 18;
/// @notice Minimum time between mints
uint32 public constant minimumTimeBetweenMints = 1 days * 7; // TODO @thrilok209 @KaymasJain - Replace it

View File

@ -52,6 +52,10 @@ contract TokenDelegatorStorage {
/// @notice Total number of tokens in circulation
uint public totalSupply = 10000000e18; // TODO - Replace it
/// @notice EIP-20 token decimals for this token
uint8 public constant decimals = 18;
}
/**