• Fetch confirmed signatures for transactions involving the given address.

    Parameters

    • t: HttpTransport

      HTTP transport instance

    • address: never

      Base-58 encoded account address

    • opts: GetSignaturesOpts = {}

      Pagination, commitment, and call options

    Returns Promise<SignatureInfo[]>

    Array of signature information objects

    Auto-paginates with safety guards. Set limit to control total results (default 100, max ~50 000).

    const sigs = await getSignaturesForAddress(transport, address, { limit: 10 });
    

    1.0.0