Get details for single Web3 Action execution
Retrieve the details of a specific Web3 Action execution. You need to provide the Web3 Action ID and execution ID.
Authorizations
An API key is a token that a client provides when making API calls. The key can be sent as a request header:
curl 'https://api.tenderly.co/api/v1/account/${TENDERLY_ACCOUNT_SLUG}/project/${TENDERLY_PROJECT_SLUG}/simulate' \
-H 'X-Access-Key: ${TENDERLY_ACCESS_KEY}' \
...
Learn how to generate API access tokens at Tenderly Docs.
Path Parameters
Account slug of the user
Project slug of the account
Web3 Action Id to get info for
Web3 Action execution Id to get info for
Response
A successful response.
ID of the Web3 Action execution.
"4010f442-c4d9-407d-aba1-7276e3312998"
ID of the Web3 Action connected to this execution.
"0f55690d-0894-4173-9714-10cc0404e09a"
ID of the Web3 Action version connected to this execution.
"7052c8f8-ddc5-4c05-82c0-d69e223e0d65"
When Web3 Action execution is created.
"2022-12-02T10:06:02.649431Z"
Web3 Action execution type.
AUTOMATIC, MANUAL, RERUN "AUTOMATIC"
Web3 Action execution status.
ENABLED, DISABLED, SUCCEEDED, SUBMITTED, SKIPPED, FAILED, PENDING, RETRY, TIMED_OUT, RATE_LIMITED "SUCCEEDED"
When Web3 Action execution status is updated.
"2022-12-02T10:06:02.815476Z"
Web3 Action execution payload.
{
"type": "block",
"block": {
"network": "1",
"blockNumber": 16096415,
"blockHash": "0xdf6b1f2eb10513cd8f0d9716c07daa4a67de0ecd8a23de28d8b146ceb78eb7f7",
"blockDifficulty": "0",
"totalDifficulty": "58750003716598352816469"
}
}
A storage type used to store Web3 Action execution.
COPY_ON_WRITE, WRITE, EMPTY "WRITE"
A storage Id used to store Web3 Action execution.
"1830efff-aa75-481e-b464-cedaf8b90960"
Web3 Action execution memory in bytes.
67
Web3 Action execution time in milliseconds.
76
Parsed logs for Web3 Action execution
{
"lines": [
{
"time": "2022-12-02T10:06:02.747Z",
"severity": "INFO",
"message": "DefaultBlockEvent {\n network: '1',\n blockHash: '0xdf6b1f2eb10513cd8f0d9716c07daa4a67de0ecd8a23de28d8b146ceb78eb7f7',\n blockNumber: 16096415,\n blockDifficulty: '0',\n totalDifficulty: '58750003716598352816469'\n}"
},
{
"time": "2022-12-02T10:06:02.747Z",
"severity": "INFO",
"message": "blockEvent"
}
]
}
Parsed errors for Web3 Action execution
{
"name": "Error",
"message": "Error in action execution",
"stacktrace": "Error: Error in action execution\n at actionFn (/opt/src/implementation.js:4:11)\n at DefaultActionExecutor.execute (/opt/nodejs/executor.js:11:15)\n at Runtime.exports.handler (/var/task/index.js:5:47)\n at Runtime.handleOnce (/var/runtime/Runtime.js:66:25)"
}