Skip to content

Commit

Permalink
fix erc721 interface
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Sep 1, 2023
1 parent 9416730 commit a0fd305
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions vyper/builtins/interfaces/ERC721.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
# Events
event Transfer:
_from: address
_to: address
_tokenId: uint256
_from: indexed(address)
_to: indexed(address)
_tokenId: indexed(uint256)
event Approval:
_owner: address
_approved: address
_tokenId: uint256
_owner: indexed(address)
_approved: indexed(address)
_tokenId: indexed(uint256)
event ApprovalForAll:
_owner: address
_operator: address
_owner: indexed(address)
_operator: indexed(address)
_approved: bool
# Functions
Expand Down

0 comments on commit a0fd305

Please sign in to comment.