Documentation
    Preparing search index...

    Variable getUserClaimedRewardHistoryConst

    getUserClaimedRewardHistory: (
        address: string,
        options?: { page?: number; size?: number },
    ) => Promise<{ cursor?: string; data: HistoryClaimedReward[] }> = ...

    Get user's claimed reward history

    Retrieves a paginated list of all rewards that a user has claimed historically. Useful for tracking reward history and generating reports.

    Type declaration

      • (
            address: string,
            options?: { page?: number; size?: number },
        ): Promise<{ cursor?: string; data: HistoryClaimedReward[] }>
      • Parameters

        • address: string

          User's wallet address or account cap

        • Optionaloptions: { page?: number; size?: number }

          Pagination options (page number and size)

        Returns Promise<{ cursor?: string; data: HistoryClaimedReward[] }>

        Object containing claimed reward history and pagination cursor