Skip to main content

Parameters

array
required
An array of transaction signatures to confirm, as base-58 encoded strings
object

Response

object

Code Examples

Basic Request

Using web3.js

Using Python

Notes

  1. Returns the statuses of a list of transaction signatures
  2. By default, only searches recent status cache (last ~5 minutes of transactions)
  3. Setting searchTransactionHistory to true will search further back in the ledger
  4. null values in the response array indicate signatures that could not be found
  5. confirmationStatus indicates how finalized a transaction is on the network

Best Practices

  1. Use this method to check the status of recently submitted transactions
  2. Pass multiple signatures in a single request to reduce network overhead
  3. Set searchTransactionHistory to true only when needed (performance impact)
  4. Handle null values in the response array appropriately
  5. Check confirmationStatus to determine transaction finality level