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

    Interface GetTransfersResponse

    Response from getTransfers endpoint

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

    Properties

    Properties

    data: Transfer[]

    Array of transfers in reverse chronological order (newest first)

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

    Pagination metadata. Use the cursor 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