-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add camel support for erc165 #624
Conversation
This PR proposes to:
Also note, this PR will conflict with #629. It might be easier to merge that first and fix conflicts in this PR after. Lastly, this follows the design created in #623 by @martriay. |
Waiting on #637 to be merged first |
let snake_selector = constants::SUPPORTS_INTERFACE_SELECTOR; | ||
let camel_selector = constants::SUPPORTSINTERFACE_SELECTOR; | ||
let snake_selector = constants::supports_interface_SELECTOR; | ||
let camel_selector = constants::supportsInterface_SELECTOR; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good readability improvement!
I think this PR got superseded by #637 |
Fixes (partial) #596
PR Checklist