transactions_for_address
Retrieve paginated transactions for a blockchain address, including decoded log events. Specify chain, wallet, and page; optionally set quote currency, exclude logs, or sort ascending.
Instructions
Commonly used to fetch the transactions involving an address including the decoded log events in a paginated fashion. Required: chainName (blockchain network), walletAddress (wallet address), page (page number). Optional: quoteCurrency, noLogs, blockSignedAtAsc (chronological order). Returns transactions for the specified page of results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chainName | Yes | The blockchain network to query (e.g., 'eth-mainnet', 'matic-mainnet', 'bsc-mainnet'). | |
| walletAddress | Yes | The wallet address to get transactions for. Passing in an ENS, RNS, Lens Handle, or an Unstoppable Domain resolves automatically. | |
| page | Yes | Page number for pagination, starting from 0. Each page contains multiple transactions. | |
| quoteCurrency | No | Currency to quote transaction values in (e.g., 'USD', 'EUR'). If not specified, uses default quote currency. | |
| noLogs | No | Exclude event logs from transactions for faster performance. Default is true. | |
| blockSignedAtAsc | No | Sort transactions in ascending chronological order. Default is false (newest first). |