-
Notifications
You must be signed in to change notification settings - Fork 233
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
Added stages to the sync info rpc type #1079
Merged
mattsse
merged 7 commits into
alloy-rs:main
from
loocapro:add-stages-detail-to-rpc-sync-info
Jul 19, 2024
Merged
Added stages to the sync info rpc type #1079
mattsse
merged 7 commits into
alloy-rs:main
from
loocapro:add-stages-detail-to-rpc-sync-info
Jul 19, 2024
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
loocapro
requested review from
DaniPopes,
gakonst,
mattsse,
onbjerg,
prestwich and
Evalir
as code owners
July 19, 2024 10:35
mattsse
requested changes
Jul 19, 2024
mattsse
requested changes
Jul 19, 2024
will also need to wire it here! https://github.com/paradigmxyz/reth/blob/9e685163deb57b2a2e1661195c093071d1e85647/crates/rpc/rpc/src/eth/helpers/spec.rs#L55-L62 thx for taking this on |
mattsse
requested changes
Jul 19, 2024
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.
last nits eheh
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
mattsse
approved these changes
Jul 19, 2024
zerosnacks
pushed a commit
that referenced
this pull request
Jul 22, 2024
* Added stages to the sync info rpc type (#1079) * added stages detail * boxed enum * from hashmap to vec with helper type * serde alias and renames and dos * Update crates/rpc-types-eth/src/syncing.rs Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> * Update crates/rpc-types-eth/src/syncing.rs Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> * property to pub --------- Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> * removing async get account (#1080) * fix(node-bindings): backport fix from ethers-rs (#1081) * feat(consensus): add `From<ConsolidationRequest>` for `Request` (#1083) consensus: add From<ConsolidationRequest> for Request * fix(eips): make SignedAuthorizationList arbitrary less fallible (#1084) * chore: export rpc account type (#1075) * Update debug.rs * Update debug.rs --------- Co-authored-by: Luca Provini <lucaprovini1989@gmail.com> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: StackOverflowExcept1on <109800286+StackOverflowExcept1on@users.noreply.github.com> Co-authored-by: Thomas Coratger <60488569+tcoratger@users.noreply.github.com> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
ben186
pushed a commit
to ben186/alloy
that referenced
this pull request
Jul 27, 2024
* added stages detail * boxed enum * from hashmap to vec with helper type * serde alias and renames and dos * Update crates/rpc-types-eth/src/syncing.rs Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> * Update crates/rpc-types-eth/src/syncing.rs Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> * property to pub --------- Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation
Ref: paradigmxyz/reth#7838
CC: @mattsse
Solution
Adding a new optional field to sync info to show stages sync detail on eth_syncing rpc method.
PR Checklist