get_signatures_for_address
Retrieve confirmed transaction signatures associated with a Solana address. Specify filters like start, end, or limit to narrow search results efficiently.
Instructions
Returns confirmed signatures for transactions involving an address.
Args: account (str): Account address to query before (Optional[str]): Start searching backwards from this signature until (Optional[str]): Search until this signature limit (Optional[int]): Maximum number of signatures to return
Returns: str: Signatures information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account | Yes | ||
before | No | ||
limit | No | ||
until | No |
Input Schema (JSON Schema)
{
"properties": {
"account": {
"title": "Account",
"type": "string"
},
"before": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Before"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"until": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Until"
}
},
"required": [
"account"
],
"title": "get_signatures_for_addressArguments",
"type": "object"
}