0x219ddeafe53416d916d78470eaa49457bdfdd91c39c222dd513f39207bec77b7
contracts/MonthlyMint.sol
18:97 warning Visibility modifier must be first in list of modifiers visibility-modifier-order
20:18 warning Avoid to make time-based decisions in your business logic not-rely-on-time
28:5 warning Error message for require is too long reason-string
32:7 warning Error message for require is too long reason-string
42:38 warning Avoid to make time-based decisions in your business logic not-rely-on-time
48:5 warning Error message for require is too long reason-string
contracts/TokenDispenser.sol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: contracts/upgradeability/EternalStorage.sol | |
pragma solidity 0.4.24; | |
/** | |
* @title EternalStorage | |
* @dev This contract holds all the necessary state variables to carry out the storage of any contract. | |
*/ | |
contract EternalStorage { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity 0.4.24; | |
import "openzeppelin-solidity/contracts/ownership/Ownable.sol"; | |
import "openzeppelin-solidity/contracts/math/SafeMath.sol"; | |
/** | |
* @title BaseMediatorFeeManager | |
* @dev Base fee manager to handle fees for AMB mediators. | |
*/ | |
contract BaseMediatorFeeManager is Ownable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: contracts/interfaces/IBridgeValidators.sol | |
pragma solidity 0.4.24; | |
interface IBridgeValidators { | |
function isValidator(address _validator) external view returns (bool); | |
function requiredSignatures() external view returns (uint256); | |
function owner() external view returns (address); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: contracts/upgradeability/EternalStorage.sol | |
pragma solidity 0.4.24; | |
/** | |
* @title EternalStorage | |
* @dev This contract holds all the necessary state variables to carry out the storage of any contract. | |
*/ | |
contract EternalStorage { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: contracts/upgradeability/EternalStorage.sol | |
pragma solidity 0.4.24; | |
/** | |
* @title EternalStorage | |
* @dev This contract holds all the necessary state variables to carry out the storage of any contract. | |
*/ | |
contract EternalStorage { |
NewerOlder