-
Notifications
You must be signed in to change notification settings - Fork 63
Add improvements to SSZ support #403
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
Open
jclapis
wants to merge
28
commits into
add-ssz-to-pbs
Choose a base branch
from
ssz-update-v2
base: add-ssz-to-pbs
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
bad5b08
Update to v0.9.1 (#398)
jclapis 3e4a7da
Changed get_accept_type() to allow multiple types
jclapis 29398f6
Update to v0.9.2 (#400)
jclapis 7ab1f7e
get_header()'s impl now works with multiple types
jclapis bfbcfe4
Added retry-different-accept-types thing to get_header
jclapis adfec62
Refactored and added some unit tests
jclapis b22eed8
Added explicit lowercase matching to EncodingType
jclapis 0155533
Added the Fulu fork slot for Mainnet
jclapis a975048
Merge branch 'update-fulu-slot' into ssz-update-v2
jclapis 3ad487b
Added the Fulu fork slot for Mainnet (#402)
jclapis d64adbb
Merge branch 'main' into ssz-update-v2
jclapis 8ebfbd0
Cleaned up some error handling
jclapis 2499bd5
Made some strings static
jclapis 41d879e
PbsClientError can noe be created from BodyDeserializeError
jclapis 42b8060
Fix clippy
jclapis a9680f7
Removed consensus-version-header from submit_block response
jclapis d7bde7f
Added multi-type support to submit_block
jclapis ad3f019
Updated the mock relay with multi-type support on submit_block
jclapis 7dba8d1
Support lido modules (#392)
PedroCM96 aaa0967
Updated the submit_block unit tests
jclapis 83ca8f8
Added more multitype tests to submit_block, not done yet though
jclapis d36ef3b
Switched relay response handling to switch to JSON on any 4xx
jclapis 1c24fb1
clarify timing games config (#411)
ltitanb e089e7d
Allow builds from other branches (#414)
jclapis ee25871
Add --version support (#408)
jclapis 58b63db
Merge branch 'main' into ssz-update-v2
jclapis d2b8226
Optimized get_header
jclapis fcd7425
Some refactoring of send_get_header_impl to process the payload
jclapis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| [ | ||
| { | ||
| "constant": true, | ||
| "inputs": [ | ||
| { "name": "nodeOperatorId", "type": "uint256" } | ||
| ], | ||
| "name": "getNodeOperatorSummary", | ||
| "outputs": [ | ||
| { "name": "targetLimitMode", "type": "uint256" }, | ||
| { "name": "targetValidatorsCount", "type": "uint256" }, | ||
| { "name": "stuckValidatorsCount", "type": "uint256" }, | ||
| { "name": "refundedValidatorsCount", "type": "uint256" }, | ||
| { "name": "stuckPenaltyEndTimestamp", "type": "uint256" }, | ||
| { "name": "totalExitedValidators", "type": "uint256" }, | ||
| { "name": "totalDepositedValidators", "type": "uint256" }, | ||
| { "name": "depositableValidatorsCount", "type": "uint256" } | ||
| ], | ||
| "payable": false, | ||
| "stateMutability": "view", | ||
| "type": "function" | ||
| }, | ||
| { | ||
| "constant": true, | ||
| "inputs": [ | ||
| { "name": "nodeOperatorId", "type": "uint256" }, | ||
| { "name": "startIndex", "type": "uint256" }, | ||
| { "name": "keysCount", "type": "uint256" } | ||
| ], | ||
| "name": "getSigningKeys", | ||
| "outputs": [ | ||
| { "name": "", "type": "bytes" } | ||
| ], | ||
| "payable": false, | ||
| "stateMutability": "view", | ||
| "type": "function" | ||
| } | ||
| ] |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.