File: Cred.sol
164:     function addToWhitelist(address address_) external onlyOwner {
165:         curatePriceWhitelist[address_] = true;
166:         emit AddedToWhitelist(_msgSender(), address_);
167:     }
168: 
169:     /// @notice Removes an address from the whitelist.
170:     /// @param address_ The address to remove from the whitelist.
171:     function removeFromWhitelist(address address_) external onlyOwner {
172:         curatePriceWhitelist[address_] = false;
173:         emit RemovedFromWhitelist(_msgSender(), address_);
174:     }
