feat: add indexed _tokenId on Approval event for ERC721 (#9)

This commit is contained in:
Ignacio Mazzara
2018-08-23 14:25:24 -03:00
committed by Santiago Palladino
parent 198dbf348c
commit d87e833310

View File

@ -7,7 +7,7 @@ pragma solidity ^0.4.21;
*/
contract ERC721Basic {
event Transfer(address indexed _from, address indexed _to, uint256 indexed _tokenId);
event Approval(address indexed _owner, address indexed _approved, uint256 _tokenId);
event Approval(address indexed _owner, address indexed _approved, uint256 indexed _tokenId);
event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
function balanceOf(address _owner) public view returns (uint256 _balance);