docs: fix incorrect RPC method names in trace calls (#18619)

This commit is contained in:
Dmitry
2025-09-23 10:56:11 +03:00
committed by GitHub
parent dfab5f9646
commit e3cc6e2ea5

View File

@@ -220,9 +220,9 @@ The first parameter is a list of call traces, where each call trace is of the fo
The second and optional parameter is a block number, block hash, or a block tag (`latest`, `finalized`, `safe`, `earliest`, `pending`).
| Client | Method invocation |
| ------ | ------------------------------------------------------ |
| RPC | `{"method": "trace_call", "params": [trace[], block]}` |
| Client | Method invocation |
| ------ | ---------------------------------------------------------- |
| RPC | `{"method": "trace_callMany", "params": [trace[], block]}` |
### Example
@@ -284,9 +284,9 @@ The second and optional parameter is a block number, block hash, or a block tag
Traces a call to `eth_sendRawTransaction` without making the call, returning the traces.
| Client | Method invocation |
| ------ | ------------------------------------------------------ |
| RPC | `{"method": "trace_call", "params": [raw_tx, type[]]}` |
| Client | Method invocation |
| ------ | ---------------------------------------------------------------- |
| RPC | `{"method": "trace_rawTransaction", "params": [raw_tx, type[]]}` |
### Example