Update intro.md (#3037)

This commit is contained in:
Maxim Manylov
2023-06-07 02:22:22 +07:00
committed by GitHub
parent 01041b404f
commit d771a1b378

View File

@ -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: 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 ```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`! > The IPC transport is also supported with `--ipc`!