-
Notifications
You must be signed in to change notification settings - Fork 61
contract.SaleControl
Aleksey Bykhun edited this page Jan 18, 2023
·
1 revision
Inherits: Ownable
uint256 public constant __SALE_NEVER_STARTS = 2 ** 256 - 1;uint256 public startTimestamp = __SALE_NEVER_STARTS;modifier whenSaleStarted();function updateStartTimestamp(uint256 _startTimestamp) public onlyOwner;function startSale() public onlyOwner;function stopSale() public onlyOwner;function saleStarted() public view returns (bool);