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