Parameters
string
required
Account address (base-58 encoded)
object
Response
array
Array of signature information objects
string
Transaction signature (base-58 encoded)
number
Slot in which the transaction was processed
object
Error if transaction failed, null if transaction succeeded
string
Memo associated with the transaction
number
Unix timestamp of when the transaction was processed
string
Transaction confirmation status
Code Examples
Basic Request
Request with Config
Using web3.js
Notes
- Returns confirmed transaction signatures for an address
- Results are returned in reverse chronological order
- Pagination can be achieved using the
beforeparameter - The response is immediate as it reads from the current state
- Different commitment levels can be specified
Best Practices
- Use appropriate limit based on your needs
- Implement pagination for large result sets
- Cache results when appropriate to reduce RPC load
- Consider using websocket subscription for real-time updates
- Handle network errors and retry when appropriate
Common Errors
Use Cases
-
Transaction History
-
Transaction Monitoring
-
Transaction Analysis