I found an explanation here, but I want to clarify some moments.
Is the isApprovedForAll
method needs to be overwritten in ERC721Tradable
if we need to get rid of excess fees for approval? Is proxy addresses for each user unique? If it isn't, do we need to add something like
if (_operator == address(proxy_address)) {
return true;
}
in isApprovedForAll
?