Follow-up of #57, currently muxTracer supports only built-in tracers. It should also support JS tracers.
In the alloy-rs tracing crate, the MuxConfig and MuxFrame types will need to have map key changed to GethDebugTracerType. Changes in this project should be pretty much the same, with addition of supporting the JSInspector via DelegatingInspector. Changes in reth are probably not needed.
The JSInspector is under js-tracer feature, so a feature gate for it in MuxInspector will need to be added as well.
Follow-up of #57, currently
muxTracersupports only built-in tracers. It should also supportJStracers.In the alloy-rs tracing crate, the
MuxConfigandMuxFrametypes will need to have map key changed toGethDebugTracerType. Changes in this project should be pretty much the same, with addition of supporting theJSInspectorviaDelegatingInspector. Changes inrethare probably not needed.The
JSInspectoris underjs-tracerfeature, so a feature gate for it inMuxInspectorwill need to be added as well.