AllowanceCrowdsaleImpl.sol 368 B

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