query_latest_withdrawals
Retrieve recent Tornado Cash withdrawal records in a formatted table, displaying key details such as amount, timestamp, recipient, and block number.
Instructions
Query the most recent withdrawals from Tornado Cash Subgraph and return results as a formatted table.
Parameters:
limits (int): The maximum number of withdrawal records to return. Must be positive. Default is 10.
Returns:
A string containing a tabulated representation of withdrawal records with columns: id, amount, timestamp, to, blockNumber.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limits | No |
Input Schema (JSON Schema)
{
"properties": {
"limits": {
"default": 10,
"title": "Limits",
"type": "integer"
}
},
"title": "query_latest_withdrawalsArguments",
"type": "object"
}