API ReferenceGuidesChangelog
Solidity

Get list of simulations

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

Authorization

api-key<token>

In: header

Path Parameters

owner*string
slug*string

Query Parameters

labelContains?string
page?integer
Formatint32
pageSize?integer
Formatint32

Response Body

application/json

curl -X GET "https://example.com/v1/solidity/string/string/simulation"
{  "count": "string",  "page": 0,  "pageSize": 0,  "simulations": [    {      "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"    }  ]}