🌟Points
This article shows how to get point rewards - individually or in a leaderboard format
Projects can decide to show a leaderboard or a user profile on their own website.
To get the points leaderboard for your project use the getPointsLeaderboard
method.
import { Fuul } from ('@fuul/sdk');
await Fuul.getPointsLeaderboard();
You can retrieve the tier and the volume information of users by adding them on the fields
parameter as follows:
import { Fuul } from ('@fuul/sdk');
await Fuul.getPointsLeaderboard(fields: 'tier,referred_volume,enduser_volume,enduser_revenue');
Last updated