[StandardTrace] debug_standardTraceBlockToFile
Similar to debug_traceBlock, standardTraceBlockToFile accepts a block hash and will replay the block that is already present in the database. It returns a list of file names containing tracing result. Note that the files will be stored in the machine that serves this API.
JSONRPC: debug_standardTraceBlockToFile
Request
- application/json
Body
Array [
]
params
undefined[]
Hash of a block.
StandardTracingOptions
object
You may give trace API function a secondary optional argument, which specifies the options for this specific call.
Setting this to true will disable storage capture.
Setting this to true will disable memory capture.
Setting this to true will disable stack capture.
Setting this value will trace only the specified transaction.
Responses
- 200
A list of file names.
- application/json
- Schema
- Example (from schema)
Schema
error
object
A list of file names. Each represents a tracing result of a transaction. The format of a file name is block_{first 4 bytes of the block hash}-{transaction index}-{first 4 bytes of the transaction hash}-{random string}.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": [
"/var/folders/v9/z3vq7j4d42b2jq_vxsv0km6h0000gn/T/block_0x485fff44-0-0xfe8210fc-141224302"
]
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "debug_standardTraceBlockToFile",
"id": 1,
"jsonrpc": "2.0",
"params": ["0xf1b4df5d4457d4771740887eeb46de3fc26ae4cddf93d69b1b237c2366ff12eb"]
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "debug_standardTraceBlockToFile",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0x485fff444481ee28debe50639f312f44e0a09342161a8906a99cf325cc2512a4"
]
}'