IndividuallyCappedCrowdsaleImpl.sol 343 B

12345678910111213141516171819
  1. pragma solidity ^0.4.24;
  2. import "../token/ERC20/IERC20.sol";
  3. import "../crowdsale/validation/IndividuallyCappedCrowdsale.sol";
  4. contract IndividuallyCappedCrowdsaleImpl is IndividuallyCappedCrowdsale {
  5. constructor (
  6. uint256 _rate,
  7. address _wallet,
  8. IERC20 _token
  9. )
  10. public
  11. Crowdsale(_rate, _wallet, _token)
  12. {
  13. }
  14. }