API ReferenceGuidesChangelog
Solidity

Get trace by bundle simulation

GET
/v1/solidity/{owner}/{slug}/fork/{forkId}/bundle/{bundleId}/call_trace

Authorization

api-key<token>

In: header

Path Parameters

owner*string
slug*string
forkId*string
bundleId*string

Query Parameters

withInternalCalls?boolean

Fetch the decoded trace, which will give you the function info, decoded parameters of both external and internal call trace.

disableOptimizer?boolean

Disable optimizations to make internal calls more accurate, but gas costs will differ from the actual execution.

ignoreGasCost?boolean

Only effective when disableOptimizer=true.

Response Body

application/json

curl -X GET "https://example.com/v1/solidity/string/string/fork/string/bundle/string/call_trace"
{  "contentType": "string",  "data": "string",  "extensions": [    {      "@type": "string",      "property1": null,      "property2": null    }  ]}