getSignaturesForAddress abstract method

Future<List<TransactionSignatureInformation>> getSignaturesForAddress(
  1. String pubKey, {
  2. int? limit,
  3. String? before,
  4. String? until,
  5. Commitment? commitment = Commitment.finalized,
  6. num? minContextSlot,
})

Returns confirmed signatures for transactions involving an address backwards in time from the provided signature or most recent confirmed block

pubKey account address as base-58 encoded string

limit Maximum transaction signatures to return (between 1 and 1,000, default: 1,000).

before Start searching backwards from this transaction signature. If not provided the search starts from the top of the highest max confirmed block.

until Search until this transaction signature, if found before limit reached.

commitment For commitment parameter description see this document Commitment.processed is not supported as commitment.

minContextSlot Set the minimum slot that the request can be evaluated at

Implementation

Future<List<TransactionSignatureInformation>> getSignaturesForAddress(
  String pubKey, {
  int? limit,
  String? before,
  String? until,
  Commitment? commitment = Commitment.finalized,
  num? minContextSlot,
});