import { sendTransaction } from "thirdweb";
import { claimRewards } from "thirdweb/extensions/tokens";
 
const transaction = claimRewards({
 contract,
 asset: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });