curl --request POST \
--url https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b \
--header 'Content-Type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "getSignatureStatuses",
"params": [
[
"5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW"
],
{
"searchTransactionHistory": true
}
]
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": [
{}
]
}
curl --request POST \
--url https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b \
--header 'Content-Type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "getSignatureStatuses",
"params": [
[
"5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW"
],
{
"searchTransactionHistory": true
}
]
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": [
{}
]
}
getSignatureStatuses
methodgetSignatureStatuses
method returns the status of a list of signatures.
This method provides the status of each signature, which indicates whether the transaction was successfully processed, is still being processed, or resulted in an error. It is useful for tracking the status of transactions.
signatures
— an array of signatures to retrieve the status for.options
— (optional) additional options:
searchTransactionHistory
— whether to search the transaction history for the status of each signature.value
— an array of signature status objects, each containing:
slot
— the slot in which the transaction was processed.confirmations
— the number of confirmations for the transaction.err
— whether the transaction resulted in an error.status
— the status of the transaction.getSignatureStatuses
is to track the status of transactions. This can be useful for wallets or other applications that need to display or make use of this information.Signature statuses details
The response is of type object
.
Was this page helpful?