curl --request POST \
--url https://tempo-mainnet.core.chainstack.com/c3ce2925b51f1ed18719fe8a23bbdccf/ \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "trace_rawTransaction",
"params": [
"0x00",
[
"trace"
]
],
"id": 1
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": "<unknown>"
}curl --request POST \
--url https://tempo-mainnet.core.chainstack.com/c3ce2925b51f1ed18719fe8a23bbdccf/ \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "trace_rawTransaction",
"params": [
"0x00",
[
"trace"
]
],
"id": 1
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": "<unknown>"
}signedTransaction — the signed transaction data as a hex stringtraceTypes — an array of trace types to include (e.g., trace, vmTrace, stateDiff)result — the trace result object containing the requested trace types.trace_rawTransaction code examplescurl -X POST "CHAINSTACK_NODE_URL" \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "method": "trace_rawTransaction", "params": ["0x00", ["trace"]], "id": 1}'
Was this page helpful?