diff --git a/web3_proxy/src/app/mod.rs b/web3_proxy/src/app/mod.rs index e69140d4..12ab305a 100644 --- a/web3_proxy/src/app/mod.rs +++ b/web3_proxy/src/app/mod.rs @@ -1337,7 +1337,8 @@ impl Web3ProxyApp { | "eth_estimateUserOperationGas" | "eth_getUserOperationByHash" | "eth_getUserOperationReceipt" - | "eth_supportedEntryPoints") => match self.bundler_4337_rpcs.as_ref() { + | "eth_supportedEntryPoints" + | "web3_bundlerVersion") => match self.bundler_4337_rpcs.as_ref() { Some(bundler_4337_rpcs) => { let x = bundler_4337_rpcs .try_send_all_synced_connections::>( diff --git a/web3_proxy/src/compute_units.rs b/web3_proxy/src/compute_units.rs index ef1a64c6..e6d666f4 100644 --- a/web3_proxy/src/compute_units.rs +++ b/web3_proxy/src/compute_units.rs @@ -120,6 +120,7 @@ impl ComputeUnit { (_, "trace_transaction") => 26, (_, "invalid_method") => 100, (_, "web3_clientVersion") => 15, + (_, "web3_bundlerVersion") => 15, (_, "web3_sha3") => 15, (_, "ots_getInternalOperations") => 1000, (_, "ots_hasCode") => 1000,