diff --git a/book/jsonrpc/intro.md b/book/jsonrpc/intro.md index 414bcd237..2ff691a5d 100644 --- a/book/jsonrpc/intro.md +++ b/book/jsonrpc/intro.md @@ -10,7 +10,7 @@ Reth supports all standard Ethereum JSON-RPC API methods. The API methods are gr One can easily interact with these APIs just like they would with any Ethereum client. You can use curl, a programming language with a low-level library, or a tool like Foundry to interact with the chain at the exposed HTTP or WS port. As a reminder, you need to run the command below to enable all of these apis: ```bash -RUST_LOG=info reth node --http --http.api "eth,admin,debug,tracing" +RUST_LOG=info reth node --http --http.api "admin,debug,eth,net,trace,txpool,web3,rpc" ``` > The IPC transport is also supported with `--ipc`! @@ -22,4 +22,4 @@ cast block-number cast rpc admin_nodeInfo cast rpc debug_traceTransaction cast rpc trace_replayBlockTransactions -``` \ No newline at end of file +```