State Variables
approvedAddresses
Functions
constructor
Constructor that only serves the purpose of notifying the indexer of its creation via eventname
Return the contract name| Name | Type | Description |
|---|---|---|
<none> | string | name the name of the contract |
addToApprovedList
Add addresses to the approve list. Restricted to owner.| Name | Type | Description |
|---|---|---|
newApproves | address[] | the addresses to add |
addAddressToApprovedList
Add single address to the approve list. Restricted to owner.| Name | Type | Description |
|---|---|---|
newApprove | address | the addresses to add |
removeFromAprovededList
Remove addresses from the approve list. Restricted to owner.| Name | Type | Description |
|---|---|---|
removeApproves | address[] | the addresses to remove |
isApproved
Check to see if address is in approved list| Name | Type | Description |
|---|---|---|
addr | address | the address to check |
| Name | Type | Description |
|---|---|---|
<none> | bool | approved returns true if in the approved list, false if not. |
isApprovedVerbose
Check to see if address is in approved list. Also emits events based on the results| Name | Type | Description |
|---|---|---|
addr | address | the address to check |
| Name | Type | Description |
|---|---|---|
<none> | bool | approved returns true if in the approved list, false if not. |