Skip to content

Commit 0e60232

Browse files
authored
Add web3 namespace to reth API configuration (#421)
The web3 namespace was not enabled by default in the `http.api` and `ws.api` options within the reth-entrypoint script. This caused compatibility issues with external services, such as Chainlink nodes, which rely on `web3_clientVersion` for health checks. This commit adds `web3` to the exposed namespaces, ensuring compatibility with standard EVM JSON-RPC expectations.
1 parent 9f3da7f commit 0e60232

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

reth/reth-entrypoint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ exec $BINARY node \
4343
--ws.origins="*" \
4444
--ws.addr=0.0.0.0 \
4545
--ws.port="$WS_PORT" \
46-
--ws.api=debug,eth,net,txpool \
46+
--ws.api=web3,debug,eth,net,txpool \
4747
--http \
4848
--http.corsdomain="*" \
4949
--http.addr=0.0.0.0 \
5050
--http.port="$RPC_PORT" \
51-
--http.api=debug,eth,net,txpool,miner \
51+
--http.api=web3,debug,eth,net,txpool,miner \
5252
--ipcpath="$IPC_PATH" \
5353
--authrpc.addr=0.0.0.0 \
5454
--authrpc.port="$AUTHRPC_PORT" \

0 commit comments

Comments
 (0)