feat: add indexed _tokenId on Approval event for ERC721 (#9)
This commit is contained in:
committed by
Santiago Palladino
parent
198dbf348c
commit
d87e833310
@ -7,7 +7,7 @@ pragma solidity ^0.4.21;
|
|||||||
*/
|
*/
|
||||||
contract ERC721Basic {
|
contract ERC721Basic {
|
||||||
event Transfer(address indexed _from, address indexed _to, uint256 indexed _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 indexed _tokenId);
|
||||||
event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
|
event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
|
||||||
|
|
||||||
function balanceOf(address _owner) public view returns (uint256 _balance);
|
function balanceOf(address _owner) public view returns (uint256 _balance);
|
||||||
|
|||||||
Reference in New Issue
Block a user