-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
chore(rpc): Remove provider and network trait methods from EthApiSpec
#12050
Merged
+75
−36
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
233d99b
Fix clone impl for OpEthApi
emhane f0c4120
Add helper trait reth_node_api::NodeCore for simplified type def
emhane a64bfa7
Add auto trait bounds to reth_node_api::NodeCore
emhane 5c3f060
Relax trait bounds for reth_node_api::BuilderProvider
emhane 0d228c9
Relax trait bounds for OpEthApi
emhane f40fc8d
Merge branch 'emhane/fix-clone-op-ethapi' into emhane/test-op-eth-api
emhane 8a97ca6
Fix docs
emhane 91079a4
Merge branch 'main' into emhane/def-op-ethapi
emhane 9593550
Cargo update
emhane 65f40ef
Merge branch 'main' into emhane/def-op-ethapi
emhane d1df7f9
Merge branch 'main' into emhane/def-op-ethapi
emhane ec16b13
Merge branch 'main' into emhane/def-op-ethapi
emhane cf1ef10
Fix merge conflicts
emhane 17a4209
Merge branch 'main' into emhane/def-op-ethapi
emhane c28cce2
Merge branch 'main' into emhane/def-op-ethapi
emhane 362f409
Fix merge conflicts
emhane 45760ba
Add FullNodeComponents getters to NodeCore
emhane 421b261
Rescope NodeCore and NodeTy to RpcNodeCore and RpcNodeTy
emhane 1ff6f2d
Remove RpcNodeTy to remove unambiguous AT for provider
emhane 888c7b0
Merge branch 'main' into emhane/def-op-ethapi
emhane 209fd9a
Move reth_node_api::RpcNodeCore into reth-rpc-eth-api by removing cyc…
emhane 2c2eb4d
Add RpcNodeCore as super trait of EthApiSpec
emhane aac5aee
Fix docs
emhane 8cdc833
Fix docs
emhane aeb5f67
Merge branch 'emhane/def-op-ethapi' into emhane/rpc-node-core-eth-api…
emhane 475d676
Merge branch 'main' into emhane/def-op-ethapi
emhane a79c495
Fix merge conflicts
emhane 02309c2
Merge branch 'emhane/def-op-ethapi' into emhane/rpc-node-core-eth-api…
emhane 11bb733
Fix deps
emhane d550a27
Fix deps
emhane 4a76db2
Update docs
emhane 9d6b247
Merge branch 'emhane/def-op-ethapi' into emhane/rpc-node-core-eth-api…
emhane cefe852
Merge branch 'main' into emhane/rpc-node-core-eth-api-spec
emhane 897f293
Fix broken doc tests
emhane 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 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
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
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.
cool, I like this a lot, this allows us to extend the
RpcNodeCore
internals as we see fit, which will be important to tackle #12023