import { sendTransaction } from "thirdweb";
import { grantRoles } from "thirdweb/extensions/modules";
const transaction = grantRoles({
contract,
user: ...,
roles: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });