ποΈGet Claim Checks
import { Fuul } from '@fuul/sdk';
const claimChecks = await Fuul.getClaimableChecks({
user_identifier: '0x1234...',
user_identifier_type: 'evm_address', // or 'solana_address'
});Get claim totals
import { Fuul } from '@fuul/sdk';
const totals = await Fuul.getClaimCheckTotals({
user_identifier: '0x1234...',
user_identifier_type: 'evm_address', // or 'solana_address'
});
// Returns { claimed: [...], unclaimed: [...] } grouped by currencyNext steps
Last updated