-
Notifications
You must be signed in to change notification settings - Fork 743
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
[Merged by Bors] - Implement skip_randao_verification
and blinded block rewards API
#3540
Closed
michaelsproul
wants to merge
3
commits into
sigp:unstable
from
michaelsproul:skip-randao-verification
Closed
[Merged by Bors] - Implement skip_randao_verification
and blinded block rewards API
#3540
michaelsproul
wants to merge
3
commits into
sigp:unstable
from
michaelsproul:skip-randao-verification
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
michaelsproul
added
ready-for-review
The code is ready for review
low-hanging-fruit
Easy to resolve, get it before someone else does!
HTTP-API
v3.1.2
Release after v3.1.0 (formerly v3.1.1)
backwards-incompat
Backwards-incompatible API change
labels
Sep 5, 2022
michaelsproul
changed the title
Implement
Implement Sep 12, 2022
skip_randao_verification
skip_randao_verification
and rewards API
michaelsproul
changed the title
Implement
Implement Sep 12, 2022
skip_randao_verification
and rewards APIskip_randao_verification
and blinded block rewards API
realbigsean
reviewed
Sep 13, 2022
realbigsean
reviewed
Sep 13, 2022
realbigsean
added
waiting-on-author
The reviewer has suggested changes and awaits thier implementation.
and removed
ready-for-review
The code is ready for review
labels
Sep 13, 2022
michaelsproul
added
ready-for-review
The code is ready for review
and removed
waiting-on-author
The reviewer has suggested changes and awaits thier implementation.
labels
Sep 15, 2022
paulhauner
approved these changes
Sep 19, 2022
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.
LGTM!
michaelsproul
added
ready-for-merge
This PR is ready to merge.
and removed
ready-for-review
The code is ready for review
labels
Sep 19, 2022
bors r+ |
bors bot
pushed a commit
that referenced
this pull request
Sep 19, 2022
…3540) ## Issue Addressed ethereum/beacon-APIs#222 ## Proposed Changes Update Lighthouse's randao verification API to match the `beacon-APIs` spec. We implemented the API before spec stabilisation, and it changed slightly in the course of review. Rather than a flag `verify_randao` taking a boolean value, the new API uses a `skip_randao_verification` flag which takes no argument. The new spec also requires the randao reveal to be present and equal to the point-at-infinity when `skip_randao_verification` is set. I've also updated the `POST /lighthouse/analysis/block_rewards` API to take blinded blocks as input, as the execution payload is irrelevant and we may want to assess blocks produced by builders. ## Additional Info This is technically a breaking change, but seeing as I suspect I'm the only one using these parameters/APIs, I think we're OK to include this in a patch release.
Build failed (retrying...): |
bors r- |
Canceled. |
bors r+ |
bors bot
pushed a commit
that referenced
this pull request
Sep 19, 2022
…3540) ## Issue Addressed ethereum/beacon-APIs#222 ## Proposed Changes Update Lighthouse's randao verification API to match the `beacon-APIs` spec. We implemented the API before spec stabilisation, and it changed slightly in the course of review. Rather than a flag `verify_randao` taking a boolean value, the new API uses a `skip_randao_verification` flag which takes no argument. The new spec also requires the randao reveal to be present and equal to the point-at-infinity when `skip_randao_verification` is set. I've also updated the `POST /lighthouse/analysis/block_rewards` API to take blinded blocks as input, as the execution payload is irrelevant and we may want to assess blocks produced by builders. ## Additional Info This is technically a breaking change, but seeing as I suspect I'm the only one using these parameters/APIs, I think we're OK to include this in a patch release.
bors
bot
changed the title
Implement
[Merged by Bors] - Implement Sep 19, 2022
skip_randao_verification
and blinded block rewards APIskip_randao_verification
and blinded block rewards API
Woodpile37
pushed a commit
to Woodpile37/lighthouse
that referenced
this pull request
Jan 6, 2024
…igp#3540) ## Issue Addressed ethereum/beacon-APIs#222 ## Proposed Changes Update Lighthouse's randao verification API to match the `beacon-APIs` spec. We implemented the API before spec stabilisation, and it changed slightly in the course of review. Rather than a flag `verify_randao` taking a boolean value, the new API uses a `skip_randao_verification` flag which takes no argument. The new spec also requires the randao reveal to be present and equal to the point-at-infinity when `skip_randao_verification` is set. I've also updated the `POST /lighthouse/analysis/block_rewards` API to take blinded blocks as input, as the execution payload is irrelevant and we may want to assess blocks produced by builders. ## Additional Info This is technically a breaking change, but seeing as I suspect I'm the only one using these parameters/APIs, I think we're OK to include this in a patch release.
Woodpile37
pushed a commit
to Woodpile37/lighthouse
that referenced
this pull request
Jan 6, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
backwards-incompat
Backwards-incompatible API change
HTTP-API
low-hanging-fruit
Easy to resolve, get it before someone else does!
ready-for-merge
This PR is ready to merge.
v3.1.2
Release after v3.1.0 (formerly v3.1.1)
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue Addressed
ethereum/beacon-APIs#222
Proposed Changes
Update Lighthouse's randao verification API to match the
beacon-APIs
spec. We implemented the API before spec stabilisation, and it changed slightly in the course of review.Rather than a flag
verify_randao
taking a boolean value, the new API uses askip_randao_verification
flag which takes no argument. The new spec also requires the randao reveal to be present and equal to the point-at-infinity whenskip_randao_verification
is set.I've also updated the
POST /lighthouse/analysis/block_rewards
API to take blinded blocks as input, as the execution payload is irrelevant and we may want to assess blocks produced by builders.Additional Info
This is technically a breaking change, but seeing as I suspect I'm the only one using these parameters/APIs, I think we're OK to include this in a patch release.