helius_get_signatures_for_address
Retrieve transaction signatures for a Solana address using the MCP Helius server. Specify parameters like time range, limit, and commitment level to filter results.
Instructions
Get transaction signatures for a Solana address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
before | No | ||
commitment | No | ||
limit | No | ||
until | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"type": "string"
},
"before": {
"type": "string"
},
"commitment": {
"enum": [
"confirmed",
"finalized",
"processed"
],
"type": "string"
},
"limit": {
"type": "number"
},
"until": {
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}