Skip to content

Commit

Permalink
Support engine_getBlobsV1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Jun 18, 2024
1 parent 203d424 commit 7354c84
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ async fn process_client_request(
ETH_SYNCING => multiplexer.handle_syncing(request).await,
"eth_chainId" => multiplexer.handle_chain_id(request).await,
ENGINE_EXCHANGE_CAPABILITIES => multiplexer.handle_engine_capabilities(request).await,
"eth_getBlockByNumber"
"engine_getBlobsV1"
| "eth_getBlockByNumber"
| "eth_getBlockByHash"
| "eth_getLogs"
| "eth_call"
Expand Down Expand Up @@ -199,7 +200,8 @@ async fn handle_controller_json_rpc(
ETH_SYNCING => multiplexer.handle_syncing(request).await,
"eth_chainId" => multiplexer.handle_chain_id(request).await,
ENGINE_EXCHANGE_CAPABILITIES => multiplexer.handle_engine_capabilities(request).await,
"eth_getBlockByNumber"
"engine_getBlobsV1"
| "eth_getBlockByNumber"
| "eth_getBlockByHash"
| "eth_getLogs"
| "eth_call"
Expand Down

0 comments on commit 7354c84

Please sign in to comment.