Blacklisting A Component
Overview
mapping(address => bool) public isBlacklisted;function setBlacklistStatus(address component, bool status) external onlyRegistryOwner {
if (component == address(0)) revert ErrorsLib.ZeroAddress();
isBlacklisted[component] = status;
emit EventsLib.ComponentBlacklisted(component, status);
}Interactions with Router Whitelist
Last updated