-
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
Tracking: RPC methods #3661
Comments
rpc-builder code to generate this diff --git a/crates/rpc/rpc-builder/src/lib.rs b/crates/rpc/rpc-builder/src/lib.rs
index bcd41aa76..78becb9e1 100644
--- a/crates/rpc/rpc-builder/src/lib.rs
+++ b/crates/rpc/rpc-builder/src/lib.rs
@@ -317,6 +317,7 @@ where
modules.config = module_config;
modules.http = registry.maybe_module(http.as_ref());
+ panic!();
modules.ws = registry.maybe_module(ws.as_ref());
modules.ipc = registry.maybe_module(ipc.as_ref());
@@ -810,7 +811,15 @@ where
pub fn module_for(&mut self, config: &RpcModuleSelection) -> RpcModule<()> {
let mut module = RpcModule::new(());
let all_methods = self.reth_methods(config.iter_selection());
+ let mut iter = config.iter_selection();
+
for methods in all_methods {
+ let name = iter.next().expect("No more names");
+ println!("## {}", name);
+ for meth in methods.method_names() {
+ println!(" - [x] {}", meth);
+ }
+ println!();
module.merge(methods).expect("No conflicts");
}
module |
This issue is stale because it has been open for 14 days with no activity. |
Any potential ETA on arbitrary-length-rewind eth_getProof, ala geth? |
Any potential ETA on |
Any plans on |
please open a new issue for this |
@mattsse can we close this? |
closing as completed, this shouldn't be an open issue |
Describe the change
Namespaces and methods
admin
debug
eth
net
trace
trace Limitations
vmTrace
support: feat: complete vm and statediff tracers #3529txpool
web3
rpc
Additional context
No response
The text was updated successfully, but these errors were encountered: