-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: add names to all events and functions signatures inputs #191
Comments
This will cause |
Another somewhat related thing I noticed recently too is there are some issues if we have the same event selector but the configuration of what is indexed is different - i.e. |
@Quazia We have a ticket for that isssue with indexed vs nonindexed args here: https://linear.app/rh-app/issue/BOOST-4764/modify-the-eventaction-validators-to-account-for-indexed-args-through |
Yeah, Boost detail designs, and create flow rely on input names to label actions to be less error-prone and make the ui richer. |
@sammccord this needs to be downstream of the work on signature package eronomics, as it'll break EventAction right now. |
May I ask if the new-comers work for a paid position? |
@soulstar9792 Thanks for inquiring. We are not currently hiring freelance contributors without prior history of contributions to the repository. |
Description
Frontend needs to show detailed info about action steps. They have the signature, and
@boostxyz/signatures
to get the event/function name, but would need names for individual inputs to both help users create boosts, and our devs to build richer ui.Suggested Solution
Add names to all events and functions in
boost-protocol/packages/signatures/manifests
ie
Transfer(address indexed,address indexed,uint256 indexed)
becomes
Transfer(address indexed from,address indexed to,uint256 indexed amount)
The text was updated successfully, but these errors were encountered: