IBlacklist

Functions

blacklistedAccounts

Returns all blacklisted accounts.

function blacklistedAccounts() external view returns (address[] memory);

blacklistedLength

Returns the number of blacklisted accounts.

function blacklistedLength() external view returns (uint256);

isBlacklisted

Returns true if the account is blacklisted.

function isBlacklisted(address account) external view returns (bool);

Events

Blacklisted

Emitted when an account is added to the blacklist.

Unblacklisted

Emitted when an account is removed from the blacklist.

Errors

Blacklist__AlreadyBlacklisted

Blacklist__Blacklisted

Blacklist__NotBlacklisted