trace_block - Base RPC Method
Get traces for all transactions in a block on Base. Requires archive node for consumer dApps, SocialFi, NFT marketplaces, and merchant payment integrations.
Returns traces for all transactions in a block on Base.
Archive Node Required
This method requires an archive node. It is not available on full nodes.
Use Cases
- Block analysis - Inspect all internal transactions in a block
- MEV research - Analyze transaction ordering and internal calls
- Indexing - Build comprehensive transaction indexes for consumer dApps, SocialFi, NFT marketplaces, and merchant payment integrations
Response Body
ResponseCode Examples
curl -X POST https://api-base-mainnet-archive.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "trace_block",
"params": ["latest"],
"id": 1
}'Related Methods
trace_filter- Filter traces by address or block rangetrace_transaction- Trace a specific transactiontrace_get- Get a specific trace by index
debug_traceTransaction
Trace a transaction execution on Base. Requires archive node for debugging consumer dApps, SocialFi, NFT marketplaces, and merchant payment integrations.
trace_call
Trace a call without creating a transaction on Base. Requires archive node for consumer dApps, SocialFi, NFT marketplaces, and merchant payment integrations.