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.
23 lines
502 B
23 lines
502 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)
|
|
{
|
|
}
|
|
|
|
}
|
|
|