query_latest_deposits
Fetch recent Tornado Cash deposit records in a structured table format, including details like amount, timestamp, and origin, to track asset trails and wallet interactions.
Instructions
Query the most recent deposits from Tornado Cash Subgraph and return results as a formatted table.
Parameters:
limits (int): The maximum number of deposit records to return. Must be positive. Default is 10.
Returns:
A string containing a tabulated representation of deposit records with columns: id, amount, timestamp, commitment, blockNumber, from.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limits | No |
Input Schema (JSON Schema)
{
"properties": {
"limits": {
"default": 10,
"title": "Limits",
"type": "integer"
}
},
"title": "query_latest_depositsArguments",
"type": "object"
}