transactions_for_block
Retrieve all transactions and decoded log events for a specified block on any supported blockchain. Use with chain name, block height, and page number to analyze block activity and flag notable wallets or transactions.
Instructions
Commonly used to fetch all transactions including their decoded log events in a block and further flag interesting wallets or transactions. Required: chainName (blockchain network), blockHeight (block number or latest). Optional: quoteCurrency, noLogs (exclude event logs). Returns all transactions from the specified block.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chainName | Yes | The blockchain network to query (e.g., 'eth-mainnet', 'matic-mainnet', 'bsc-mainnet'). | |
| blockHeight | Yes | The block number to get transactions from. Can be a block number or 'latest' for the most recent block. | |
| page | Yes | Page number for pagination, starting from 0. Each page contains multiple transactions from the block. | |
| 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 varies by implementation. |