get_contract_transactions
Retrieve paginated transaction history for a TRON smart contract using TronGrid indexed data. Supports filters for time range, confirmation status, and sorting.
Instructions
Get transaction history for a smart contract from TronGrid indexed data. Unlike get_account_transactions, this aggregates transactions BY contract. Supports pagination via limit + fingerprint. Default 20 results, max 200 per page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max transactions per page (default 20, max 200) | |
| address | Yes | Contract address (base58 T-address or hex 41-prefixed) | |
| network | No | Network name. Defaults to mainnet. | |
| orderBy | No | Sort field, e.g. 'block_timestamp,desc' | |
| fingerprint | No | Pagination token from previous response | |
| maxTimestamp | No | Filter: maximum block timestamp (ms) | |
| minTimestamp | No | Filter: minimum block timestamp (ms) | |
| onlyConfirmed | No | Only return confirmed transactions | |
| onlyUnconfirmed | No | Only return unconfirmed transactions |