Type Alias SignaturesForAddressOptions

SignaturesForAddressOptions: {
    before?: TransactionSignature;
    limit?: number;
    minContextSlot?: number;
    until?: TransactionSignature;
}

Options for getSignaturesForAddress

Type declaration

  • Optionalbefore?: TransactionSignature

    Start searching backwards from this transaction signature.

    If not provided the search starts from the highest max confirmed block.

  • Optionallimit?: number

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

  • OptionalminContextSlot?: number

    The minimum slot that the request can be evaluated at

  • Optionaluntil?: TransactionSignature

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