getConfirmedSignaturesForAddress2 abstract method

  1. @Deprecated('Use getSignaturesForAddress instead')
Future<List<TransactionSignatureInformation>> getConfirmedSignaturesForAddress2(
  1. String pubKey, {
  2. int? limit,
  3. String? before,
  4. String? until,
  5. Commitment? commitment = Commitment.finalized,
})

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.

Implementation

@Deprecated('Use getSignaturesForAddress instead')
Future<List<TransactionSignatureInformation>>
    getConfirmedSignaturesForAddress2(
  String pubKey, {
  int? limit,
  String? before,
  String? until,
  Commitment? commitment = Commitment.finalized,
});