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.
8 lines
317 B
8 lines
317 B
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity >=0.5.0;
|
|
|
|
interface IPresale {
|
|
function initialize(
|
|
address owner_, uint256 softCap_, uint256 hardCap_, uint256 max_, uint256 min_, uint256 startTime_, uint256 endTime_, uint256 tokenRate_, address tokenAddr_, bool whitelist_
|
|
) external;
|
|
} |