vyper-smart-contracts icon indicating copy to clipboard operation
vyper-smart-contracts copied to clipboard

ERC721 onERC721Received returns(bytes4)

Open ssteiger opened this issue 6 years ago • 0 comments

function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes _data) external returns(bytes4);

contract ERC721TokenReceiver:
-> _data: bytes[256]

change to ?:

 -> _data: bytes[4]

or change to ?:

 -> _data: bytes32

ssteiger avatar May 26 '19 15:05 ssteiger