ethereum_getRecentTransactions
Retrieve the most recent transactions for a specified Ethereum address using the Veri5ight MCP Server. Input an address and optional limit to fetch transaction details.
Instructions
Get recent transactions for an Ethereum address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Ethereum address or ENS name | |
limit | No | Number of transactions to return (default: 3) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Ethereum address or ENS name",
"type": "string"
},
"limit": {
"description": "Number of transactions to return (default: 3)",
"type": "number"
}
},
"required": [
"address"
],
"type": "object"
}