Unverified Commit a81b07ce by Harsh Vakharia Committed by GitHub

Fix typo in retrieval of onERC721Received selector (#3151)

parent f55d2716
...@@ -16,7 +16,7 @@ interface IERC721Receiver { ...@@ -16,7 +16,7 @@ interface IERC721Receiver {
* It must return its Solidity selector to confirm the token transfer. * It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
* *
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/ */
function onERC721Received( function onERC721Received(
address operator, address operator,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment