curl --request POST \
--url https://tempo-mainnet.core.chainstack.com/c3ce2925b51f1ed18719fe8a23bbdccf/ \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "trace_get",
"params": [
"0x0000000000000000000000000000000000000000000000000000000000000000",
[
"0x0"
]
],
"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_get",
"params": [
"0x0000000000000000000000000000000000000000000000000000000000000000",
[
"0x0"
]
],
"id": 1
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": "<unknown>"
}transactionHash — the hash of the transactiontraceAddress — an array of index positions describing the trace address within the transactionresult — the trace object at the specified address, or null if not found.trace_get code examplescurl -X POST "CHAINSTACK_NODE_URL" \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "method": "trace_get", "params": ["0x0000000000000000000000000000000000000000000000000000000000000000", ["0x0"]], "id": 1}'
Was this page helpful?