This file contains 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.19; | |
import "zeppelin-solidity/contracts/crowdsale/distribution/RefundableCrowdsale.sol"; | |
import "zeppelin-solidity/contracts/crowdsale/validation/CappedCrowdsale.sol"; | |
import "zeppelin-solidity/contracts/crowdsale/emission/MintedCrowdsale.sol"; | |
import "./MonoretoToken.sol"; | |
/** | |
* @title Base contract for Monoreto PreICO and ICO |
This file contains 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.19; | |
import "./BaseMonoretoCrowdsale.sol"; | |
contract MonoretoPreIco is BaseMonoretoCrowdsale { | |
function MonoretoPreIco(uint256 _openTime, uint256 _closeTime, uint256 _goal, uint256 _cap, uint256 _centWeiRate, uint256 _centMnrRate, uint256 _tokenTarget, address _ownerWallet, MonoretoToken _token) public | |
BaseMonoretoCrowdsale(_tokenTarget, _centWeiRate, _centMnrRate) | |
CappedCrowdsale(_cap) | |
RefundableCrowdsale(_goal) |