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
The ERC721 standard as defined here: https://eips.ethereum.org/EIPS/eip-721 specifies that an ERC721 SC must implement a safeTransferFrom method. This method verifies that the recipient is another SC and if so, it verifies that the recipient SC implements IERC721Receiver interface
Objective
Implment the IERC721Receiver interface and implement the onERC721Received(operator, from, tokenId, data) method
The text was updated successfully, but these errors were encountered:
Context
The ERC721 standard as defined here: https://eips.ethereum.org/EIPS/eip-721 specifies that an ERC721 SC must implement a
safeTransferFrom
method. This method verifies that the recipient is another SC and if so, it verifies that the recipient SC implements IERC721Receiver interfaceObjective
Implment the IERC721Receiver interface and implement the
onERC721Received(operator, from, tokenId, data)
methodThe text was updated successfully, but these errors were encountered: