IndividuallyCappedCrowdsaleImpl.sol 423 B

1234567891011
  1. pragma solidity ^0.5.0;
  2. import "../token/ERC20/IERC20.sol";
  3. import "../crowdsale/validation/IndividuallyCappedCrowdsale.sol";
  4. import "./CapperRoleMock.sol";
  5. contract IndividuallyCappedCrowdsaleImpl is IndividuallyCappedCrowdsale, CapperRoleMock {
  6. constructor (uint256 rate, address payable wallet, IERC20 token) public Crowdsale(rate, wallet, token) {
  7. // solhint-disable-previous-line no-empty-blocks
  8. }
  9. }