AllowanceCrowdsaleImpl.sol 359 B

123456789101112
  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 (uint256 rate, address wallet, IERC20 token, address tokenWallet)
  6. public
  7. Crowdsale(rate, wallet, token)
  8. AllowanceCrowdsale(tokenWallet)
  9. {}
  10. }