Learn how to check if a user has claimed a boost’s incentives
claimed
const boost = await core.getBoost(17n, { chainId: 8453 }); for (const incentive of boost.incentives) { const claimed = await incentive.claimed('0x...'); // address to check console.log(claimed); // returns boolean }