August 2018
Intermediate to advanced
404 pages
11h 19m
English
mapping(address => bool) public whitelist;
function addToWhitelist(address _investor) external onlyOwner { whitelist[_investor] = true; }
function addMultipleToWhitelist(address[] _investors) external onlyOwner { for (uint256 i = 0; i < _investors.length; i++) { whitelist[_investors[i]] = true; }}Read now
Unlock full access