Latest Transactions
Fetches recent transactions that call a specific function or emit a specific event.Returns
- Transaction hashes with decoded arguments
- Function parameters or event data
- Useful for monitoring activity and finding examples
Example Queries
Parameters
| Parameter | Required | Description |
|---|---|---|
type | Yes | function or event |
signature | Yes | Keccak hash of function/event (from ABI) |
contractAddress | Yes | The contract to query |
blockchain | No | ethereum (default) or base |
You don’t need to know the signature hash - Claude will look it up from the contract’s ABI automatically.
Function Calls
Events
Understanding the Output
Function Call Results
Event Results
Common Use Cases
Monitor Protocol Activity
You: “How many swaps happened on Uniswap in the last hour?”Find Example Transactions
You: “Find me an example of someone using the flashLoan function”Track Large Movements
You: “Show recent large USDC transfers (look for whale activity)“Analyze User Behavior
You: “What functions are people calling most on this contract?”Function vs Event
| Use Functions When | Use Events When |
|---|---|
| You want to see how people call the contract | You want to track outcomes/results |
| Analyzing input parameters | Tracking token movements |
| Finding failed transactions | Historical data analysis |
| Debugging contract interactions | Building activity feeds |
Signature Hashes Explained
Each function and event has a unique identifier: Function signatures (4 bytes):Practical Examples
Example 1: Monitoring NFT Mints
You: “Show me recent mints from the Azuki contract” Result:Example 2: DEX Activity
You: “What pairs are being swapped most on Uniswap V3?” Result:Example 3: Governance Activity
You: “Show recent votes on Compound governance” Result:Combining with Other Tools
- Find recent transactions →
getLatestTransactionsTool - Analyze specific tx →
queryTransactionTool - Understand the function →
regexCodeAnalysisTool
Tips
Limitations
Next Steps
Query Transaction
Analyze a specific transaction in detail
Transaction Activity
Get full transaction history for an address

