πPoints
This article shows how to get point individual rewards
Points for a specific address
import { Fuul } from ('@fuul/sdk');
await Fuul.getPointsLeaderboard({
user_identifier: '0x12345', // the address of the user
user_identifier_type: 'evm_address', // evm_address | solana_address | xrpl_address
user_type: 'all', // all, affiliate or end_user
conversions: '1,2,3' // Optional
});Points for a specific address per conversion
import { Fuul } from ('@fuul/sdk');
await Fuul.getUserPointsByConversion({ user_identifier: '0x12345',
user_identifier_type: 'evm_address' });Points history for a specific address
Last updated