Base
Pronto para usar isso em produção?
O plano gratuito cobre projetos pessoais. O pay-as-you-go escala sem cartão de crédito.
Base
O plano gratuito cobre projetos pessoais. O pay-as-you-go escala sem cartão de crédito.
debug_traceTransaction replays a transaction that has already been mined on Base and returns its execution at opcode level, reproducing the exact EVM state at the block where it landed. Base is Coinbase's OP Stack optimistic rollup that meters gas in ETH and settles to Ethereum L1, so a trace here walks the same struct-log or tracer output you would expect from a Geth-based client. Give the call the transaction hash and an optional tracer config at https://base.therpc.io/YOUR_API_KEY (chain ID 8453, hex 0x2105); the node re-executes the transaction against the historical state and reports every step. The default tracer yields a struct-log array, while callTracer and prestateTracer give a call tree or a pre-execution account map instead.
REVERT instruction — for example a failed swap on Aerodrome or Uniswap.callTracer to see exactly how the bundle moved value between contracts.prestateTracer for a security post-mortem after an exploit on a Base protocol.| # | Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|---|
| 1 | transactionHash | string | Sim | Hash of the transaction to trace. |
| 2 | options | object | Não | Tracer configuration object. |
| Tipo | Descrição |
|---|---|
| object | With the default tracer: `{gas, failed, returnValue, structLogs[]}` where each structLog entry contains `{pc, op, gas, gasCost, depth, stack?, memory?, storage?}`. With callTracer: a nested call-tree object. With prestateTracer: a pre-execution account/storage map. |
Try it live in the Base playground.
| Código | Mensagem | Causa |
|---|---|---|
-32601 | Method not found | debug namespace is not enabled on the node (requires --http.api=debug or equivalent). |
-32602 | Invalid params | Transaction hash is missing, malformed, or the options object contains unknown fields. |
-32000 | transaction not found | The transaction hash does not exist on the chain or the node lacks archive state for that block. |
callTracer or disable stack and storage in the options object.Parâmetros
0x-prefixed 32-byte hash
omit for default struct-log tracer