You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
516 B
24 lines
516 B
pragma solidity ^0.4.24;
|
|
|
|
import "../crowdsale/price/IncreasingPriceCrowdsale.sol";
|
|
import "../math/SafeMath.sol";
|
|
|
|
|
|
contract IncreasingPriceCrowdsaleImpl is IncreasingPriceCrowdsale {
|
|
|
|
constructor (
|
|
uint256 _openingTime,
|
|
uint256 _closingTime,
|
|
address _wallet,
|
|
IERC20 _token,
|
|
uint256 _initialRate,
|
|
uint256 _finalRate
|
|
)
|
|
public
|
|
Crowdsale(_initialRate, _wallet, _token)
|
|
TimedCrowdsale(_openingTime, _closingTime)
|
|
IncreasingPriceCrowdsale(_initialRate, _finalRate)
|
|
{
|
|
}
|
|
|
|
}
|
|
|