-
Notifications
You must be signed in to change notification settings - Fork 5
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: Change position of item of Action enum #104
Comments
Is the idea that we |
I think the things that really matter is that we should agree on a stable version for |
this could be a possibly stable version for Action |
Yeah, stable it like this. and we can only add new item, not allow to delete. |
Considering that the items in the
Action
enum may change, I propose movingRespond
andAddToken
to the front of theAction
enum. The main reason for this proposal is that the Solana client, upon receiving messages from theExocoreGateway
, executes logic based on theaction
in the message. If there are changes to the items in theAction
enum, it may affect the values of these two items, forcing the Solana client to update accordingly to accommodate such changes.expect:
enum Action {
Respond,
REQUEST_ADD_WHITELIST_TOKEN,
...
}
The text was updated successfully, but these errors were encountered: