fetchAddressTransactionHistory
Retrieve transaction history for specified wallet addresses across multiple blockchain networks using the Alchemy MCP Server, enabling pagination and custom result limits.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addresses | Yes | A list of wallet address and network pairs | |
after | No | The cursor that points to the next set of results. Use this to paginate through the results. | |
before | No | The cursor that points to the previous set of results. Use this to paginate through the results. | |
limit | No | The number of results to return. Default is 25. Max is 100 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"addresses": {
"description": "A list of wallet address and network pairs",
"items": {
"additionalProperties": false,
"properties": {
"address": {
"description": "The wallet address to query. e.g. \"0x1234567890123456789012345678901234567890\"",
"type": "string"
},
"networks": {
"description": "The blockchain networks to query. e.g. [\"eth-mainnet\", \"base-mainnet\"]",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"address",
"networks"
],
"type": "object"
},
"type": "array"
},
"after": {
"description": "The cursor that points to the next set of results. Use this to paginate through the results.",
"type": "string"
},
"before": {
"description": "The cursor that points to the previous set of results. Use this to paginate through the results.",
"type": "string"
},
"limit": {
"default": 25,
"description": "The number of results to return. Default is 25. Max is 100",
"type": "number"
}
},
"required": [
"addresses"
],
"type": "object"
}