-
Notifications
You must be signed in to change notification settings - Fork 0
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
EIP-7547 engine API changes #1
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: Roman Krasiuk <[email protected]>
Co-authored-by: Roman Krasiuk <[email protected]>
Co-authored-by: Roman Krasiuk <[email protected]>
small changes
Co-authored-by: Dan Cline <[email protected]>
|
||
| Name | Value | | ||
| - | - | | ||
| `INCLUSION_LIST_MAX_GAS` | `uint64(4194304) = 2**22` | |
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.
super pedantic, but this could be a u32 right?
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.
No it should be u64, since the gas limit is u64 as well (sure we won't exceed u32 anytime soon, but the spec should be consistent)
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 see, makes sense
Overview: Engine API changes to reflect new types and contain IL data.
Itemized:
INCLUSION_LIST_MAX_GAS
constantInclusionListSummaryEntryV1
InclusionListSummaryV1
InclusionListStatusV1
engine_newInclusionListV1
(new API)engine_getInclusionListV1
(new API)The sequence diagram below shows the block production flow, using each of the above APIs.