CappedCrowdsaleImpl.sol 342 B

1234567891011121314151617181920
  1. pragma solidity ^0.4.24;
  2. import "../token/ERC20/IERC20.sol";
  3. import "../crowdsale/validation/CappedCrowdsale.sol";
  4. contract CappedCrowdsaleImpl is CappedCrowdsale {
  5. constructor (
  6. uint256 rate,
  7. address wallet,
  8. IERC20 token,
  9. uint256 cap
  10. )
  11. public
  12. Crowdsale(rate, wallet, token)
  13. CappedCrowdsale(cap)
  14. {
  15. }
  16. }