Commit 8443df38 by Ignacio Mazzara Committed by Santiago Palladino

feat: indexed _tokenId on Transfer Event for ERC721 (#6)

parent 6e5596e8
...@@ -6,7 +6,7 @@ pragma solidity ^0.4.21; ...@@ -6,7 +6,7 @@ pragma solidity ^0.4.21;
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
*/ */
contract ERC721Basic { contract ERC721Basic {
event Transfer(address indexed _from, address indexed _to, uint256 _tokenId); 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 _tokenId);
event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
......
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