Helius SDK - v2.2.2
    Preparing search index...

    Interface GetHistoryResponse

    Response from getHistory endpoint

    interface GetHistoryResponse {
        data: HistoryTransaction[];
        pagination: { hasMore: boolean; nextCursor?: string | null };
    }
    Index

    Properties

    Properties

    Array of transactions in reverse chronological order (newest first)

    pagination: { hasMore: boolean; nextCursor?: string | null }

    Pagination metadata. Use the before parameter with nextCursor to fetch the next page.

    Type Declaration

    • hasMore: boolean

      True if more results are available

    • OptionalnextCursor?: string | null

      Cursor to fetch the next page (use with before parameter)