@solana/web3.js
    Preparing search index...

    Type Alias SignaturesForAddressOptions

    Options for getSignaturesForAddress

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

    Start searching backwards from this transaction signature.

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

    limit?: number

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

    minContextSlot?: number

    The minimum slot that the request can be evaluated at

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