Commit d87e8333 by Ignacio Mazzara Committed by Santiago Palladino

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

parent 198dbf34
......@@ -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);
......
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