post https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b/
Solana getSignaturesForAddress
method
getSignaturesForAddress
methodThe Solana getSignaturesForAddress
method returns the confirmed signatures for transactions involving an address.
This method provides a list of signatures for transactions that involve a specific address. It is useful for tracking the transaction history of an address.
Get you own node endpoint today
Start for free and get your app to production levels immediately. No credit card required.
You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
address
— the public key of the address to retrieve signatures for.options
— (optional) additional options:limit
— the maximum number of signatures to return.before
— only return signatures before this signature.until
— only return signatures until this signature.
Response
value
— an array of signature information objects, each containing:signature
— the signature of the transaction.slot
— the slot in which the transaction was processed.err
— whether the transaction resulted in an error.
Use case
A practical use case for getSignaturesForAddress
is to track the transaction history of an address. This can be useful for wallets or other applications that need to display or make use of this information.
Try the getSignaturesForAddress
RPC method yourself
getSignaturesForAddress
RPC method yourself