-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
feat: --debug.etherscan for fake consensus client #8082
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
826722f
feat: --debug.etherscan for fake consensus client
sevazhidkov 603db3e
add todo to handle errors gracefully
sevazhidkov 7789774
fix clippy
sevazhidkov 90bea52
Merge remote-tracking branch 'origin/main' into seva/rpc-consensus
sevazhidkov e11d850
add genericness over block provider
sevazhidkov aa2acf9
Merge remote-tracking branch 'origin/main' into seva/rpc-consensus
sevazhidkov 9807037
lock update
sevazhidkov 5e8116c
Merge remote-tracking branch 'upstream/main' into seva/rpc-consensus
sevazhidkov ef3b066
move get_or_fetch_previous_block to associated trait method of block …
sevazhidkov ed22651
more gentle error handling for etherscan
sevazhidkov 7c40a26
remove todo
sevazhidkov 0e6cae9
clippy
sevazhidkov cc12182
remove dependency on opentls
sevazhidkov 8cdb032
chore: smol touchups
mattsse 9f96d0b
Merge remote-tracking branch 'refs/remotes/upstream/main' into seva/r…
sevazhidkov c3d56e6
review fixes
sevazhidkov 64a0788
Merge remote-tracking branch 'refs/remotes/upstream/main' into seva/r…
sevazhidkov 9b24ae7
use only ws endpoint
sevazhidkov 223ccf9
clippy
sevazhidkov 06497af
update cli field descriptions
sevazhidkov bbb0420
fmt
sevazhidkov 2ecb0f9
autoimpl for trait
sevazhidkov 1b231f2
Merge remote-tracking branch 'refs/remotes/upstream/main' into seva/r…
sevazhidkov d1d3ec8
Merge remote-tracking branch 'refs/remotes/upstream/main' into seva/r…
sevazhidkov ffbf684
lock bump
sevazhidkov b7d4744
clippy
sevazhidkov 6bd3617
clippy
sevazhidkov f837517
Merge remote-tracking branch 'origin/main' into seva/rpc-consensus
shekhirin c2da02b
chore: touchups
mattsse 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[package] | ||
name = "reth-consensus-debug-client" | ||
version.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
# reth | ||
reth-node-api.workspace = true | ||
reth-node-core.workspace = true | ||
reth-rpc-api.workspace = true | ||
reth-rpc-types.workspace = true | ||
reth-rpc-builder.workspace = true | ||
reth-tracing.workspace = true | ||
|
||
# ethereum | ||
alloy-consensus = { workspace = true, features = ["serde"] } | ||
alloy-eips.workspace = true | ||
alloy-provider = { workspace = true, features = ["ws"] } | ||
|
||
auto_impl.workspace = true | ||
futures.workspace = true | ||
eyre.workspace = true | ||
reqwest = { workspace = true, features = ["rustls-tls", "json"] } | ||
serde = { workspace = true, features = ["derive"] } | ||
tokio = { workspace = true, features = ["time"] } | ||
|
||
ringbuffer = "0.15.0" |
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.
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.
limiting this to ws is reasonable, no need to also support HTTP polling