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