August 2019
Intermediate to advanced
486 pages
13h 52m
English
The isApprovedForAll() function is used to check that the given operator has operator rights on the given owner's tokens.
This function takes the following arguments:
This function returns a Boolean value. The following are the return values:
Let's look at the isApprovedForAll() function code:
function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator];}