getSignatureStatuses abstract method
Returns the statuses of a list of signatures. Unless the searchTransactionHistory configuration parameter is included, this method only searches the recent status cache of signatures, which retains statuses for all active slots plus MAX_RECENT_BLOCKHASHES rooted slots.
signatures
An array of transaction signatures to confirm, as base-58 encoded strings
searchTransactionHistory
If true, a Solana node will search its ledger cache for any signatures not
found in the recent status cache
Implementation
Future<SignatureStatusesResult> getSignatureStatuses(
List<String> signatures, {
bool? searchTransactionHistory,
});