State Variables
deniedAddresses
Functions
constructor
Constructor that only serves the purpose of notifying the indexer of its creation via eventname
Return the contract nameName | Type | Description |
---|---|---|
<none> | string | name the name of the contract |
addToDeniedList
Add addresses to the denied list. Restricted to owner.Name | Type | Description |
---|---|---|
newDeniedAddrs | address[] | the addresses to add |
addAddressToDeniedList
Add single address to the denied list. Restricted to owner.Name | Type | Description |
---|---|---|
newDeniedAddr | address | the addresses to add |
removeFromDeniedList
Remove addresses from the Denied list. Restricted to owner.Name | Type | Description |
---|---|---|
removeDeniedAddrs | address[] | the addresses to remove |
isDenied
Check to see if address is in denied listName | Type | Description |
---|---|---|
addr | address | the address to check |
Name | Type | Description |
---|---|---|
<none> | bool | denied returns true if in the denied list, false if not. |
isDeniedVerbose
Check to see if address is in denied list. Also emits events based on the resultsName | Type | Description |
---|---|---|
addr | address | the address to check |
Name | Type | Description |
---|---|---|
<none> | bool | denied returns true if in the denied list, false if not. |