BlockAllRegistry
Inherits: IBlockListRegistry
Author: transientlabs.xyz
BlockList that blocks all approvals and can be used as a semi-soulbound token
Functions
getBlockListStatus
Function to get blocklist status with True meaning that the operator is blocked
function getBlockListStatus(address) external pure override returns (bool);
Parameters
Name | Type | Description |
---|---|---|
<none> | address |
setBlockListStatus
Function to set the block list status for multiple operators
Must be called by the blockList owner
function setBlockListStatus(address[] calldata, bool) external pure override;
Parameters
Name | Type | Description |
---|---|---|
<none> | address[] | |
<none> | bool |
clearBlockList
Function to clear the block list status
Must be called by the blockList owner
function clearBlockList() external pure override;