-
Notifications
You must be signed in to change notification settings - Fork 2
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
AA-340: Update the RIP-7560 with the EIP-7702 transaction type fields #7
Conversation
@@ -217,10 +225,20 @@ struct TransactionType4 { | |||
bytes paymasterData; | |||
bytes callData; | |||
bytes signature; | |||
address[] authorizationList; | |||
bool[] authorizationListStatus; |
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.
maybe better to provide authorizedList
and failedAuthorizationList
(which is expected to be empty)
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.
Just talked to @shahafn about that - we could not see how would it make it better? Appears to provide the exact same information (except, maybe, losing the ordering - which might even be a downside in some edge-cases) and not improving anything.
I prefer the bool[]
approach.
RIPS/rip-7560.md
Outdated
@@ -61,7 +61,7 @@ smart contracts. This, however, is impossible without an addition of Native Acco | |||
| Name | Value | | |||
|-----------------------|---------------------------------------------------------------------------------| | |||
| FORK_BLOCK | TBD | | |||
| AA_TX_TYPE | 4 | | |||
| AA_TX_TYPE | 126 | |
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.
I'm afraid that 126 is a deposit tx type at Optimism. Relative docs at optimism specs here.
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.
authorizationList
No description provided.