You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When implementing the OperatorFilterer.sol on a base ERC721A the compiler ran into an issue referencing the override of the IERC721A interface. My solution was to remove the reference to IERC721A in the OperatorFilterer methods considering in later solidity versions overriding interfaces is not necessary for functions that override a single interface function.
When implementing the
OperatorFilterer.sol
on a baseERC721A
the compiler ran into an issue referencing the override of theIERC721A
interface. My solution was to remove the reference toIERC721A
in the OperatorFilterer methods considering in later solidity versions overriding interfaces is not necessary for functions that override a single interface function.Issue
The implemented
setApprovalForAll
function:Error received:
My Solution
Implement OperatorFilterer methods without overriding the ERC721 Interface
If this fix goes against the grain please let me know, or if there is a better proposed solution that I could implement.
The text was updated successfully, but these errors were encountered: