API ReferenceGuidesChangelog
Solidity

Get simulation by ID

GET
/v1/solidity/{owner}/{slug}/simulation/{simulationId}

Authorization

api-key<token>

In: header

Path Parameters

owner*string
slug*string
simulationId*string

Response Body

application/json

curl -X GET "https://example.com/v1/solidity/string/string/simulation/string"
{  "simulation": {    "accessList": [      {        "address": "string",        "storageKeys": [          "string"        ]      }    ],    "blockNumber": "string",    "blockOverride": {      "baseFee": "string",      "blockHash": {        "property1": "string",        "property2": "string"      },      "blockNumber": "string",      "difficulty": "string",      "gasLimit": "string",      "timestamp": "string"    },    "bundleId": "string",    "chainId": "string",    "chainSpec": {      "chainId": "string",      "forkId": "string"    },    "createAt": "string",    "debugDeployment": true,    "from": "string",    "gas": "string",    "gasPrice": "string",    "id": "string",    "input": "string",    "label": "string",    "maxFeePerGas": "string",    "maxPriorityFeePerGas": "string",    "networkId": "string",    "originTxHash": "string",    "result": {      "transaction": {        "accessList": [          {            "address": "string",            "storageKeys": [              "string"            ]          }        ],        "blockHash": "string",        "blockNumber": "string",        "chainId": "string",        "from": "string",        "gas": "string",        "gasPrice": "string",        "hash": "string",        "input": "string",        "maxFeePerGas": "string",        "maxPriorityFeePerGas": "string",        "nonce": "string",        "to": "string",        "transactionIndex": "string",        "type": "string",        "value": "string"      },      "transactionReceipt": {        "cumulativeGasUsed": "string",        "effectiveGasPrice": "string",        "error": "string",        "gasUsed": "string",        "logs": [          {}        ],        "revertReason": "string",        "status": "string"      }    },    "sharing": {      "id": "string",      "isPublic": true,      "simulationId": "string"    },    "sourceOverrides": {      "property1": "string",      "property2": "string"    },    "stateOverrides": {      "property1": {        "balance": "string",        "code": "string",        "state": {          "property1": "string",          "property2": "string"        }      },      "property2": {        "balance": "string",        "code": "string",        "state": {          "property1": "string",          "property2": "string"        }      }    },    "to": "string",    "transactionIndex": "string",    "value": "string"  }}