ERC721 Function Overloading #101
andrew-fleming
started this conversation in
Design
Replies: 1 comment
-
That solution seems reasonable to me. Let's make sure we document it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ERC721 Function Overloading
In order to exactly follow EIP721, the proposal requires that two
safeTransferFrom()
functions exist; where, one includes abytes data
parameter and the other does not. Function overloading, as of now, is not possible with Cairo. Therefore, the current working implementation of ERC721 solely includes onesafeTransferFrom()
with the extra parameter.Beta Was this translation helpful? Give feedback.
All reactions