π¦getTransactionsForAddress
A custom Solana RPC Method for Reading Historical Data With Advanced Filters And Pagination.
getTransactionForAddress is a custom RPC call provided by Shyft. It is not part of the standard Solana RPC interface. Currently 2 epochs of data is available.
How It Compares to Standard Solana Methods
Example Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "getTransactionsForAddress",
"params": [
"pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
{
"transactionDetails": "signatures",
"sortOrder": "asc",
"limit": 1000,
"paginationToken": null,
"commitment": "confirmed"
"filters": {
"slot": {
"gte": 425211949 //Any slot number you want
},
"status": "any",
"tokenAccounts": "none"
}
}
]
}Option
Type
Default
Description
Limits and error behavior
Last updated