Parameters
chainId
string
default:"1924"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"debug_traceBlockFromFile"
required
JSON-RPC method name.
Parameters: [filePath, options?].Positional parameters for debug_traceBlockFromFile:params[0]: Path to the block file.params[1]: Optional tracer configuration.
Returns
Traces matching given filter.
Details of the trace action.
Type of call (e.g., “call”, “delegatecall”, etc.).
Address that initiated the action.
Gas provided for the action (hex string).
Input data for the action (hex string).
Recipient address (if applicable).
Value transferred in Wei (hex string).
Hash of the block in which this trace occurred.
Block number in which this trace occurred.
Result of the trace action.
Gas used during this action (hex string).
Returned output data (hex string).
Number of nested trace steps inside this trace.
Path to this trace in the nested trace structure.
Hash of the transaction this trace belongs to.
Index position of the transaction within the block.
Type of trace (e.g., “call”, “create”, “suicide”).
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=1924 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "debug_traceBlockFromFile",
"params": [
"",
{}
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}